index int64 0 66.5k | func_name stringlengths 2 5.36k | func_dep stringlengths 16 2.19k | func stringlengths 8 55.3k | test stringlengths 0 7.07k | opt stringclasses 4
values | language stringclasses 2
values | asm stringlengths 0 45.4k | ida_asm stringlengths 0 44.7k | ida_pseudo stringlengths 0 44.3k | ghidra_asm stringlengths 0 49.1k | ghidra_pseudo stringlengths 0 64.7k |
|---|---|---|---|---|---|---|---|---|---|---|---|
11,000 | lunasvg::SVGSVGElement::SVGSVGElement(lunasvg::Document*) | dmazzella[P]pylunasvg/lunasvg/source/svgelement.cpp | SVGSVGElement::SVGSVGElement(Document* document)
: SVGGraphicsElement(document, ElementID::Svg)
, SVGFitToViewBox(this)
, m_x(PropertyID::X, LengthDirection::Horizontal, LengthNegativeMode::Allow, 0.f, LengthUnits::None)
, m_y(PropertyID::Y, LengthDirection::Vertical, LengthNegativeMode::Allow, 0.f, Len... | O1 | cpp | lunasvg::SVGSVGElement::SVGSVGElement(lunasvg::Document*):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movq %rdi, %rbx
movl $0x14, %edx
callq 0x102f8
leaq 0x48349(%rip), %r14 # 0x58958
movq %r14, (%rbx)
leaq 0x98(%rbx), %rdi
movq %rbx, %rsi
callq 0x1007e
movq %r14, (%rbx)
leaq 0xd0(... | _ZN7lunasvg13SVGSVGElementC2EPNS_8DocumentE:
push rbp; Alternative name is 'lunasvg::SVGSVGElement::SVGSVGElement(lunasvg::Document *)'
push r15
push r14
push r13
push r12
push rbx
push rax
mov rbx, rdi
mov edx, 14h
call _ZN7lunasvg18SVGGraphicsElementC2EPNS_8DocumentENS_9ElementIDE; lun... | _QWORD * lunasvg::SVGSVGElement::SVGSVGElement(lunasvg::SVGSVGElement *this, lunasvg::Document *a2)
{
_QWORD *v2; // rax
_QWORD *v3; // rax
_QWORD *v4; // rax
_QWORD *result; // rax
lunasvg::SVGGraphicsElement::SVGGraphicsElement((long long)this, (long long)a2, 20);
*(_QWORD *)this = off_58958;
lunasvg::... | SVGSVGElement:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV RBX,RDI
MOV EDX,0x14
CALL 0x001102f8
LEA R14,[0x158958]
MOV qword ptr [RBX],R14
LEA RDI,[RBX + 0x98]
LAB_00110619:
MOV RSI,RBX
CALL 0x0011007e
MOV qword ptr [RBX],R14
LEA R14,[RBX + 0xd0]
LAB_0011062b:
MOV RDI,R14
MOV ESI,0x4b
CALL 0x0011... |
/* lunasvg::SVGSVGElement::SVGSVGElement(lunasvg::Document*) */
void __thiscall lunasvg::SVGSVGElement::SVGSVGElement(SVGSVGElement *this,Document *param_1)
{
int8 *puVar1;
SVGGraphicsElement::SVGGraphicsElement((SVGGraphicsElement *)this,param_1,0x14);
*(int ***)this = &PTR__SVGSVGElement_00158958;
... | |
11,001 | list_add | eloqsql/mysys/list.c | LIST *list_add(LIST *root, LIST *element)
{
DBUG_ENTER("list_add");
DBUG_PRINT("enter",("root: %p element: %p", root, element));
if (root)
{
if (root->prev) /* If add in mid of list */
root->prev->next= element;
element->prev=root->prev;
root->prev=element;
}
else
element->prev=0;
... | O0 | c | list_add:
pushq %rbp
movq %rsp, %rbp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
jmp 0xe122e
cmpq $0x0, -0x8(%rbp)
je 0xe1269
movq -0x8(%rbp), %rax
cmpq $0x0, (%rax)
je 0xe124e
movq -0x10(%rbp), %rcx
movq -0x8(%rbp), %rax
movq (%rax), %rax
movq %rcx, 0x8(%rax)
movq -0x8(%rbp), %rax
movq (%rax), %rcx
movq -0x10(%rbp), ... | list_add:
push rbp
mov rbp, rsp
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
jmp short $+2
loc_E122E:
cmp [rbp+var_8], 0
jz short loc_E1269
mov rax, [rbp+var_8]
cmp qword ptr [rax], 0
jz short loc_E124E
mov rcx, [rbp+var_10]
mov rax, [rbp+var_8]
mov rax, [rax]
mov ... | _QWORD * list_add(long long a1, _QWORD *a2)
{
if ( a1 )
{
if ( *(_QWORD *)a1 )
*(_QWORD *)(*(_QWORD *)a1 + 8LL) = a2;
*a2 = *(_QWORD *)a1;
*(_QWORD *)a1 = a2;
}
else
{
*a2 = 0LL;
}
a2[1] = a1;
return a2;
}
| list_add:
PUSH RBP
MOV RBP,RSP
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
JMP 0x001e122e
LAB_001e122e:
CMP qword ptr [RBP + -0x8],0x0
JZ 0x001e1269
MOV RAX,qword ptr [RBP + -0x8]
CMP qword ptr [RAX],0x0
JZ 0x001e124e
MOV RCX,qword ptr [RBP + -0x10]
MOV RAX,qword ptr [RBP + -0x8]
MOV RAX,qword ptr [R... |
long * list_add(long *param_1,long *param_2)
{
if (param_1 == (long *)0x0) {
*param_2 = 0;
}
else {
if (*param_1 != 0) {
*(long **)(*param_1 + 8) = param_2;
}
*param_2 = *param_1;
*param_1 = (long)param_2;
}
param_2[1] = (long)param_1;
return param_2;
}
| |
11,002 | my_read | eloqsql/mysys/my_read.c | size_t my_read(File Filedes, uchar *Buffer, size_t Count, myf MyFlags)
{
size_t readbytes, save_count= 0;
DBUG_ENTER("my_read");
DBUG_PRINT("my",("fd: %d Buffer: %p Count: %lu MyFlags: %lu",
Filedes, Buffer, (ulong) Count, MyFlags));
if (!(MyFlags & (MY_WME | MY_FAE | MY_FNABP)))
MyFla... | O0 | c | my_read:
pushq %rbp
movq %rsp, %rbp
subq $0x50, %rsp
movl %edi, -0xc(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq %rcx, -0x28(%rbp)
movq $0x0, -0x38(%rbp)
jmp 0x2fde1
movq -0x28(%rbp), %rax
andq $0x1a, %rax
cmpq $0x0, %rax
jne 0x2fe01
leaq 0x355f92(%rip), %rax # 0x385d88
movq (%rax), %rax
orq -0x28(%rbp)... | my_read:
push rbp
mov rbp, rsp
sub rsp, 50h
mov [rbp+var_C], edi
mov [rbp+var_18], rsi
mov [rbp+var_20], rdx
mov [rbp+var_28], rcx
mov [rbp+var_38], 0
jmp short $+2
loc_2FDE1:
mov rax, [rbp+var_28]
and rax, 1Ah
cmp rax, 0
jnz short loc_2FE01
lea rax, my_global_flag... | long long my_read(unsigned int a1, long long a2, long long a3, __int16 a4)
{
long long v4; // rax
long long v5; // rax
unsigned int v7; // [rsp+10h] [rbp-40h]
long long v8; // [rsp+18h] [rbp-38h]
long long v9; // [rsp+20h] [rbp-30h]
__int16 v11; // [rsp+28h] [rbp-28h]
v11 = a4;
v8 = 0LL;
if ( (a4 & ... | my_read:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x50
MOV dword ptr [RBP + -0xc],EDI
MOV qword ptr [RBP + -0x18],RSI
MOV qword ptr [RBP + -0x20],RDX
MOV qword ptr [RBP + -0x28],RCX
MOV qword ptr [RBP + -0x38],0x0
JMP 0x0012fde1
LAB_0012fde1:
MOV RAX,qword ptr [RBP + -0x28]
AND RAX,0x1a
CMP RAX,0x0
JNZ 0x0012fe01
LEA RAX,[0x485d88... |
long my_read(int param_1,void *param_2,size_t param_3,ulong param_4)
{
int iVar1;
int *piVar2;
size_t sVar3;
int4 *puVar4;
int8 uVar5;
long local_40;
long local_38;
ulong local_30;
size_t local_28;
void *local_20;
local_40 = 0;
local_28 = param_3;
local_20 = param_2;
local_30 = param_4;... | |
11,003 | blst_scalar_from_uint32 | corpus-core[P]colibri-stateless/build_O1/_deps/blst-src/src/exports.c | void blst_scalar_from_uint32(pow256 ret, const unsigned int a[8])
{
const union {
long one;
char little;
} is_endian = { 1 };
size_t i;
if ((uptr_t)ret==(uptr_t)a && is_endian.little)
return;
for(i = 0; i < 8; i++) {
unsigned int w = a[i];
*ret++ = (byte)w;
... | O1 | c | blst_scalar_from_uint32:
pushq %rbp
movq %rsp, %rbp
cmpq %rsi, %rdi
je 0x69e70
xorl %eax, %eax
movl (%rsi,%rax,4), %ecx
movl %ecx, (%rdi,%rax,4)
incq %rax
cmpq $0x8, %rax
jne 0x69e61
popq %rbp
retq
| blst_scalar_from_uint32:
push rbp
mov rbp, rsp
cmp rdi, rsi
jz short loc_69E70
xor eax, eax
loc_69E61:
mov ecx, [rsi+rax*4]
mov [rdi+rax*4], ecx
inc rax
cmp rax, 8
jnz short loc_69E61
loc_69E70:
pop rbp
retn
| void blst_scalar_from_uint32(long long a1, long long a2)
{
long long i; // rax
if ( a1 != a2 )
{
for ( i = 0LL; i != 8; ++i )
*(_DWORD *)(a1 + 4 * i) = *(_DWORD *)(a2 + 4 * i);
}
}
| blst_scalar_from_uint32:
PUSH RBP
MOV RBP,RSP
CMP RDI,RSI
JZ 0x00169e70
XOR EAX,EAX
LAB_00169e61:
MOV ECX,dword ptr [RSI + RAX*0x4]
MOV dword ptr [RDI + RAX*0x4],ECX
INC RAX
CMP RAX,0x8
JNZ 0x00169e61
LAB_00169e70:
POP RBP
RET
|
void blst_scalar_from_uint32(long param_1,long param_2)
{
long lVar1;
if (param_1 != param_2) {
lVar1 = 0;
do {
*(int4 *)(param_1 + lVar1 * 4) = *(int4 *)(param_2 + lVar1 * 4);
lVar1 = lVar1 + 1;
} while (lVar1 != 8);
}
return;
}
| |
11,004 | ggml_conv_transpose_2d_p0 | ngxson[P]ggml-easy/ggml/src/ggml.c | struct ggml_tensor * ggml_conv_transpose_2d_p0(
struct ggml_context * ctx,
struct ggml_tensor * a,
struct ggml_tensor * b,
int stride) {
GGML_ASSERT(a->ne[3] == b->ne[2]);
const int64_t ne[4] = {
ggml_calc_conv_transpose_output_size(b->ne[0], a->ne[0]... | O0 | c | ggml_conv_transpose_2d_p0:
subq $0x58, %rsp
movq %rdi, 0x50(%rsp)
movq %rsi, 0x48(%rsp)
movq %rdx, 0x40(%rsp)
movl %ecx, 0x3c(%rsp)
movq 0x48(%rsp), %rax
movq 0x28(%rax), %rax
movq 0x40(%rsp), %rcx
cmpq 0x20(%rcx), %rax
je 0x50fec
leaq 0x635e5(%rip), %rdi # 0xb45b7
movl $0x1011, %esi # imm = 0x1011
leaq 0... | ggml_conv_transpose_2d_p0:
sub rsp, 58h
mov [rsp+58h+var_8], rdi
mov [rsp+58h+var_10], rsi
mov [rsp+58h+var_18], rdx
mov [rsp+58h+var_1C], ecx
mov rax, [rsp+58h+var_10]
mov rax, [rax+28h]
mov rcx, [rsp+58h+var_18]
cmp rax, [rcx+20h]
jz short loc_50FEC
lea rdi, aWorkspaceLlm4... | long long ggml_conv_transpose_2d_p0(long long a1, _QWORD *a2, _QWORD *a3, unsigned int a4)
{
long long v5; // [rsp+8h] [rbp-50h]
_QWORD v6[5]; // [rsp+10h] [rbp-48h] BYREF
unsigned int v7; // [rsp+3Ch] [rbp-1Ch]
_QWORD *v8; // [rsp+40h] [rbp-18h]
_QWORD *v9; // [rsp+48h] [rbp-10h]
long long v10; // [rsp+50... | ggml_conv_transpose_2d_p0:
SUB RSP,0x58
MOV qword ptr [RSP + 0x50],RDI
MOV qword ptr [RSP + 0x48],RSI
MOV qword ptr [RSP + 0x40],RDX
MOV dword ptr [RSP + 0x3c],ECX
MOV RAX,qword ptr [RSP + 0x48]
MOV RAX,qword ptr [RAX + 0x28]
MOV RCX,qword ptr [RSP + 0x40]
CMP RAX,qword ptr [RCX + 0x20]
JZ 0x00150fec
LEA RDI,[0x1b45b7]... |
long ggml_conv_transpose_2d_p0(int8 param_1,long param_2,long param_3,int4 param_4)
{
long lVar1;
int8 local_48;
int8 local_40;
int8 local_38;
int8 local_30;
int4 local_1c;
long local_18;
long local_10;
int8 local_8;
local_1c = param_4;
local_18 = param_3;
local_10 = param_2;
local_8 = pa... | |
11,005 | ggml_conv_transpose_2d_p0 | ngxson[P]ggml-easy/ggml/src/ggml.c | struct ggml_tensor * ggml_conv_transpose_2d_p0(
struct ggml_context * ctx,
struct ggml_tensor * a,
struct ggml_tensor * b,
int stride) {
GGML_ASSERT(a->ne[3] == b->ne[2]);
const int64_t ne[4] = {
ggml_calc_conv_transpose_output_size(b->ne[0], a->ne[0]... | O2 | c | ggml_conv_transpose_2d_p0:
pushq %r15
pushq %r14
pushq %rbx
subq $0x20, %rsp
movq 0x28(%rsi), %rax
cmpq 0x20(%rdx), %rax
jne 0x2377b
movq %rdx, %rbx
movq %rsi, %r14
movq 0x10(%rdx), %rax
decq %rax
movslq %ecx, %r15
imulq %r15, %rax
addq 0x10(%rsi), %rax
movq %rsp, %rcx
movq %rax, (%rcx)
movq 0x18(%rdx), %rax
decq %rax
... | ggml_conv_transpose_2d_p0:
push r15
push r14
push rbx
sub rsp, 20h
mov rax, [rsi+28h]
cmp rax, [rdx+20h]
jnz short loc_2377B
mov rbx, rdx
mov r14, rsi
mov rax, [rdx+10h]
dec rax
movsxd r15, ecx
imul rax, r15
add rax, [rsi+10h]
mov rcx, rsp
mov [rcx], rax
mov ... | long long ggml_conv_transpose_2d_p0(
long long a1,
_QWORD *a2,
_QWORD *a3,
int a4,
long long a5,
long long a6,
__m128 a7,
__m128 a8,
__m128 a9,
__m128 a10,
__m128 a11,
__m128 a12,
__m128 a13,
__m128 a14)
{
... | ggml_conv_transpose_2d_p0:
PUSH R15
PUSH R14
PUSH RBX
SUB RSP,0x20
MOV RAX,qword ptr [RSI + 0x28]
CMP RAX,qword ptr [RDX + 0x20]
JNZ 0x0012377b
MOV RBX,RDX
MOV R14,RSI
MOV RAX,qword ptr [RDX + 0x10]
DEC RAX
MOVSXD R15,ECX
IMUL RAX,R15
ADD RAX,qword ptr [RSI + 0x10]
MOV RCX,RSP
MOV qword ptr [RCX],RAX
MOV RAX,qword ptr ... |
void ggml_conv_transpose_2d_p0(int8 param_1,long param_2,long param_3,int4 param_4)
{
long lVar1;
if (*(long *)(param_2 + 0x28) == *(long *)(param_3 + 0x20)) {
lVar1 = ggml_new_tensor(param_1,0,4);
*(int4 *)(lVar1 + 0x54) = param_4;
*(int4 *)(lVar1 + 0x50) = 0x34;
*(long *)(lVar1 + 0x98) = para... | |
11,006 | ResidualAttentionBlock::forward(ggml_context*, ggml_tensor*) | 7CodeWizard[P]stablediffusion/clip.hpp | struct ggml_tensor* forward(struct ggml_context* ctx, struct ggml_tensor* x) {
// x: [N, n_token, hidden_size]
int64_t N = x->ne[2];
int64_t n_token = x->ne[1];
int64_t hidden_size = n_head * d_model;
struct ggml_tensor* r = x;
// layer norm 1
x = ... | O0 | cpp | ResidualAttentionBlock::forward(ggml_context*, ggml_tensor*):
subq $0x98, %rsp
movq %rdi, 0x90(%rsp)
movq %rsi, 0x88(%rsp)
movq %rdx, 0x80(%rsp)
movq 0x90(%rsp), %rax
movq %rax, 0x30(%rsp)
movq 0x80(%rsp), %rcx
movq 0x20(%rcx), %rcx
movq %rcx, 0x78(%rsp)
movq 0x80(%rsp), %rcx
movq 0x18(%rcx), %rcx
movq %rcx, 0x70(%rsp)... | _ZN22ResidualAttentionBlock7forwardEP12ggml_contextP11ggml_tensor:
sub rsp, 98h
mov [rsp+98h+var_8], rdi
mov [rsp+98h+var_10], rsi
mov [rsp+98h+var_18], rdx
mov rax, [rsp+98h+var_8]
mov [rsp+98h+var_68], rax
mov rcx, [rsp+98h+var_18]
mov rcx, [rcx+20h]
mov [rsp+98h+var_20], rcx
mov ... | long long ResidualAttentionBlock::forward(int *a1, long long a2, long long a3)
{
float v3; // xmm0_4
long long v4; // rax
long long v5; // rax
long long v6; // rax
long long v7; // rax
long long v8; // rax
long long v9; // rax
long long v10; // rax
long long v11; // rax
long long v12; // rax
long... | forward:
SUB RSP,0x98
MOV qword ptr [RSP + 0x90],RDI
MOV qword ptr [RSP + 0x88],RSI
MOV qword ptr [RSP + 0x80],RDX
MOV RAX,qword ptr [RSP + 0x90]
MOV qword ptr [RSP + 0x30],RAX
MOV RCX,qword ptr [RSP + 0x80]
MOV RCX,qword ptr [RCX + 0x20]
MOV qword ptr [RSP + 0x78],RCX
MOV RCX,qword ptr [RSP + 0x80]
MOV RCX,qword ptr [... |
/* ResidualAttentionBlock::forward(ggml_context*, ggml_tensor*) */
int8 __thiscall
ResidualAttentionBlock::forward
(ResidualAttentionBlock *this,ggml_context *param_1,ggml_tensor *param_2)
{
int iVar1;
int iVar2;
long lVar3;
long lVar4;
ggml_tensor *pgVar5;
int8 uVar6;
int8 uVar7;
int8 uVar... | |
11,007 | ResidualAttentionBlock::forward(ggml_context*, ggml_tensor*) | 7CodeWizard[P]stablediffusion/clip.hpp | struct ggml_tensor* forward(struct ggml_context* ctx, struct ggml_tensor* x) {
// x: [N, n_token, hidden_size]
int64_t N = x->ne[2];
int64_t n_token = x->ne[1];
int64_t hidden_size = n_head * d_model;
struct ggml_tensor* r = x;
// layer norm 1
x = ... | O1 | cpp | ResidualAttentionBlock::forward(ggml_context*, ggml_tensor*):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x18, %rsp
movq %rsi, %rbx
movq %rdi, %r14
movq 0x18(%rdx), %r12
movq 0x20(%rdx), %r13
movl 0x4(%rdi), %eax
imull (%rdi), %eax
movl %eax, 0x4(%rsp)
movq 0x50(%rdi), %r15
movq 0x58(%rdi),... | _ZN22ResidualAttentionBlock7forwardEP12ggml_contextP11ggml_tensor:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 18h
mov rbx, rsi
mov r14, rdi
mov r12, [rdx+18h]
mov r13, [rdx+20h]
mov eax, [rdi+4]
imul eax, [rdi]
mov [rsp+48h+var_44], eax
mov r15, [... | long long ResidualAttentionBlock::forward(int *a1, long long a2, long long a3)
{
long long v4; // r12
long long v5; // r13
long long v6; // r15
long long v7; // rbp
long long v8; // rax
long long v9; // rax
long long v10; // rbp
long long v11; // r15
long long v12; // rax
long long v13; // r15
do... | |||
11,008 | ResidualAttentionBlock::forward(ggml_context*, ggml_tensor*) | 7CodeWizard[P]stablediffusion/clip.hpp | struct ggml_tensor* forward(struct ggml_context* ctx, struct ggml_tensor* x) {
// x: [N, n_token, hidden_size]
int64_t N = x->ne[2];
int64_t n_token = x->ne[1];
int64_t hidden_size = n_head * d_model;
struct ggml_tensor* r = x;
// layer norm 1
x = ... | O2 | cpp | ResidualAttentionBlock::forward(ggml_context*, ggml_tensor*):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x18, %rsp
movq %rdx, %r8
movq %rsi, %rbx
movq %rdi, %r14
movq 0x18(%rdx), %r12
movq 0x20(%rdx), %r13
movl 0x4(%rdi), %eax
imull (%rdi), %eax
movl %eax, 0x4(%rsp)
movq 0x50(%rdi), %rdx
m... | _ZN22ResidualAttentionBlock7forwardEP12ggml_contextP11ggml_tensor:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 18h
mov r8, rdx
mov rbx, rsi
mov r14, rdi
mov r12, [rdx+18h]
mov r13, [rdx+20h]
mov eax, [rdi+4]
imul eax, [rdi]
mov [rsp+48h+var_44], ea... | long long ResidualAttentionBlock::forward(int *a1, long long a2, long long a3)
{
long long v4; // r12
long long v5; // r13
long long v6; // rbp
long long v7; // r15
double v8; // xmm0_8
double v9; // xmm0_8
float v10; // xmm0_4
long long v11; // rax
long long v12; // rax
long long v13; // rax
lon... | forward:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x18
MOV R8,RDX
MOV RBX,RSI
MOV R14,RDI
MOV R12,qword ptr [RDX + 0x18]
MOV R13,qword ptr [RDX + 0x20]
MOV EAX,dword ptr [RDI + 0x4]
IMUL EAX,dword ptr [RDI]
MOV dword ptr [RSP + 0x4],EAX
MOV RDX,qword ptr [RDI + 0x50]
MOV RCX,qword ptr [RDI + 0x58]
... |
/* ResidualAttentionBlock::forward(ggml_context*, ggml_tensor*) */
void ResidualAttentionBlock::forward(ggml_context *param_1,ggml_tensor *param_2)
{
int iVar1;
int iVar2;
long lVar3;
long lVar4;
ggml_tensor *pgVar5;
int8 uVar6;
int8 uVar7;
int8 uVar8;
ggml_tensor *pgVar9;
ggml_tensor *in_RDX;
... | |
11,009 | ResidualAttentionBlock::forward(ggml_context*, ggml_tensor*) | 7CodeWizard[P]stablediffusion/clip.hpp | struct ggml_tensor* forward(struct ggml_context* ctx, struct ggml_tensor* x) {
// x: [N, n_token, hidden_size]
int64_t N = x->ne[2];
int64_t n_token = x->ne[1];
int64_t hidden_size = n_head * d_model;
struct ggml_tensor* r = x;
// layer norm 1
x = ... | O3 | cpp | ResidualAttentionBlock::forward(ggml_context*, ggml_tensor*):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x18, %rsp
movq %rsi, %rbx
movq %rdi, %r14
movq 0x18(%rdx), %r12
movq 0x20(%rdx), %r13
movl 0x4(%rdi), %eax
imull (%rdi), %eax
movl %eax, 0x4(%rsp)
movq 0x50(%rdi), %r15
movq 0x58(%rdi),... | _ZN22ResidualAttentionBlock7forwardEP12ggml_contextP11ggml_tensor:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 18h
mov rbx, rsi
mov r14, rdi
mov r12, [rdx+18h]
mov r13, [rdx+20h]
mov eax, [rdi+4]
imul eax, [rdi]
mov [rsp+48h+var_44], eax
mov r15, [... | long long ResidualAttentionBlock::forward(int *a1, long long a2, long long a3)
{
long long v4; // r12
long long v5; // r13
long long v6; // r15
long long v7; // rbp
long long v8; // rax
long long v9; // rax
long long v10; // rbp
long long v11; // r15
long long v12; // rax
long long v13; // r15
do... | |||
11,010 | store_page_range | eloqsql/storage/maria/ma_blockrec.c | static uchar *store_page_range(MARIA_SHARE *share,
uchar *to, MARIA_BITMAP_BLOCK *block,
ulong length,
uint *tot_ranges)
{
uint data_size= FULL_PAGE_SIZE(share);
ulong pages_left= (length + data_size -1) / data_size;
uint... | O0 | c | store_page_range:
pushq %rbp
movq %rsp, %rbp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movq %r8, -0x28(%rbp)
movq -0x8(%rbp), %rax
movl 0x7bc(%rax), %eax
movq -0x8(%rbp), %rcx
movl 0xc18(%rcx), %ecx
addl $0x8, %ecx
subl %ecx, %eax
subl $0x4, %eax
movl %eax, -0x2c(%rbp)
m... | store_page_range:
push rbp
mov rbp, rsp
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov [rbp+var_18], rdx
mov [rbp+var_20], rcx
mov [rbp+var_28], r8
mov rax, [rbp+var_8]
mov eax, [rax+7BCh]
mov rcx, [rbp+var_8]
mov ecx, [rcx+0C18h]
add ecx, 8
sub eax, ecx
sub eax, 4... | _WORD * store_page_range(long long a1, _WORD *a2, long long *a3, long long a4, _DWORD *a5)
{
long long v6; // [rsp+20h] [rbp-60h]
int v7; // [rsp+40h] [rbp-40h]
unsigned int v8; // [rsp+44h] [rbp-3Ch]
unsigned long long v9; // [rsp+48h] [rbp-38h]
unsigned int v10; // [rsp+54h] [rbp-2Ch]
_WORD *v12; // [rsp+... | store_page_range:
PUSH RBP
MOV RBP,RSP
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV qword ptr [RBP + -0x18],RDX
MOV qword ptr [RBP + -0x20],RCX
MOV qword ptr [RBP + -0x28],R8
MOV RAX,qword ptr [RBP + -0x8]
MOV EAX,dword ptr [RAX + 0x7bc]
MOV RCX,qword ptr [RBP + -0x8]
MOV ECX,dword ptr [RCX + 0xc1... |
int4 *
store_page_range(long param_1,int2 *param_2,int8 *param_3,long param_4,int *param_5)
{
int8 uVar1;
uint uVar2;
int local_48;
uint local_44;
ulong local_40;
int8 *local_20;
int4 *local_18;
uVar2 = (*(int *)(param_1 + 0x7bc) - (*(int *)(param_1 + 0xc18) + 8)) - 4;
local_40 = ((param_4 + (ulo... | |
11,011 | pagecache_unpin | eloqsql/storage/maria/ma_pagecache.c | void pagecache_unpin(PAGECACHE *pagecache,
PAGECACHE_FILE *file,
pgcache_page_no_t pageno,
LSN lsn)
{
PAGECACHE_BLOCK_LINK *block;
int page_st;
DBUG_ENTER("pagecache_unpin");
DBUG_PRINT("enter", ("fd: %u page: %lu",
(uint) fi... | O0 | c | pagecache_unpin:
pushq %rbp
movq %rsp, %rbp
subq $0x50, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
jmp 0x5865a
movq -0x8(%rbp), %rdi
addq $0xc8, %rdi
leaq 0xf8f5b(%rip), %rsi # 0x1515c7
movl $0xcef, %edx # imm = 0xCEF
callq 0x57500
jmp 0x58678
movq -0x... | pagecache_unpin:
push rbp
mov rbp, rsp
sub rsp, 50h
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov [rbp+var_18], rdx
mov [rbp+var_20], rcx
jmp short $+2
loc_5865A:
mov rdi, [rbp+var_8]
add rdi, 0C8h
lea rsi, aWorkspaceLlm4b_11; "/workspace/llm4binary/github2025/eloqsq"...
mov ... | long long pagecache_unpin(_QWORD *a1, long long a2, long long a3, long long a4, double a5)
{
int v6; // [rsp+24h] [rbp-2Ch] BYREF
long long block; // [rsp+28h] [rbp-28h]
long long v8; // [rsp+30h] [rbp-20h]
long long v9; // [rsp+38h] [rbp-18h]
long long v10; // [rsp+40h] [rbp-10h]
_QWORD *v11; // [rsp+48h]... | pagecache_unpin:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x50
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV qword ptr [RBP + -0x18],RDX
MOV qword ptr [RBP + -0x20],RCX
JMP 0x0015865a
LAB_0015865a:
MOV RDI,qword ptr [RBP + -0x8]
ADD RDI,0xc8
LEA RSI,[0x2515c7]
MOV EDX,0xcef
CALL 0x00157500
JMP 0x00158678
LAB_0... |
void pagecache_unpin(long param_1,int8 param_2,int8 param_3,long param_4)
{
int1 local_34 [4];
int8 local_30;
long local_28;
int8 local_20;
int8 local_18;
long local_10;
local_28 = param_4;
local_20 = param_3;
local_18 = param_2;
local_10 = param_1;
inline_mysql_mutex_lock
(param_... | |
11,012 | safe_hash_set | eloqsql/mysys/my_safehash.c | my_bool safe_hash_set(SAFE_HASH *hash, const uchar *key, uint length,
uchar *data)
{
SAFE_HASH_ENTRY *entry;
my_bool error= 0;
DBUG_ENTER("safe_hash_set");
DBUG_PRINT("enter",("key: %.*s data: %p", length, key, data));
mysql_rwlock_wrlock(&hash->mutex);
entry= (SAFE_HASH_ENTRY*) my_h... | O3 | c | safe_hash_set:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x18, %rsp
movq %rcx, %r12
movl %edx, %r15d
movq %rsi, %r14
movq %rdi, %rbx
cmpq $0x0, 0x90(%rdi)
jne 0xa6130
movq %rbx, %rdi
callq 0xa4445
leaq 0x98(%rbx), %r13
movl %r15d, -0x2c(%rbp)
movl %r15d, %r15d
movq %r13, %r... | safe_hash_set:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 18h
mov r12, rcx
mov r15d, edx
mov r14, rsi
mov rbx, rdi
cmp qword ptr [rdi+90h], 0
jnz loc_A6130
mov rdi, rbx
call my_rw_wrlock
loc_A601E:
lea r13, [rbx+98h]
mov [... | long long safe_hash_set(_QWORD *a1, long long a2, unsigned int a3, long long a4)
{
unsigned int v6; // r14d
long long v7; // rax
long long v8; // rcx
_QWORD *v10; // rax
long long v11; // r13
long long *v12; // rax
long long v13; // rcx
v6 = a2;
if ( a1[18] )
psi_rwlock_wrlock((long long)a1, (lo... | safe_hash_set:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x18
MOV R12,RCX
MOV R15D,EDX
MOV R14,RSI
MOV RBX,RDI
CMP qword ptr [RDI + 0x90],0x0
JNZ 0x001a6130
MOV RDI,RBX
CALL 0x001a4445
LAB_001a601e:
LEA R13,[RBX + 0x98]
MOV dword ptr [RBP + -0x2c],R15D
MOV R15D,R15D
MOV RDI,R13
MOV RSI,R... |
ulong safe_hash_set(long param_1,void *param_2,uint param_3,long param_4)
{
long lVar1;
long lVar2;
char cVar3;
long lVar4;
int8 *puVar5;
ulong uVar6;
if (*(long *)(param_1 + 0x90) == 0) {
my_rw_wrlock(param_1);
}
else {
psi_rwlock_wrlock(param_1,"/workspace/llm4binary/github2025/eloqsql/... | |
11,013 | my_compress_alloc | eloqsql/mysys/my_compress.c | uchar *my_compress_alloc(const uchar *packet, size_t *len, size_t *complen)
{
uchar *compbuf;
int res;
*complen= *len * 120 / 100 + 12;
if (!(compbuf= (uchar *) my_malloc(key_memory_my_compress_alloc,
*complen, MYF(MY_WME))))
return 0;
res= my_compress_buffer(compbu... | O0 | c | my_compress_alloc:
pushq %rbp
movq %rsp, %rbp
subq $0x40, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq -0x18(%rbp), %rax
imulq $0x78, (%rax), %rax
movl $0x64, %ecx
xorl %edx, %edx
divq %rcx
movq %rax, %rcx
addq $0xc, %rcx
movq -0x20(%rbp), %rax
movq %rcx, (%rax)
leaq 0xb96111(%rip), %r... | my_compress_alloc:
push rbp
mov rbp, rsp
sub rsp, 40h
mov [rbp+var_10], rdi
mov [rbp+var_18], rsi
mov [rbp+var_20], rdx
mov rax, [rbp+var_18]
imul rax, [rax], 78h ; 'x'
mov ecx, 64h ; 'd'
xor edx, edx
div rcx
mov rcx, rax
add rcx, 0Ch
mov rax, [rbp+var_20]
mov [... | long long my_compress_alloc(long long a1, _QWORD *a2, _QWORD *a3)
{
long long v4; // [rsp+8h] [rbp-38h]
long long v5; // [rsp+18h] [rbp-28h]
*a3 = 120LL * *a2 / 0x64uLL + 12;
v5 = my_malloc(key_memory_my_compress_alloc, *a3, 16LL);
if ( !v5 )
return 0LL;
if ( (unsigned int)my_compress_buffer(v5, a3, a... | my_compress_alloc:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x40
MOV qword ptr [RBP + -0x10],RDI
MOV qword ptr [RBP + -0x18],RSI
MOV qword ptr [RBP + -0x20],RDX
MOV RAX,qword ptr [RBP + -0x18]
IMUL RAX,qword ptr [RAX],0x78
MOV ECX,0x64
XOR EDX,EDX
DIV RCX
MOV RCX,RAX
ADD RCX,0xc
MOV RAX,qword ptr [RBP + -0x20]
MOV qword ptr [RAX],... |
long my_compress_alloc(int8 param_1,ulong *param_2,ulong *param_3)
{
ulong uVar1;
int iVar2;
int8 local_10;
*param_3 = (*param_2 * 0x78) / 100 + 0xc;
local_10 = my_malloc(key_memory_my_compress_alloc,*param_3,0x10);
if (local_10 == 0) {
local_10 = 0;
}
else {
iVar2 = my_compress_buffer(loca... | |
11,014 | nlohmann::json_abi_v3_11_3::detail::type_error nlohmann::json_abi_v3_11_3::detail::type_error::create<std::nullptr_t, 0>(int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::nullptr_t) | monkey531[P]llama/common/json.hpp | static type_error create(int id_, const std::string& what_arg, BasicJsonContext context)
{
const std::string w = concat(exception::name("type_error", id_), exception::diagnostics(context), what_arg);
return {id_, w.c_str()};
} | O0 | cpp | nlohmann::json_abi_v3_11_3::detail::type_error nlohmann::json_abi_v3_11_3::detail::type_error::create<std::nullptr_t, 0>(int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::nullptr_t):
subq $0xd8, %rsp
movq %rdi, 0x8(%rsp)
movq %rdi, %rax
movq %rax, 0x10(%rsp)
movq %rdi, 0xd... | _ZN8nlohmann16json_abi_v3_11_36detail10type_error6createIDnTnNSt9enable_ifIXsr21is_basic_json_contextIT_EE5valueEiE4typeELi0EEES2_iRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_:
sub rsp, 0D8h
mov [rsp+0D8h+var_D0], rdi; int
mov rax, rdi
mov qword ptr [rsp+0D8h+var_C8], rax; int
mov [rsp+... | nlohmann::json_abi_v3_11_3::detail::type_error * ZN8nlohmann16json_abi_v3_11_36detail10type_error6createIDnTnNSt9enable_ifIXsr21is_basic_json_contextIT_EE5valueEiE4typeELi0EEES2_iRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_(
nlohmann::json_abi_v3_11_3::detail::type_error *a1,
int a2,
... | |||
11,015 | nlohmann::json_abi_v3_11_3::detail::type_error nlohmann::json_abi_v3_11_3::detail::type_error::create<std::nullptr_t, 0>(int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::nullptr_t) | monkey531[P]llama/common/json.hpp | static type_error create(int id_, const std::string& what_arg, BasicJsonContext context)
{
const std::string w = concat(exception::name("type_error", id_), exception::diagnostics(context), what_arg);
return {id_, w.c_str()};
} | O3 | cpp | nlohmann::json_abi_v3_11_3::detail::type_error nlohmann::json_abi_v3_11_3::detail::type_error::create<std::nullptr_t, 0>(int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::nullptr_t):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x98, %rsp
movq %r... | _ZN8nlohmann16json_abi_v3_11_36detail10type_error6createIPNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEETnNSt9enable_ifIXsr21is_basic_json_contextIT_EE5valueEiE4typeELi0EEES2_iRKSC_SJ_:
push rbp
push r15
push r14
push ... | nlohmann::json_abi_v3_11_3::detail::exception * ZN8nlohmann16json_abi_v3_11_36detail10type_error6createIPNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEETnNSt9enable_ifIXsr21is_basic_json_contextIT_EE5valueEiE4typeELi0EEES2_iRKSC_S... | _ZN8nlohmann16json_abi_v3_11_36detail10type_error6createIPNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEETnNSt9enable_ifIXsr21is_basic_json_contextIT_EE5valueEiE4typeELi0EEES2_iRKSC_SJ_:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R1... |
exception *
_ZN8nlohmann16json_abi_v3_11_36detail10type_error6createIPNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEETnNSt9enable_ifIXsr21is_basic_json_contextIT_EE5valueEiE4typeELi0EEES2_iRKSC_SJ_
(exception *param_1,i... | |
11,016 | nglog::(anonymous namespace)::LogFileObject::~LogFileObject() | ng-log[P]ng-log/src/logging.cc | LogFileObject::~LogFileObject() {
std::lock_guard<std::mutex> l{mutex_};
file_ = nullptr;
} | O2 | cpp | nglog::(anonymous namespace)::LogFileObject::~LogFileObject():
pushq %r15
pushq %r14
pushq %rbx
movq %rdi, %rbx
leaq 0x24799(%rip), %rax # 0x2d830
movq %rax, (%rdi)
leaq 0x8(%rdi), %r14
movq %r14, %rdi
callq 0x1aabe
leaq 0x98(%rbx), %r15
movq %r15, %rdi
xorl %esi, %esi
callq 0xe7f8
movq %r14, %rdi
callq 0x7450
movq... | _ZN5nglog12_GLOBAL__N_113LogFileObjectD2Ev:
push r15
push r14
push rbx
mov rbx, rdi
lea rax, off_2D830
mov [rdi], rax
lea r14, [rdi+8]
mov rdi, r14; this
call _ZNSt5mutex4lockEv; std::mutex::lock(void)
lea r15, [rbx+98h]
mov rdi, r15
xor esi, esi
call _ZNSt15__uniq_ptr_imp... | void nglog::`anonymous namespace'::LogFileObject::~LogFileObject(
nglog::_anonymous_namespace_::LogFileObject *this)
{
*(_QWORD *)this = off_2D830;
std::mutex::lock((nglog::_anonymous_namespace_::LogFileObject *)((char *)this + 8));
std::__uniq_ptr_impl<_IO_FILE,std::default_delete<_IO_FILE>>::reset((cha... | ~LogFileObject:
PUSH R15
PUSH R14
PUSH RBX
MOV RBX,RDI
LEA RAX,[0x12d830]
MOV qword ptr [RDI],RAX
LEA R14,[RDI + 0x8]
LAB_0010909e:
MOV RDI,R14
CALL 0x0011aabe
LEA R15,[RBX + 0x98]
MOV RDI,R15
XOR ESI,ESI
CALL 0x0010e7f8
MOV RDI,R14
CALL 0x00107450
MOV RDI,R15
CALL 0x0010e74a
LEA RDI,[RBX + 0x78]
CALL 0x00107b38
LEA RD... |
/* nglog::(anonymous namespace)::LogFileObject::~LogFileObject() */
void __thiscall nglog::(anonymous_namespace)::LogFileObject::~LogFileObject(LogFileObject *this)
{
*(int ***)this = &PTR__LogFileObject_0012d830;
/* try { // try from 0010909e to 001090a5 has its CatchHandler @ 001090ea */
st... | |
11,017 | inline_mysql_rwlock_unlock | eloqsql/include/mysql/psi/mysql_thread.h | static inline int inline_mysql_rwlock_unlock(
mysql_rwlock_t *that)
{
int result;
#ifdef HAVE_PSI_RWLOCK_INTERFACE
if (psi_likely(that->m_psi != NULL))
PSI_RWLOCK_CALL(unlock_rwlock)(that->m_psi);
#endif
result= rw_unlock(&that->m_rwlock);
return result;
} | O0 | c | inline_mysql_rwlock_unlock:
pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
cmpq $0x0, 0x90(%rax)
setne %al
andb $0x1, %al
movzbl %al, %eax
cmpl $0x0, %eax
setne %al
andb $0x1, %al
movzbl %al, %eax
cltq
cmpq $0x0, %rax
je 0xb0891
leaq 0x20f9be(%rip), %rax # 0x2c0238
movq (%rax... | inline_mysql_rwlock_unlock_6:
push rbp
mov rbp, rsp
sub rsp, 10h
mov [rbp+var_8], rdi
mov rax, [rbp+var_8]
cmp qword ptr [rax+90h], 0
setnz al
and al, 1
movzx eax, al
cmp eax, 0
setnz al
and al, 1
movzx eax, al
cdqe
cmp rax, 0
jz short loc_B0891
lea rax, PSI_serve... | long long inline_mysql_rwlock_unlock_6(long long a1)
{
if ( *(_QWORD *)(a1 + 144) )
((void ( *)(_QWORD))PSI_server[45])(*(_QWORD *)(a1 + 144));
return (unsigned int)my_rw_unlock(a1);
}
| inline_mysql_rwlock_unlock:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV qword ptr [RBP + -0x8],RDI
MOV RAX,qword ptr [RBP + -0x8]
CMP qword ptr [RAX + 0x90],0x0
SETNZ AL
AND AL,0x1
MOVZX EAX,AL
CMP EAX,0x0
SETNZ AL
AND AL,0x1
MOVZX EAX,AL
CDQE
CMP RAX,0x0
JZ 0x001b0891
LEA RAX,[0x3c0238]
MOV RAX,qword ptr [RAX]
MOV RAX,qword... |
int4 inline_mysql_rwlock_unlock(long param_1)
{
int4 uVar1;
if (*(long *)(param_1 + 0x90) != 0) {
(**(code **)(PSI_server + 0x168))(*(int8 *)(param_1 + 0x90));
}
uVar1 = my_rw_unlock(param_1);
return uVar1;
}
| |
11,018 | uf_varchar1 | eloqsql/storage/maria/ma_packrec.c | static void uf_varchar1(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
uchar *to, uchar *end __attribute__((unused)))
{
if (get_bit(bit_buff))
to[0]= 0; /* Zero lengths */
else
{
ulong length=get_bits(bit_buff,rec->space_length_bits);
*to= (char) length;
decode_bytes(rec,bit_buff,to+1... | O0 | c | uf_varchar1:
pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movq -0x10(%rbp), %rax
cmpl $0x0, 0x4(%rax)
je 0x48c67
movq -0x10(%rbp), %rax
movl (%rax), %eax
movq -0x10(%rbp), %rdx
movl 0x4(%rdx), %ecx
addl $-0x1, %ecx
movl %ecx, 0x4(... | uf_varchar1:
push rbp
mov rbp, rsp
sub rsp, 30h
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov [rbp+var_18], rdx
mov [rbp+var_20], rcx
mov rax, [rbp+var_10]
cmp dword ptr [rax+4], 0
jz short loc_48C67
mov rax, [rbp+var_10]
mov eax, [rax]
mov rdx, [rbp+var_10]
mov ... | long long uf_varchar1(long long a1, int *a2, _BYTE *a3)
{
int v3; // eax
int v4; // ecx
long long result; // rax
unsigned int v6; // eax
int v7; // ecx
int bits; // [rsp+4h] [rbp-2Ch]
if ( a2[1] )
{
v3 = *a2;
v4 = a2[1] - 1;
a2[1] = v4;
if ( ((1 << v4) & v3) == 0 )
goto LABEL_6;
... | uf_varchar1:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x30
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV qword ptr [RBP + -0x18],RDX
MOV qword ptr [RBP + -0x20],RCX
MOV RAX,qword ptr [RBP + -0x10]
CMP dword ptr [RAX + 0x4],0x0
JZ 0x00148c67
MOV RAX,qword ptr [RBP + -0x10]
MOV EAX,dword ptr [RAX]
MOV RDX,qword ... |
void uf_varchar1(long param_1,uint *param_2,int1 *param_3)
{
uint uVar1;
uint local_34;
if (param_2[1] == 0) {
fill_buffer(param_2);
param_2[1] = 0x1f;
uVar1 = *param_2 & 0x80000000;
}
else {
uVar1 = param_2[1];
param_2[1] = uVar1 - 1;
uVar1 = *param_2 & 1 << ((byte)(uVar1 - 1) & ... | |
11,019 | my_default_csname | eloqsql/mysys/charset.c | const char* my_default_csname()
{
const char* csname = NULL;
#ifdef _WIN32
char cpbuf[64];
int cp = GetConsoleCP();
if (cp == 0)
cp = GetACP();
snprintf(cpbuf, sizeof(cpbuf), "cp%d", (int)cp);
csname = my_os_charset_to_mysql_charset(cpbuf);
#elif defined(HAVE_SETLOCALE) && defined(HAVE_NL_LANGINFO)
if... | O0 | c | my_default_csname:
pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq $0x0, -0x8(%rbp)
xorl %edi, %edi
leaq 0x600a6(%rip), %rsi # 0x8a12f
callq 0x25260
cmpq $0x0, %rax
je 0x2a0b5
movl $0xe, %edi
callq 0x252a0
movq %rax, -0x8(%rbp)
cmpq $0x0, %rax
je 0x2a0b5
movq -0x8(%rbp), %rdi
callq 0x2a0e0
movq %rax, -0x8(%rbp)
cm... | my_default_csname:
push rbp
mov rbp, rsp
sub rsp, 10h
mov [rbp+var_8], 0
xor edi, edi
lea rsi, aNewSection+14h; ""
call _setlocale
cmp rax, 0
jz short loc_2A0B5
mov edi, 0Eh
call _nl_langinfo
mov [rbp+var_8], rax
cmp rax, 0
jz short loc_2A0B5
mov rdi, [rbp+var_... | const char *my_default_csname()
{
long long v2; // [rsp+8h] [rbp-8h]
v2 = 0LL;
if ( setlocale(0LL, "") )
{
v2 = nl_langinfo(14LL);
if ( v2 )
v2 = my_os_charset_to_mysql_charset(v2);
}
if ( v2 )
return (const char *)v2;
else
return "latin1";
}
| my_default_csname:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV qword ptr [RBP + -0x8],0x0
XOR EDI,EDI
LEA RSI,[0x18a12f]
CALL 0x00125260
CMP RAX,0x0
JZ 0x0012a0b5
MOV EDI,0xe
CALL 0x001252a0
MOV qword ptr [RBP + -0x8],RAX
CMP RAX,0x0
JZ 0x0012a0b5
MOV RDI,qword ptr [RBP + -0x8]
CALL 0x0012a0e0
MOV qword ptr [RBP + -0x8],RAX
... |
char * my_default_csname(void)
{
char *pcVar1;
char *local_18;
char *local_10;
local_10 = (char *)0x0;
pcVar1 = setlocale(0,"");
if (pcVar1 != (char *)0x0) {
local_10 = nl_langinfo(0xe);
if (local_10 != (char *)0x0) {
local_10 = (char *)my_os_charset_to_mysql_charset(local_10);
}
}
... | |
11,020 | evmone::advanced::(anonymous namespace)::op_jump(evmone::advanced::Instruction const*, evmone::advanced::AdvancedExecutionState&) | corpus-core[P]colibri-stateless/build_O3/_deps/evmone_external-src/lib/evmone/instructions.hpp | [[nodiscard]] uint256& pop() noexcept { return *m_top--; } | O3 | cpp | evmone::advanced::(anonymous namespace)::op_jump(evmone::advanced::Instruction const*, evmone::advanced::AdvancedExecutionState&):
movq 0x228(%rsi), %rcx
leaq -0x20(%rcx), %rax
movq %rax, 0x228(%rsi)
movq (%rcx), %rax
movq 0x10(%rcx), %rdx
movq 0x18(%rcx), %rdi
xorl %r8d, %r8d
movq %rdi, %r9
orq %rdx, %r9
cmoveq %rax, ... | _ZN6evmone8advanced12_GLOBAL__N_17op_jumpEPKNS0_11InstructionERNS0_22AdvancedExecutionStateE:
mov rcx, [rsi+228h]
lea rax, [rcx-20h]
mov [rsi+228h], rax
mov rax, [rcx]
mov rdx, [rcx+10h]
mov rdi, [rcx+18h]
xor r8d, r8d
mov r9, rdi
or r9, rdx
cmovz rdx, rax
cmovz rdi, [rcx+8]
mov... | long long evmone::advanced::`anonymous namespace'::op_jump(long long a1, long long a2)
{
_QWORD *v2; // rcx
long long v3; // rax
unsigned long long v4; // rdx
unsigned long long v5; // rdi
bool v6; // zf
long long v7; // rcx
_QWORD *v8; // rcx
char *v9; // rdx
unsigned long long v10; // r9
char *v1... | op_jump:
MOV RCX,qword ptr [RSI + 0x228]
LEA RAX,[RCX + -0x20]
MOV qword ptr [RSI + 0x228],RAX
MOV RAX,qword ptr [RCX]
MOV RDX,qword ptr [RCX + 0x10]
MOV RDI,qword ptr [RCX + 0x18]
XOR R8D,R8D
MOV R9,RDI
OR R9,RDX
CMOVZ RDX,RAX
CMOVZ RDI,qword ptr [RCX + 0x8]
MOV ECX,0x7fffffff
CMOVNZ RCX,R8
CMP RCX,RDX
SBB R8,RDI
JC 0... |
/* evmone::advanced::(anonymous namespace)::op_jump(evmone::advanced::Instruction const*,
evmone::advanced::AdvancedExecutionState&) */
long evmone::advanced::(anonymous_namespace)::op_jump
(Instruction *param_1,AdvancedExecutionState *param_2)
{
ulong *puVar1;
long *plVar2;
int *piVar3;
bo... | |
11,021 | common_sampler_type_to_str[abi:cxx11](common_sampler_type) | monkey531[P]llama/common/sampling.cpp | std::string common_sampler_type_to_str(enum common_sampler_type cnstr) {
switch (cnstr) {
case COMMON_SAMPLER_TYPE_DRY: return "dry";
case COMMON_SAMPLER_TYPE_TOP_K: return "top_k";
case COMMON_SAMPLER_TYPE_TYPICAL_P: return "typ_p";
case COMMON_SAMPLER_TYPE_TOP_P: ... | O3 | cpp | common_sampler_type_to_str[abi:cxx11](common_sampler_type):
pushq %rbx
movq %rdi, %rbx
leaq 0x10(%rdi), %rax
movq %rax, (%rdi)
decl %esi
cmpl $0x9, %esi
ja 0xce612
leaq 0x26a0e(%rip), %rax # 0xf4f7c
movslq (%rax,%rsi,4), %rcx
addq %rax, %rcx
jmpq *%rcx
leaq 0x26dd5(%rip), %rsi # 0xf5353
leaq 0x26dd1(%rip), %rdx... | _Z26common_sampler_type_to_strB5cxx1119common_sampler_type:
push rbx
mov rbx, rdi
lea rax, [rdi+10h]
mov [rdi], rax
dec esi; switch 10 cases
cmp esi, 9
ja def_CE575; jumptable 00000000000CE575 default case, case 5
lea rax, jpt_CE575
movsxd rcx, ds:(jpt_CE575 - 0F4F7Ch)[rax+rsi*4]
add ... | _QWORD * common_sampler_type_to_str[abi:cxx11](_QWORD *a1, int a2)
{
char *v2; // rsi
char *v3; // rdx
*a1 = a1 + 2;
switch ( a2 )
{
case 1:
v2 = "dry";
v3 = "";
break;
case 2:
v2 = "top_k";
v3 = "";
break;
case 3:
v2 = "top_p";
v3 = "";
break... | common_sampler_type_to_str[abi:cxx11]:
PUSH RBX
MOV RBX,RDI
LEA RAX,[RDI + 0x10]
MOV qword ptr [RDI],RAX
DEC ESI
CMP ESI,0x9
JA 0x001ce612
LEA RAX,[0x1f4f7c]
MOVSXD RCX,dword ptr [RAX + RSI*0x4]
ADD RCX,RAX
switchD:
JMP RCX
caseD_1:
LEA RSI,[0x1f5353]
LEA RDX,[0x1f5356]
JMP 0x001ce605
caseD_3:
LEA RSI,[0x1f5363]
LEA RD... |
/* common_sampler_type_to_str[abi:cxx11](common_sampler_type) */
long * common_sampler_type_to_str_abi_cxx11_(long *param_1,int4 param_2)
{
char *pcVar1;
char *pcVar2;
*param_1 = (long)(param_1 + 2);
switch(param_2) {
case 1:
pcVar2 = "dry";
pcVar1 = "";
break;
case 2:
pcVar2 = "top_k"... | |
11,022 | my_hash_sort_utf32_nopad | eloqsql/strings/ctype-ucs2.c | static void
my_hash_sort_utf32_nopad(CHARSET_INFO *cs, const uchar *s, size_t slen,
ulong *nr1, ulong *nr2)
{
my_wc_t wc;
int res;
const uchar *e= s + slen;
MY_UNICASE_INFO *uni_plane= cs->caseinfo;
register ulong m1= *nr1, m2= *nr2;
while ((res= my_utf32_uni(cs, &wc, (uchar*) s, (... | O0 | c | my_hash_sort_utf32_nopad:
pushq %rbp
movq %rsp, %rbp
subq $0x60, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movq %r8, -0x28(%rbp)
movq -0x10(%rbp), %rax
addq -0x18(%rbp), %rax
movq %rax, -0x40(%rbp)
movq -0x8(%rbp), %rax
movq 0x78(%rax), %rax
movq %rax, -0x48(%rbp)
m... | my_hash_sort_utf32_nopad:
push rbp
mov rbp, rsp
sub rsp, 60h
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov [rbp+var_18], rdx
mov [rbp+var_20], rcx
mov [rbp+var_28], r8
mov rax, [rbp+var_10]
add rax, [rbp+var_18]
mov [rbp+var_40], rax
mov rax, [rbp+var_8]
mov rax, [rax... | _QWORD * my_hash_sort_utf32_nopad(long long a1, long long a2, long long a3, long long *a4, _QWORD *a5, long long a6)
{
_QWORD *result; // rax
long long v7; // [rsp+8h] [rbp-58h]
long long v8; // [rsp+8h] [rbp-58h]
long long v9; // [rsp+10h] [rbp-50h]
long long v10; // [rsp+10h] [rbp-50h]
long long v11; // [... | my_hash_sort_utf32_nopad:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x60
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV qword ptr [RBP + -0x18],RDX
MOV qword ptr [RBP + -0x20],RCX
MOV qword ptr [RBP + -0x28],R8
MOV RAX,qword ptr [RBP + -0x10]
ADD RAX,qword ptr [RBP + -0x18]
MOV qword ptr [RBP + -0x40],RAX
MOV RA... |
void my_hash_sort_utf32_nopad(long param_1,long param_2,long param_3,ulong *param_4,long *param_5)
{
int8 uVar1;
int iVar2;
long local_60;
ulong local_58;
ulong local_38;
long *local_30;
ulong *local_28;
long local_20;
long local_18;
long local_10;
uVar1 = *(int8 *)(param_1 + 0x78);
local_5... | |
11,023 | r3d_framebuffer_load_pingpong_bloom | r3d/src/r3d_state.c | void r3d_framebuffer_load_pingpong_bloom(int width, int height)
{
struct r3d_fb_pingpong_bloom_t* bloom = &R3D.framebuffer.pingPongBloom;
width /= 2, height /= 2;
bloom->id = rlLoadFramebuffer();
if (bloom->id == 0) {
TraceLog(LOG_WARNING, "Failed to create framebuffer");
}
rlEnableFr... | O3 | c | r3d_framebuffer_load_pingpong_bloom:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movl %edi, %ebx
shrl $0x1f, %ebx
addl %edi, %ebx
sarl %ebx
movl %esi, %r14d
shrl $0x1f, %r14d
addl %esi, %r14d
sarl %r14d
callq 0x1df6b
movl %eax, 0xef9e0(%rip) # 0x1afc60
testl %eax, %e... | r3d_framebuffer_load_pingpong_bloom:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
push rax
mov ebx, edi
shr ebx, 1Fh
add ebx, edi
sar ebx, 1
mov r14d, esi
shr r14d, 1Fh
add r14d, esi
sar r14d, 1
call rlLoadFramebuffer
mov dword ptr cs... | void r3d_framebuffer_load_pingpong_bloom(long long a1, int a2)
{
unsigned int v2; // ebx
unsigned int v3; // r14d
unsigned int Framebuffer; // eax
long long v5; // rdx
long long v6; // rcx
int v7; // r8d
int v8; // r9d
v2 = (int)a1 / 2;
v3 = a2 / 2;
Framebuffer = rlLoadFramebuffer(a1);
LODWORD(q... | r3d_framebuffer_load_pingpong_bloom:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV EBX,EDI
SHR EBX,0x1f
ADD EBX,EDI
SAR EBX,0x1
MOV R14D,ESI
SHR R14D,0x1f
ADD R14D,ESI
SAR R14D,0x1
CALL 0x0011df6b
MOV dword ptr [0x002afc60],EAX
TEST EAX,EAX
JNZ 0x001c029d
LEA RSI,[0x211dfe]
MOV EDI,0x4
... |
void r3d_framebuffer_load_pingpong_bloom(ulong param_1,ulong param_2)
{
char cVar1;
int iVar2;
int iVar3;
iVar2 = (int)(((uint)(param_1 >> 0x1f) & 1) + (int)param_1) >> 1;
iVar3 = (int)(((uint)(param_2 >> 0x1f) & 1) + (int)param_2) >> 1;
DAT_002afc60 = rlLoadFramebuffer();
if (DAT_002afc60 == 0) {
... | |
11,024 | my_pread | eloqsql/mysys/my_pread.c | size_t my_pread(File Filedes, uchar *Buffer, size_t Count, my_off_t offset,
myf MyFlags)
{
size_t readbytes, save_count= 0;
DBUG_ENTER("my_pread");
DBUG_PRINT("my",("fd: %d Seek: %llu Buffer: %p Count: %lu MyFlags: %lu",
Filedes, (ulonglong)offset, Buffer, (ulong)Count, MyFlags)... | O3 | c | my_pread:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x38, %rsp
movq %rcx, -0x58(%rbp)
movq %rdx, -0x38(%rbp)
movq %rsi, -0x50(%rbp)
movl %edi, -0x2c(%rbp)
movq $0x0, -0x40(%rbp)
movl $0x0, %r15d
testb $0x1a, %r8b
jne 0xa6662
leaq 0xb6bdf9(%rip), %rax # 0xc12458
movq (%ra... | my_pread:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 38h
mov [rbp+var_58], rcx
mov [rbp+var_38], rdx
mov [rbp+var_50], rsi
mov [rbp+var_2C], edi
mov [rbp+var_40], 0
mov r15d, 0
test r8b, 1Ah
jnz short loc_A6662
lea rax, my_glo... | long long my_pread(long long a1, const char *a2, long long a3, long long a4, __int16 a5)
{
__int16 v5; // r15
__int16 v6; // r15
int *v7; // r14
long long v8; // rax
long long v9; // rbx
long long v10; // r12
bool v11; // r13
int v12; // r15d
long long v13; // r15
long long v14; // rbx
long long ... | my_pread:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x38
MOV qword ptr [RBP + -0x58],RCX
MOV qword ptr [RBP + -0x38],RDX
MOV qword ptr [RBP + -0x50],RSI
MOV dword ptr [RBP + -0x2c],EDI
MOV qword ptr [RBP + -0x40],0x0
MOV R15D,0x0
TEST R8B,0x1a
JNZ 0x001a6662
LEA RAX,[0xd12458]
MOV R15,qw... |
long my_pread(int param_1,void *param_2,size_t param_3,long param_4,ulong param_5)
{
int iVar1;
int4 uVar2;
int *piVar3;
size_t sVar4;
int *piVar5;
int4 *puVar6;
int8 uVar7;
long lVar8;
int8 uVar9;
ulong uVar10;
long local_60;
void *local_58;
long local_48;
size_t local_40;
local_48 =... | |
11,025 | bool httplib::detail::read_content<httplib::Request>(httplib::Stream&, httplib::Request&, unsigned long, int&, std::function<bool (unsigned long, unsigned long)>, std::function<bool (char const*, unsigned long, unsigned long, unsigned long)>, bool) | nickolajgrishuk[P]metricz-cpp/build_O2/_deps/httplib-src/httplib.h | bool read_content(Stream &strm, T &x, size_t payload_max_length, int &status,
Progress progress, ContentReceiverWithProgress receiver,
bool decompress) {
return prepare_content_receiver(
x, status, std::move(receiver), decompress,
[&](const ContentReceiverWithProgress &... | O2 | c | bool httplib::detail::read_content<httplib::Request>(httplib::Stream&, httplib::Request&, unsigned long, int&, std::function<bool (unsigned long, unsigned long)>, std::function<bool (char const*, unsigned long, unsigned long, unsigned long)>, bool):
pushq %rbx
subq $0x80, %rsp
movb 0x90(%rsp), %al
movq %rdx, 0x50(%rsp)... | _ZN7httplib6detail12read_contentINS_7RequestEEEbRNS_6StreamERT_mRiSt8functionIFbmmEES8_IFbPKcmmmEEb:
push rbx
sub rsp, 80h
mov al, [rsp+88h+arg_0]
mov [rsp+88h+var_38], rdx
xorps xmm0, xmm0
movaps [rsp+88h+var_58], xmm0
and [rsp+88h+var_48], 0
mov rdx, [r9+18h]
mov [rsp+88h+var_40], rdx
mo... | long long httplib::detail::read_content<httplib::Request>(
long long a1,
long long a2,
long long a3,
long long a4,
long long a5,
__int128 *a6,
unsigned __int8 a7)
{
long long v7; // rdx
__int128 v8; // xmm1
unsigned int v9; // ebx
__int128 v11; // [rsp+30... | read_content<httplib::Request>:
PUSH RBX
SUB RSP,0x80
MOV AL,byte ptr [RSP + 0x90]
MOV qword ptr [RSP + 0x50],RDX
XORPS XMM0,XMM0
MOVAPS xmmword ptr [RSP + 0x30],XMM0
AND qword ptr [RSP + 0x40],0x0
MOV RDX,qword ptr [R9 + 0x18]
MOV qword ptr [RSP + 0x48],RDX
MOV RDX,qword ptr [R9 + 0x10]
TEST RDX,RDX
JZ 0x001228b0
MOVU... |
/* bool httplib::detail::read_content<httplib::Request>(httplib::Stream&, httplib::Request&,
unsigned long, int&, std::function<bool (unsigned long, unsigned long)>, std::function<bool (char
const*, unsigned long, unsigned long, unsigned long)>, bool) */
bool httplib::detail::read_content<httplib::Request>
... | |
11,026 | emittra::Emittra::notify_associated_cvs(std::shared_ptr<emittra::Emittra::EventData> const&) | angrymouse[P]emittra/src/emittra.cpp | void Emittra::notify_associated_cvs(const std::shared_ptr<EventData>& event_data) {
std::unique_lock<std::shared_mutex> lock(event_data->mutex);
auto& cvs = event_data->associated_cvs;
cvs.erase(
std::remove_if(cvs.begin(), cvs.end(),
[](const std::weak_ptr<std::condition_variable_any>& w... | O1 | cpp | emittra::Emittra::notify_associated_cvs(std::shared_ptr<emittra::Emittra::EventData> const&):
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x10, %rsp
movq %rsi, %rbx
movl $0x280, %eax # imm = 0x280
addq (%rsi), %rax
movq %rsp, %r14
movq %rax, (%r14)
movb $0x0, 0x8(%r14)
movq %r14, %rdi
callq ... | _ZN7emittra7Emittra21notify_associated_cvsERKSt10shared_ptrINS0_9EventDataEE:
push r15
push r14
push r13
push r12
push rbx
sub rsp, 10h
mov rbx, rsi
mov eax, 280h
add rax, [rsi]
mov r14, rsp
mov [r14], rax
mov byte ptr [r14+8], 0
mov rdi, r14
call _ZNSt11unique_lockISt1... | long long emittra::Emittra::notify_associated_cvs(long long a1, long long *a2)
{
long long v2; // r12
long long v3; // rbx
long long v4; // r13
long long v5; // r15
long long v6; // r15
long long v7; // r14
long long v8; // rax
long long v9; // r15
long long v11; // [rsp+0h] [rbp-38h] BYREF
char v1... | notify_associated_cvs:
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x10
MOV RBX,RSI
MOV EAX,0x280
ADD RAX,qword ptr [RSI]
MOV R14,RSP
MOV qword ptr [R14],RAX
MOV byte ptr [R14 + 0x8],0x0
MOV RDI,R14
CALL 0x001078e6
MOV byte ptr [R14 + 0x8],0x1
MOV R12,qword ptr [RBX]
MOV RBX,qword ptr [R12 + 0x2f8]
MOV R13,qwo... |
/* emittra::Emittra::notify_associated_cvs(std::shared_ptr<emittra::Emittra::EventData> const&) */
void __thiscall emittra::Emittra::notify_associated_cvs(Emittra *this,shared_ptr *param_1)
{
long lVar1;
_Iter_pred<emittra::Emittra::notify_associated_cvs(std::shared_ptr<emittra::Emittra::EventData>const&)::__0>
... | |
11,027 | emittra::Emittra::notify_associated_cvs(std::shared_ptr<emittra::Emittra::EventData> const&) | angrymouse[P]emittra/src/emittra.cpp | void Emittra::notify_associated_cvs(const std::shared_ptr<EventData>& event_data) {
std::unique_lock<std::shared_mutex> lock(event_data->mutex);
auto& cvs = event_data->associated_cvs;
cvs.erase(
std::remove_if(cvs.begin(), cvs.end(),
[](const std::weak_ptr<std::condition_variable_any>& w... | O3 | cpp | emittra::Emittra::notify_associated_cvs(std::shared_ptr<emittra::Emittra::EventData> const&):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x18, %rsp
movq %rsi, %rbx
movl $0x280, %eax # imm = 0x280
addq (%rsi), %rax
leaq 0x8(%rsp), %r14
movq %rax, (%r14)
movb $0x0, 0x8(%r14)
movq %... | _ZN7emittra7Emittra21notify_associated_cvsERKSt10shared_ptrINS0_9EventDataEE:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 18h
mov rbx, rsi
mov eax, 280h
add rax, [rsi]
lea r14, [rsp+48h+var_40]
mov [r14], rax
mov byte ptr [r14+8], 0
mov rdi, r14
call ... | long long emittra::Emittra::notify_associated_cvs(_DWORD a1, long long *a2)
{
long long v2; // r12
long long v3; // r14
long long v4; // rbx
long long v5; // r13
long long v6; // rbp
long long v7; // r15
long long v8; // r13
_QWORD *v9; // r13
long long v10; // r14
_QWORD *v12; // [rsp+0h] [rbp-48h... | notify_associated_cvs:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x18
MOV RBX,RSI
MOV EAX,0x280
ADD RAX,qword ptr [RSI]
LEA R14,[RSP + 0x8]
MOV qword ptr [R14],RAX
MOV byte ptr [R14 + 0x8],0x0
MOV RDI,R14
CALL 0x0010787e
MOV byte ptr [R14 + 0x8],0x1
MOV R12,qword ptr [RBX]
LEA RAX,[R12 + 0x2f8]
MOV ... |
/* emittra::Emittra::notify_associated_cvs(std::shared_ptr<emittra::Emittra::EventData> const&) */
void __thiscall emittra::Emittra::notify_associated_cvs(Emittra *this,shared_ptr *param_1)
{
long lVar1;
_Iter_pred<emittra::Emittra::notify_associated_cvs(std::shared_ptr<emittra::Emittra::EventData>const&)::__0>
... | |
11,028 | LefDefParser::lefiVia::addLayer(char const*) | Efficient-TDP/thirdparty/Limbo/limbo/thirdparty/lefdef/5.8/lef/lef/lefiVia.cpp | void
lefiVia::addLayer(const char *name)
{
lefiViaLayer *newl;
if (numLayers_ == layersAllocated_) {
int i;
lefiViaLayer **l;
if (layersAllocated_ == 0)
layersAllocated_ = 2;
else
layersAllocated_ *= 2;
l = (lefiViaLayer**) lefMalloc... | O3 | cpp | LefDefParser::lefiVia::addLayer(char const*):
pushq %r15
pushq %r14
pushq %rbx
movq %rsi, %r14
movq %rdi, %rbx
movl 0x48(%rdi), %eax
cmpl 0x4c(%rdi), %eax
jne 0x146b8
leal (%rax,%rax), %ecx
testl %eax, %eax
movl $0x2, %eax
cmovnel %ecx, %eax
movl %eax, 0x4c(%rbx)
movslq %eax, %rdi
shlq $0x3, %rdi
callq 0x24985
movq %ra... | _ZN12LefDefParser7lefiVia8addLayerEPKc:
push r15
push r14
push rbx
mov r14, rsi
mov rbx, rdi
mov eax, [rdi+48h]
cmp eax, [rdi+4Ch]
jnz short loc_146B8
lea ecx, [rax+rax]
test eax, eax
mov eax, 2
cmovnz eax, ecx
mov [rbx+4Ch], eax
movsxd rdi, eax
shl rdi, 3; this
call ... | long long LefDefParser::lefiVia::addLayer(LefDefParser::lefiVia *this, char *a2)
{
int v2; // eax
int v3; // ecx
bool v4; // zf
int v5; // eax
long long v6; // r15
long long v7; // rax
long long i; // rcx
LefDefParser::lefiViaLayer *v9; // r15
long long result; // rax
v2 = *((_DWORD *)this + 18);
... | addLayer:
PUSH R15
PUSH R14
PUSH RBX
MOV R14,RSI
MOV RBX,RDI
MOV EAX,dword ptr [RDI + 0x48]
CMP EAX,dword ptr [RDI + 0x4c]
JNZ 0x001146b8
LEA ECX,[RAX + RAX*0x1]
TEST EAX,EAX
MOV EAX,0x2
CMOVNZ EAX,ECX
MOV dword ptr [RBX + 0x4c],EAX
MOVSXD RDI,EAX
SHL RDI,0x3
CALL 0x00124985
MOV R15,RAX
MOVSXD RAX,dword ptr [RBX + 0x48... |
/* LefDefParser::lefiVia::addLayer(char const*) */
void __thiscall LefDefParser::lefiVia::addLayer(lefiVia *this,char *param_1)
{
int iVar1;
int iVar2;
long lVar3;
lefiViaLayer *this_00;
long lVar4;
char *pcVar5;
iVar1 = *(int *)(this + 0x48);
pcVar5 = param_1;
if (iVar1 == *(int *)(this + 0x4c)... | |
11,029 | func_uni_ksc5601_onechar | eloqsql/strings/ctype-euc_kr.c | static int func_uni_ksc5601_onechar(int code){
if ((code>=0x00A1)&&(code<=0x0167))
return(tab_uni_ksc56010[code-0x00A1]);
if ((code>=0x02C7)&&(code<=0x0451))
return(tab_uni_ksc56011[code-0x02C7]);
if ((code>=0x2015)&&(code<=0x2312))
return(tab_uni_ksc56012[code-0x2015]);
if ((code>=0x2460)&&(code<=0... | O0 | c | func_uni_ksc5601_onechar:
pushq %rbp
movq %rsp, %rbp
movl %edi, -0x8(%rbp)
cmpl $0xa1, -0x8(%rbp)
jl 0x3b4e7
cmpl $0x167, -0x8(%rbp) # imm = 0x167
jg 0x3b4e7
movl -0x8(%rbp), %eax
subl $0xa1, %eax
movslq %eax, %rcx
leaq 0xabaf5(%rip), %rax # 0xe6fd0
movzwl (%rax,%rcx,2), %eax
movl %eax, -0x4(%rbp)
jmp 0x3b6c5
... | func_uni_ksc5601_onechar:
push rbp
mov rbp, rsp
mov [rbp+var_8], edi
cmp [rbp+var_8], 0A1h
jl short loc_3B4E7
cmp [rbp+var_8], 167h
jg short loc_3B4E7
mov eax, [rbp+var_8]
sub eax, 0A1h
movsxd rcx, eax
lea rax, tab_uni_ksc56010
movzx eax, word ptr [rax+rcx*2]
mov [rbp+var... | long long func_uni_ksc5601_onechar(int a1)
{
if ( a1 < 161 || a1 > 359 )
{
if ( a1 < 711 || a1 > 1105 )
{
if ( a1 < 8213 || a1 > 8978 )
{
if ( a1 < 9312 || a1 > 9837 )
{
if ( a1 < 12288 || a1 > 12927 )
{
if ( a1 < 13184 || a1 > 13277 )
... | func_uni_ksc5601_onechar:
PUSH RBP
MOV RBP,RSP
MOV dword ptr [RBP + -0x8],EDI
CMP dword ptr [RBP + -0x8],0xa1
JL 0x0013b4e7
CMP dword ptr [RBP + -0x8],0x167
JG 0x0013b4e7
MOV EAX,dword ptr [RBP + -0x8]
SUB EAX,0xa1
MOVSXD RCX,EAX
LEA RAX,[0x1e6fd0]
MOVZX EAX,word ptr [RAX + RCX*0x2]
MOV dword ptr [RBP + -0x4],EAX
JMP 0... |
int2 func_uni_ksc5601_onechar(int param_1)
{
int2 uVar1;
if ((param_1 < 0xa1) || (0x167 < param_1)) {
if ((param_1 < 0x2c7) || (0x451 < param_1)) {
if ((param_1 < 0x2015) || (0x2312 < param_1)) {
if ((param_1 < 0x2460) || (0x266d < param_1)) {
if ((param_1 < 0x3000) || (0x327f < par... | |
11,030 | find_head | eloqsql/storage/maria/ma_bitmap.c | static my_bool find_head(MARIA_HA *info, uint length, uint position)
{
MARIA_FILE_BITMAP *bitmap= &info->s->bitmap;
MARIA_BITMAP_BLOCK *block;
/*
There is always place for the head block in bitmap_blocks as these are
preallocated at _ma_init_block_record().
*/
block= dynamic_element(&info->bitmap_bloc... | O0 | c | find_head:
pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x10(%rbp)
movl %esi, -0x14(%rbp)
movl %edx, -0x18(%rbp)
movq -0x10(%rbp), %rax
movq (%rax), %rax
addq $0xa10, %rax # imm = 0xA10
movq %rax, -0x20(%rbp)
movq -0x10(%rbp), %rax
movq 0x2c0(%rax), %rax
movl -0x18(%rbp), %ecx
imulq $0x18, %rcx, %... | find_head:
push rbp
mov rbp, rsp
sub rsp, 30h
mov [rbp+var_10], rdi
mov [rbp+var_14], esi
mov [rbp+var_18], edx
mov rax, [rbp+var_10]
mov rax, [rax]
add rax, 0A10h
mov [rbp+var_20], rax
mov rax, [rbp+var_10]
mov rax, [rax+2C0h]
mov ecx, [rbp+var_18]
imul rcx, 18h
ad... | char find_head(_QWORD *a1, int a2, unsigned int a3)
{
long long v4; // [rsp+8h] [rbp-28h]
long long v5; // [rsp+10h] [rbp-20h]
v5 = *a1 + 2576LL;
v4 = 24LL * a3 + a1[88];
if ( (*(_DWORD *)(*a1 + 1064LL) & 2) != 0 )
{
if ( *(_QWORD *)(*a1 + 2592LL) == *(_QWORD *)(*a1 + 3120LL)
|| !(unsigned __int... | find_head:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x30
MOV qword ptr [RBP + -0x10],RDI
MOV dword ptr [RBP + -0x14],ESI
MOV dword ptr [RBP + -0x18],EDX
MOV RAX,qword ptr [RBP + -0x10]
MOV RAX,qword ptr [RAX]
ADD RAX,0xa10
MOV qword ptr [RBP + -0x20],RAX
MOV RAX,qword ptr [RBP + -0x10]
MOV RAX,qword ptr [RAX + 0x2c0]
MOV ECX,dword... |
int1 find_head(long *param_1,int param_2,uint param_3)
{
long lVar1;
char cVar2;
long lVar3;
lVar3 = *param_1 + 0xa10;
lVar1 = param_1[0x58];
if ((*(uint *)(*param_1 + 0x428) & 2) != 0) {
if ((*(long *)(*param_1 + 0xa20) != *(long *)(*param_1 + 0xc30)) &&
(cVar2 = _ma_change_bitmap_page(para... | |
11,031 | minja::DictExpr::do_evaluate(std::shared_ptr<minja::Context> const&) const | monkey531[P]llama/common/minja.hpp | Value do_evaluate(const std::shared_ptr<Context> & context) const override {
auto result = Value::object();
for (const auto& [key, value] : elements) {
if (!key) throw std::runtime_error("Dict key is null");
if (!value) throw std::runtime_error("Dict value is null");
... | O1 | cpp | minja::DictExpr::do_evaluate(std::shared_ptr<minja::Context> const&) const:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0xb8, %rsp
movq %rdx, %r14
movq %rsi, %r15
movq %rdi, %r13
xorl %ebx, %ebx
leaq 0xa8(%rsp), %r12
movq %rbx, (%r12)
movl $0x30, %edi
callq 0x196a0
movabsq $0x100000001, %rcx... | _ZNK5minja8DictExpr11do_evaluateERKSt10shared_ptrINS_7ContextEE:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 0B8h
mov r14, rdx
mov r15, rsi
mov r13, rdi
xor ebx, ebx
lea r12, [rsp+0E8h+var_40]
mov [r12], rbx
mov edi, 30h ; '0'; unsigned __int64
call ... | minja::Value * minja::DictExpr::do_evaluate(minja::Value *a1, long long a2)
{
long long v2; // rax
void (****v3)(void); // rbx
void (****v4)(void); // r15
long long v5; // rdi
signed __int32 v6; // eax
long long v7; // rdi
signed __int32 v8; // eax
std::runtime_error *exception; // r15
_BYTE v12[8]; /... | do_evaluate:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0xb8
MOV R14,RDX
MOV R15,RSI
MOV R13,RDI
XOR EBX,EBX
LEA R12,[RSP + 0xa8]
MOV qword ptr [R12],RBX
MOV EDI,0x30
CALL 0x001196a0
MOV RCX,0x100000001
MOV qword ptr [RAX + 0x8],RCX
LEA RCX,[0x1ed5b8]
ADD RCX,0x10
MOV qword ptr [RAX],RCX
LEA RCX,[RAX... |
/* minja::DictExpr::do_evaluate(std::shared_ptr<minja::Context> const&) const */
DictExpr * __thiscall minja::DictExpr::do_evaluate(DictExpr *this,shared_ptr *param_1)
{
int *piVar1;
long *plVar2;
int iVar3;
runtime_error *this_00;
long *plVar4;
Expression local_e0 [8];
long *local_d8;
_Sp_counted_ba... | |
11,032 | pfs_malloc_array(PFS_builtin_memory_class*, unsigned long, unsigned long, unsigned long) | eloqsql/storage/perfschema/pfs_global.cc | void *pfs_malloc_array(PFS_builtin_memory_class *klass, size_t n, size_t size, myf flags)
{
assert(klass != NULL);
assert(n > 0);
assert(size > 0);
void *ptr= NULL;
size_t array_size= n * size;
/* Check for overflow before allocating. */
if (is_overflow(array_size, n, size))
{
sql_print_warning("Fai... | O0 | cpp | pfs_malloc_array(PFS_builtin_memory_class*, unsigned long, unsigned long, unsigned long):
pushq %rbp
movq %rsp, %rbp
subq $0x40, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq %rcx, -0x28(%rbp)
movq $0x0, -0x30(%rbp)
movq -0x18(%rbp), %rax
imulq -0x20(%rbp), %rax
movq %rax, -0x38(%rbp)
m... | _Z16pfs_malloc_arrayP24PFS_builtin_memory_classmmm:
push rbp
mov rbp, rsp
sub rsp, 40h
mov [rbp+var_10], rdi
mov [rbp+var_18], rsi
mov [rbp+var_20], rdx
mov [rbp+var_28], rcx
mov [rbp+var_30], 0
mov rax, [rbp+var_18]
imul rax, [rbp+var_20]
mov [rbp+var_38], rax
mov rdi, [rb... | long long pfs_malloc_array(PFS_builtin_memory_class *a1, unsigned long long a2, unsigned long long a3, char a4)
{
unsigned long long v5; // [rsp+8h] [rbp-38h]
long long v6; // [rsp+10h] [rbp-30h]
v5 = a3 * a2;
if ( (is_overflow(a3 * a2, a2, a3) & 1) != 0 )
{
glog_print_warning(
"/workspace/llm4bin... | pfs_malloc_array:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x40
MOV qword ptr [RBP + -0x10],RDI
MOV qword ptr [RBP + -0x18],RSI
MOV qword ptr [RBP + -0x20],RDX
MOV qword ptr [RBP + -0x28],RCX
MOV qword ptr [RBP + -0x30],0x0
MOV RAX,qword ptr [RBP + -0x18]
IMUL RAX,qword ptr [RBP + -0x20]
MOV qword ptr [RBP + -0x38],RAX
MOV RDI,qwo... |
/* pfs_malloc_array(PFS_builtin_memory_class*, unsigned long, unsigned long, unsigned long) */
long pfs_malloc_array(PFS_builtin_memory_class *param_1,ulong param_2,ulong param_3,ulong param_4)
{
ulong uVar1;
ulong uVar2;
long local_10;
uVar1 = param_2 * param_3;
uVar2 = is_overflow(uVar1,param_2,param_... | |
11,033 | my_strnxfrm_unicode_full_nopad_bin | eloqsql/strings/ctype-utf8.c | size_t
my_strnxfrm_unicode_full_nopad_bin(CHARSET_INFO *cs,
uchar *dst, size_t dstlen, uint nweights,
const uchar *src, size_t srclen, uint flags)
{
uchar *dst0= dst;
uchar *de= dst + dstlen;
dst+= my_strnxfrm_unicode_full_bin_internal(cs, dst... | O3 | c | my_strnxfrm_unicode_full_nopad_bin:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movq %rdx, %r13
movq %rsi, %rbx
movl 0x10(%rbp), %r12d
leaq -0x2c(%rbp), %rax
movl %ecx, (%rax)
leaq (%rsi,%rdx), %r14
addq %r8, %r9
movq %r14, %rdx
movq %rax, %rcx
callq 0x7025b
leaq (%rbx,%... | my_strnxfrm_unicode_full_nopad_bin:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
push rax
mov r13, rdx
mov rbx, rsi
mov r12d, [rbp+arg_0]
lea rax, [rbp+var_2C]
mov [rax], ecx
lea r14, [rsi+rdx]
add r9, r8
mov rdx, r14
mov rcx, rax
call ... | long long my_strnxfrm_unicode_full_nopad_bin(
long long a1,
_BYTE *a2,
long long a3,
int a4,
long long a5,
long long a6,
unsigned int a7)
{
unsigned int v8; // r12d
_BYTE *v9; // r14
long long v10; // rax
_BYTE *v11; // r15
bool v12; // cc
unsigned lo... | my_strnxfrm_unicode_full_nopad_bin:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV R13,RDX
MOV RBX,RSI
MOV R12D,dword ptr [RBP + 0x10]
LEA RAX,[RBP + -0x2c]
MOV dword ptr [RAX],ECX
LEA R14,[RSI + RDX*0x1]
ADD R9,R8
MOV RDX,R14
MOV RCX,RAX
CALL 0x0017025b
LEA R15,[RBX + RAX*0x1]
TEST R12B... |
long my_strnxfrm_unicode_full_nopad_bin
(int8 param_1,long param_2,long param_3,int param_4,long param_5,long param_6,
uint param_7)
{
void *pvVar1;
long lVar2;
ulong __n;
ulong uVar3;
void *__s;
int local_34;
pvVar1 = (void *)(param_2 + param_3);
local_34 = param_4;
... | |
11,034 | my_wc_mb_eucjpms | eloqsql/strings/ctype-eucjpms.c | static int
my_wc_mb_eucjpms(CHARSET_INFO *cs __attribute__((unused)),
my_wc_t wc, uchar *s, uchar *e)
{
int jp;
if ((int) wc < 0x80) /* ASCII [00-7F] */
{
if (s >= e)
return MY_CS_TOOSMALL;
*s= (uchar) wc;
return 1;
}
if (wc > 0xFFFF)
return MY_CS_ILUNI;
if ((jp= un... | O0 | c | my_wc_mb_eucjpms:
pushq %rbp
movq %rsp, %rbp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq %rcx, -0x28(%rbp)
movq -0x18(%rbp), %rax
cmpl $0x80, %eax
jge 0x4117d
movq -0x20(%rbp), %rax
cmpq -0x28(%rbp), %rax
jb 0x41165
movl $0xffffff9b, -0x4(%rbp) # imm = 0xFFFFFF9B
jmp 0x412a5
movq -0x18(%rb... | my_wc_mb_eucjpms:
push rbp
mov rbp, rsp
mov [rbp+var_10], rdi
mov [rbp+var_18], rsi
mov [rbp+var_20], rdx
mov [rbp+var_28], rcx
mov rax, [rbp+var_18]
cmp eax, 80h
jge short loc_4117D
mov rax, [rbp+var_20]
cmp rax, [rbp+var_28]
jb short loc_41165
mov [rbp+var_4], 0FFFF... | long long my_wc_mb_eucjpms(long long a1, unsigned long long a2, _BYTE *a3, unsigned long long a4)
{
__int16 v5; // [rsp+0h] [rbp-2Ch]
__int16 v6; // [rsp+0h] [rbp-2Ch]
if ( (int)a2 >= 128 )
{
if ( a2 <= 0xFFFF )
{
v5 = unicode_to_jisx0208_eucjpms[a2];
if ( v5 )
{
if ( (unsign... | my_wc_mb_eucjpms:
PUSH RBP
MOV RBP,RSP
MOV qword ptr [RBP + -0x10],RDI
MOV qword ptr [RBP + -0x18],RSI
MOV qword ptr [RBP + -0x20],RDX
MOV qword ptr [RBP + -0x28],RCX
MOV RAX,qword ptr [RBP + -0x18]
CMP EAX,0x80
JGE 0x0014117d
MOV RAX,qword ptr [RBP + -0x20]
CMP RAX,qword ptr [RBP + -0x28]
JC 0x00141165
MOV dword ptr [... |
int4 my_wc_mb_eucjpms(int8 param_1,ulong param_2,char *param_3,char *param_4)
{
short sVar1;
int4 local_c;
if ((int)param_2 < 0x80) {
if (param_3 < param_4) {
*param_3 = (char)param_2;
local_c = 1;
}
else {
local_c = 0xffffff9b;
}
}
else if (param_2 < 0x10000) {
sVar... | |
11,035 | my_wc_mb_eucjpms | eloqsql/strings/ctype-eucjpms.c | static int
my_wc_mb_eucjpms(CHARSET_INFO *cs __attribute__((unused)),
my_wc_t wc, uchar *s, uchar *e)
{
int jp;
if ((int) wc < 0x80) /* ASCII [00-7F] */
{
if (s >= e)
return MY_CS_TOOSMALL;
*s= (uchar) wc;
return 1;
}
if (wc > 0xFFFF)
return MY_CS_ILUNI;
if ((jp= un... | O3 | c | my_wc_mb_eucjpms:
cmpl $0x7f, %esi
jg 0x362e1
movl $0xffffff9b, %eax # imm = 0xFFFFFF9B
cmpq %rcx, %rdx
jae 0x36316
movb %sil, (%rdx)
movl $0x1, %eax
retq
xorl %eax, %eax
cmpq $0xffff, %rsi # imm = 0xFFFF
ja 0x36316
leaq 0xe728d(%rip), %rdi # 0x11d580
movzwl (%rdi,%rsi,2), %edi
testw %di, %di
je 0x3... | my_wc_mb_eucjpms:
cmp esi, 7Fh
jg short loc_362E1
mov eax, 0FFFFFF9Bh
cmp rdx, rcx
jnb short locret_36316
mov [rdx], sil
mov eax, 1
retn
loc_362E1:
xor eax, eax
cmp rsi, 0FFFFh
ja short locret_36316
lea rdi, unicode_to_jisx0208_eucjpms
movzx edi, word ptr [rdi+rsi*2]
test... | long long my_wc_mb_eucjpms(long long a1, unsigned long long a2, unsigned long long a3, unsigned long long a4)
{
long long result; // rax
__int16 v5; // di
__int16 v6; // bx
if ( (int)a2 > 127 )
{
result = 0LL;
if ( a2 <= 0xFFFF )
{
v5 = unicode_to_jisx0208_eucjpms[a2];
if ( v5 )
... | my_wc_mb_eucjpms:
CMP ESI,0x7f
JG 0x001362e1
MOV EAX,0xffffff9b
CMP RDX,RCX
JNC 0x00136316
MOV byte ptr [RDX],SIL
MOV EAX,0x1
RET
LAB_001362e1:
XOR EAX,EAX
CMP RSI,0xffff
JA 0x00136316
LEA RDI,[0x21d580]
MOVZX EDI,word ptr [RDI + RSI*0x2]
TEST DI,DI
JZ 0x00136317
LEA RSI,[RDX + 0x2]
MOV EAX,0xffffff9a
CMP RSI,RCX
JA 0x... |
int8 my_wc_mb_eucjpms(int8 param_1,ulong param_2,ushort *param_3,ushort *param_4)
{
ushort uVar1;
short sVar2;
int8 uVar3;
if ((int)param_2 < 0x80) {
uVar3 = 0xffffff9b;
if (param_3 < param_4) {
*(char *)param_3 = (char)param_2;
return 1;
}
}
else {
uVar3 = 0;
if (param_... | |
11,036 | llm_graph_context::build_copy_mask_state(ggml_cgraph*, ggml_tensor*, ggml_tensor*, ggml_tensor*, int, int) const | llama.cpp/src/llama-graph.cpp | ggml_tensor * llm_graph_context::build_copy_mask_state(
ggml_cgraph * gf,
ggml_tensor * s,
ggml_tensor * state_copy,
ggml_tensor * state_mask,
int32_t n_state,
int32_t n_seqs) const {
const llama_kv_cache_unified * kv_self = static_cast<const llama_k... | O3 | cpp | llm_graph_context::build_copy_mask_state(ggml_cgraph*, ggml_tensor*, ggml_tensor*, ggml_tensor*, int, int) const:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x38, %rsp
movq %r8, (%rsp)
movq %rcx, %r13
movq %rdx, 0x20(%rsp)
movq %rsi, 0x30(%rsp)
movq %rdi, %rcx
movslq 0x70(%rsp), %rbx
movq 0... | _ZNK17llm_graph_context21build_copy_mask_stateEP11ggml_cgraphP11ggml_tensorS3_S3_ii:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 38h
mov [rsp+68h+var_68], r8
mov r13, rcx
mov [rsp+68h+var_48], rdx
mov [rsp+68h+var_38], rsi
mov rcx, rdi
movsxd rbx, [rsp+68h+a... | long long llm_graph_context::build_copy_mask_state(
long long a1,
long long a2,
long long a3,
long long a4,
long long a5,
int a6,
int a7)
{
_DWORD *v8; // rax
int v9; // ebp
long long v10; // r15
int v11; // r12d
long long v12; // rax
long long rows; ... | build_copy_mask_state:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x38
MOV qword ptr [RSP],R8
MOV R13,RCX
MOV qword ptr [RSP + 0x20],RDX
MOV qword ptr [RSP + 0x30],RSI
MOV RCX,RDI
MOVSXD RBX,dword ptr [RSP + 0x70]
MOV RDI,qword ptr [RDI + 0xc0]
MOV RAX,qword ptr [RCX + 0xe8]
MOV R14,RCX
MOV qword ptr... |
/* llm_graph_context::build_copy_mask_state(ggml_cgraph*, ggml_tensor*, ggml_tensor*, ggml_tensor*,
int, int) const */
void __thiscall
llm_graph_context::build_copy_mask_state
(llm_graph_context *this,ggml_cgraph *param_1,ggml_tensor *param_2,ggml_tensor *param_3,
ggml_tensor *param_4,int param... | |
11,037 | mlog_itertor_last | navaro[P]qoraal-tictactoe/build_O3/_deps/qoraal-src/src/common/mlog.c | void*
mlog_itertor_last (MLOG_TYPE_T log, uint16_t type)
{
if (!_memlog_started) return 0 ;
CBUFFER_QUEUE_T * queue ;
CBUFFER_ITEM_T* it = 0 ;
queue = get_cqueue (log) ;
if (queue) {
os_mutex_lock (&_mlog_mutex) ;
it = cqueue_back (queue) ;
while (it) {
... | O3 | c | mlog_itertor_last:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %rbx
pushq %rax
cmpb $0x1, 0x26744(%rip) # 0x412d0
jne 0x1abf2
movl %edi, %eax
leaq 0x26749(%rip), %rcx # 0x412e0
movq (%rcx,%rax,8), %r15
testq %r15, %r15
je 0x1abf2
movl %esi, %r14d
leaq 0x2404e(%rip), %rdi # 0x3ebf8
callq 0x14ff0
m... | mlog_itertor_last:
push rbp
mov rbp, rsp
push r15
push r14
push rbx
push rax
cmp cs:_memlog_started, 1
jnz short loc_1ABF2
mov eax, edi
lea rcx, _mlog_inst
mov r15, [rcx+rax*8]
test r15, r15
jz short loc_1ABF2
mov r14d, esi
lea rdi, _mlog_mutex
call os_mutex_loc... | long long mlog_itertor_last(int a1, unsigned __int16 a2)
{
long long v2; // r15
long long v3; // rax
long long v4; // rbx
int v5; // eax
if ( memlog_started != 1 )
return 0LL;
v2 = mlog_inst[a1];
if ( !v2 )
return 0LL;
os_mutex_lock((long long *)&mlog_mutex);
v3 = cqueue_back(v2);
if ( v3 ... | mlog_itertor_last:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH RBX
PUSH RAX
CMP byte ptr [0x001412d0],0x1
JNZ 0x0011abf2
MOV EAX,EDI
LEA RCX,[0x1412e0]
MOV R15,qword ptr [RCX + RAX*0x8]
TEST R15,R15
JZ 0x0011abf2
MOV R14D,ESI
LEA RDI,[0x13ebf8]
CALL 0x00114ff0
MOV RDI,R15
CALL 0x0011c846
TEST RAX,RAX
JZ 0x0011abee
MOV ... |
long mlog_itertor_last(ulong param_1,ushort param_2)
{
long lVar1;
int iVar2;
long lVar3;
if ((_memlog_started == '\x01') && (lVar1 = (&_mlog_inst)[param_1 & 0xffffffff], lVar1 != 0)) {
os_mutex_lock(&_mlog_mutex);
for (lVar3 = cqueue_back(lVar1); lVar3 != 0; lVar3 = cqueue_forwards(lVar1,lVar3)) {... | |
11,038 | ggml_threadpool_free | Yangxiaoz[P]GGML-Tutorial/ggml/src/ggml-cpu/ggml-cpu.c | void ggml_threadpool_free(struct ggml_threadpool* threadpool) {
if (!threadpool) return;
const int n_threads = threadpool->n_threads_max;
#ifndef GGML_USE_OPENMP
struct ggml_compute_state* workers = threadpool->workers;
ggml_mutex_lock(&threadpool->mutex);
threadpool->stop = true;
threadpool... | O0 | c | ggml_threadpool_free:
pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x8(%rbp)
cmpq $0x0, -0x8(%rbp)
jne 0x104e8
jmp 0x105ea
movq -0x8(%rbp), %rax
movl 0xd8(%rax), %eax
movl %eax, -0xc(%rbp)
movq -0x8(%rbp), %rax
movq 0xd0(%rax), %rax
movq %rax, -0x18(%rbp)
movq -0x8(%rbp), %rdi
callq 0xdfa0
movq -0x8(%rbp), %... | ggml_threadpool_free:
push rbp
mov rbp, rsp
sub rsp, 30h
mov [rbp+var_8], rdi
cmp [rbp+var_8], 0
jnz short loc_104E8
jmp loc_105EA
loc_104E8:
mov rax, [rbp+var_8]
mov eax, [rax+0D8h]
mov [rbp+var_C], eax
mov rax, [rbp+var_8]
mov rax, [rax+0D0h]
mov [rbp+var_18], rax
mo... | void ggml_threadpool_free(long long a1)
{
int i; // [rsp+14h] [rbp-1Ch]
long long v2; // [rsp+18h] [rbp-18h]
int v3; // [rsp+24h] [rbp-Ch]
if ( a1 )
{
v3 = *(_DWORD *)(a1 + 216);
v2 = *(_QWORD *)(a1 + 208);
pthread_mutex_lock(a1);
*(_BYTE *)(a1 + 200) = 1;
*(_BYTE *)(a1 + 201) = 0;
p... | ggml_threadpool_free:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x30
MOV qword ptr [RBP + -0x8],RDI
CMP qword ptr [RBP + -0x8],0x0
JNZ 0x001104e8
JMP 0x001105ea
LAB_001104e8:
MOV RAX,qword ptr [RBP + -0x8]
MOV EAX,dword ptr [RAX + 0xd8]
MOV dword ptr [RBP + -0xc],EAX
MOV RAX,qword ptr [RBP + -0x8]
MOV RAX,qword ptr [RAX + 0xd0]
MOV... |
void ggml_threadpool_free(pthread_mutex_t *param_1)
{
int iVar1;
long lVar2;
int iVar3;
int local_24;
if (param_1 != (pthread_mutex_t *)0x0) {
iVar1 = *(int *)((long)param_1 + 0xd8);
lVar2 = *(long *)((long)param_1 + 0xd0);
pthread_mutex_lock(param_1);
LOCK();
param_1[5].__size[0] = '... | |
11,039 | ggml_threadpool_free | Yangxiaoz[P]GGML-Tutorial/ggml/src/ggml-cpu/ggml-cpu.c | void ggml_threadpool_free(struct ggml_threadpool* threadpool) {
if (!threadpool) return;
const int n_threads = threadpool->n_threads_max;
#ifndef GGML_USE_OPENMP
struct ggml_compute_state* workers = threadpool->workers;
ggml_mutex_lock(&threadpool->mutex);
threadpool->stop = true;
threadpool... | O3 | c | ggml_threadpool_free:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
testq %rdi, %rdi
je 0xa932
movq %rdi, %rbx
movslq 0xd8(%rdi), %r15
movq 0xd0(%rdi), %r12
callq 0x8850
movb $0x1, %al
xchgb %al, 0xc8(%rbx)
xorl %eax, %eax
xchgb %al, 0xc9(%rbx)
leaq 0x28(%rbx), %r14
movq %r14, %rdi
callq ... | ggml_threadpool_free:
push rbp
push r15
push r14
push r13
push r12
push rbx
push rax
test rdi, rdi
jz loc_A932
mov rbx, rdi
movsxd r15, dword ptr [rdi+0D8h]
mov r12, [rdi+0D0h]
call _pthread_mutex_lock
mov al, 1
xchg al, [rbx+0C8h]
xor eax, eax
xchg al, [rbx+0C9h]
... | long long ggml_threadpool_free(long long a1)
{
long long v1; // r15
long long v2; // r12
long long v3; // rbp
long long result; // rax
if ( a1 )
{
v1 = *(int *)(a1 + 216);
v2 = *(_QWORD *)(a1 + 208);
pthread_mutex_lock(a1);
*(_BYTE *)(a1 + 200) = 1;
*(_BYTE *)(a1 + 201) = 0;
pthrea... | ggml_threadpool_free:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
TEST RDI,RDI
JZ 0x0010a932
MOV RBX,RDI
MOVSXD R15,dword ptr [RDI + 0xd8]
MOV R12,qword ptr [RDI + 0xd0]
CALL 0x00108850
MOV AL,0x1
XCHG byte ptr [RBX + 0xc8],AL
XOR EAX,EAX
XCHG byte ptr [RBX + 0xc9],AL
LEA R14,[RBX + 0x28]
MOV RDI,R14... |
void ggml_threadpool_free(pthread_mutex_t *param_1)
{
long lVar1;
uint uVar2;
long lVar3;
long lVar4;
if (param_1 == (pthread_mutex_t *)0x0) {
return;
}
lVar4 = (long)*(int *)((long)param_1 + 0xd8);
lVar1 = *(long *)((long)param_1 + 0xd0);
pthread_mutex_lock(param_1);
LOCK();
param_1[5]._... | |
11,040 | my_hash_delete | eloqsql/mysys/hash.c | my_bool my_hash_delete(HASH *hash, uchar *record)
{
uint pos2,idx,empty_index;
my_hash_value_type pos_hashnr, lastpos_hashnr;
size_t blength;
HASH_LINK *data,*lastpos,*gpos,*pos,*pos3,*empty;
DBUG_ENTER("my_hash_delete");
if (!hash->records)
DBUG_RETURN(1);
blength=hash->blength;
data=dynamic_eleme... | O0 | c | my_hash_delete:
pushq %rbp
movq %rsp, %rbp
subq $0x90, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq -0x10(%rbp), %rax
cmpq $0x0, 0x18(%rax)
jne 0x2afc9
jmp 0x2afc0
movb $0x1, -0x1(%rbp)
jmp 0x2b342
movq -0x10(%rbp), %rax
movq 0x10(%rax), %rax
movq %rax, -0x38(%rbp)
movq -0x10(%rbp), %rax
movq 0x28(%rax), %ra... | my_hash_delete:
push rbp
mov rbp, rsp
sub rsp, 90h
mov [rbp+var_10], rdi
mov [rbp+var_18], rsi
mov rax, [rbp+var_10]
cmp qword ptr [rax+18h], 0
jnz short loc_2AFC9
jmp short $+2
loc_2AFC0:
mov [rbp+var_1], 1
jmp loc_2B342
loc_2AFC9:
mov rax, [rbp+var_10]
mov rax, [rax+... | char my_hash_delete(long long a1, long long a2)
{
unsigned int v2; // eax
unsigned long long v3; // rax
_QWORD *v5; // [rsp+28h] [rbp-68h]
long long v6; // [rsp+30h] [rbp-60h]
unsigned int *v7; // [rsp+38h] [rbp-58h]
long long v8; // [rsp+38h] [rbp-58h]
_DWORD *v9; // [rsp+40h] [rbp-50h]
long long v10;... | my_hash_delete:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x90
MOV qword ptr [RBP + -0x10],RDI
MOV qword ptr [RBP + -0x18],RSI
MOV RAX,qword ptr [RBP + -0x10]
CMP qword ptr [RAX + 0x18],0x0
JNZ 0x0012afc9
JMP 0x0012afc0
LAB_0012afc0:
MOV byte ptr [RBP + -0x1],0x1
JMP 0x0012b342
LAB_0012afc9:
MOV RAX,qword ptr [RBP + -0x10]
MOV RAX,... |
int1 my_hash_delete(long param_1,long param_2)
{
int8 uVar1;
long lVar2;
int4 uVar3;
uint uVar4;
uint uVar5;
uint uVar6;
ulong uVar7;
uint *puVar8;
uint *puVar9;
uint *puVar10;
uint *local_70;
uint *local_60;
uint *local_58;
uint local_2c;
int4 local_28;
if (*(long *)(param_1 + 0x18... | |
11,041 | codegen_generate_tail_call | eshkol/src/backend/codegen/calls.c | bool codegen_generate_tail_call(CodegenContext* context, const AstNode* node) {
assert(context != NULL);
assert(node != NULL);
assert(node->type == AST_CALL);
assert(node->is_tail_position);
// Get output file
FILE* output = codegen_context_get_output(context);
// Get binding syste... | O3 | c | codegen_generate_tail_call:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
testq %rdi, %rdi
je 0x6351
movq %rsi, %r15
testq %rsi, %rsi
je 0x6370
cmpl $0x19, (%r15)
jne 0x638f
cmpb $0x0, 0x38(%r15)
je 0x63ae
movq %rdi, %rbx
callq 0x3c55
movq %rax, %r14
movq %rbx, %rdi
callq ... | codegen_generate_tail_call:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
push rax
test rdi, rdi
jz loc_6351
mov r15, rsi
test rsi, rsi
jz loc_6370
cmp dword ptr [r15], 19h
jnz loc_638F
cmp byte ptr [r15+38h], 0
jz loc_63AE
mov rbx, ... | long long codegen_generate_tail_call(long long a1, long long a2)
{
long long output; // r14
unsigned long long binding_system; // r13
long long *diagnostics; // rax
long long v5; // r8
long long v6; // r9
long long v7; // r12
long long v8; // r12
unsigned long long v9; // r15
unsigned long long v10; ... | codegen_generate_tail_call:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
TEST RDI,RDI
JZ 0x00106351
MOV R15,RSI
TEST RSI,RSI
JZ 0x00106370
CMP dword ptr [R15],0x19
JNZ 0x0010638f
CMP byte ptr [R15 + 0x38],0x0
JZ 0x001063ae
MOV RBX,RDI
CALL 0x00103c55
MOV R14,RAX
MOV RDI,RBX
CALL 0x00103e52... |
ulong codegen_generate_tail_call(long param_1,int *param_2)
{
ulong uVar1;
char cVar2;
FILE *__s;
int *piVar3;
int8 uVar4;
int8 uVar5;
long lVar6;
long lVar7;
char *__s_00;
char *pcVar8;
ulong uVar9;
if (param_1 == 0) {
/* WARNING: Subroutine does not return */
__ass... | |
11,042 | string_buffer_putc_slow | bluesky950520[P]quickjs/quickjs.c | static no_inline int string_buffer_putc_slow(StringBuffer *s, uint32_t c)
{
if (unlikely(s->len >= s->size)) {
if (string_buffer_realloc(s, s->len + 1, c))
return -1;
}
if (s->is_wide_char) {
s->str->u.str16[s->len++] = c;
} else if (c < 0x100) {
s->str->u.str8[s->len... | O2 | c | string_buffer_putc_slow:
pushq %rbp
pushq %r14
pushq %rbx
movl %esi, %ebx
movq %rdi, %r14
movl 0x10(%rdi), %esi
pushq $-0x1
popq %rbp
cmpl 0x14(%rdi), %esi
jge 0x41947
cmpl $0x0, 0x18(%r14)
je 0x41911
movq 0x8(%r14), %rax
movslq 0x10(%r14), %rcx
leal 0x1(%rcx), %edx
movl %edx, 0x10(%r14)
movw %bx, 0x18(%rax,%rcx,2)
jmp... | string_buffer_putc_slow:
push rbp
push r14
push rbx
mov ebx, esi
mov r14, rdi
mov esi, [rdi+10h]
push 0FFFFFFFFFFFFFFFFh
pop rbp
cmp esi, [rdi+14h]
jge short loc_41947
loc_418F4:
cmp dword ptr [r14+18h], 0
jz short loc_41911
loc_418FB:
mov rax, [r14+8]
movsxd rcx, dword... | long long string_buffer_putc_slow(
long long a1,
unsigned int a2,
__m128 a3,
__m128 a4,
__m128 a5,
__m128 a6,
__m128 a7,
__m128 a8,
__m128 a9,
__m128 a10,
long long a11,
long long a12,
long long a13,
long lo... | string_buffer_putc_slow:
PUSH RBP
PUSH R14
PUSH RBX
MOV EBX,ESI
MOV R14,RDI
MOV ESI,dword ptr [RDI + 0x10]
PUSH -0x1
POP RBP
CMP ESI,dword ptr [RDI + 0x14]
JGE 0x00141947
LAB_001418f4:
CMP dword ptr [R14 + 0x18],0x0
JZ 0x00141911
LAB_001418fb:
MOV RAX,qword ptr [R14 + 0x8]
MOVSXD RCX,dword ptr [R14 + 0x10]
LEA EDX,[RCX... |
int4 string_buffer_putc_slow(long param_1,uint param_2)
{
int iVar1;
if ((*(int *)(param_1 + 0x14) <= *(int *)(param_1 + 0x10)) &&
(iVar1 = string_buffer_realloc(param_1,*(int *)(param_1 + 0x10) + 1,param_2), iVar1 != 0)) {
return 0xffffffff;
}
if (*(int *)(param_1 + 0x18) == 0) {
if (param_2 ... | |
11,043 | nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned c... | monkey531[P]llama/common/json.hpp | basic_json(const JsonRef& ref) : basic_json(ref.moved_or_copied()) {} | O3 | cpp | nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned c... | _ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvEC2INS0_6detail8json_refISD_EETnNSt9enable_ifIXsr6detail11conjunctionINSF_11is_json_refIT_EESt7is_sameINSK_10value_typeESD_EEE5valueEiE4typeELi0EEERKSK_:
push ... | char * ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvEC2INS0_6detail8json_refISD_EETnNSt9enable_ifIXsr6detail11conjunctionINSF_11is_json_refIT_EESt7is_sameINSK_10value_typeESD_EEE5valueEiE4typeELi0EEERKSK_(... | _ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvEC2INS0_6detail8json_refISD_EETnNSt9enable_ifIXsr6detail11conjunctionINSF_11is_json_refIT_EESt7is_sameINSK_10value_typeESD_EEE5valueEiE4typeELi0EEERKSK_:
PUSH ... |
void _ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvEC2INS0_6detail8json_refISD_EETnNSt9enable_ifIXsr6detail11conjunctionINSF_11is_json_refIT_EESt7is_sameINSK_10value_typeESD_EEE5valueEiE4typeELi0EEERKSK_
... | |
11,044 | run_plugin_auth | eloqsql/libmariadb/plugins/auth/my_auth.c | int run_plugin_auth(MYSQL *mysql, char *data, uint data_len,
const char *data_plugin, const char *db)
{
const char *auth_plugin_name= NULL;
auth_plugin_t *auth_plugin;
MCPVIO_EXT mpvio;
ulong pkt_length;
int res;
/* determine the default/initial plugin to use */
if (... | O0 | c | run_plugin_auth:
pushq %rbp
movq %rsp, %rbp
subq $0xc0, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movl %edx, -0x1c(%rbp)
movq %rcx, -0x28(%rbp)
movq %r8, -0x30(%rbp)
movq $0x0, -0x38(%rbp)
movq -0x10(%rbp), %rax
movq 0x370(%rax), %rax
andq $0x80000, %rax # imm = 0x80000
cmpq $0x0, %rax
je 0x9a615
movq... | run_plugin_auth:
push rbp
mov rbp, rsp
sub rsp, 0C0h
mov [rbp+var_10], rdi
mov [rbp+var_18], rsi
mov [rbp+var_1C], edx
mov [rbp+var_28], rcx
mov [rbp+var_30], r8
mov [rbp+var_38], 0
mov rax, [rbp+var_10]
mov rax, [rax+370h]
and rax, 80000h
cmp rax, 0
jz short loc_... | long long run_plugin_auth(long long a1, long long a2, int a3, const char *a4, long long a5)
{
long long v5; // rsi
long long v6; // rdx
long long v7; // rcx
int v8; // r8d
int v9; // r9d
unsigned int *v10; // rax
long long v12; // [rsp+8h] [rbp-B8h]
char *v13; // [rsp+10h] [rbp-B0h]
char *v14; // [rs... | run_plugin_auth:
PUSH RBP
MOV RBP,RSP
SUB RSP,0xc0
MOV qword ptr [RBP + -0x10],RDI
MOV qword ptr [RBP + -0x18],RSI
MOV dword ptr [RBP + -0x1c],EDX
MOV qword ptr [RBP + -0x28],RCX
MOV qword ptr [RBP + -0x30],R8
MOV qword ptr [RBP + -0x38],0x0
MOV RAX,qword ptr [RBP + -0x10]
MOV RAX,qword ptr [RAX + 0x370]
AND RAX,0x8000... |
int4 run_plugin_auth(long param_1,long param_2,int param_3,char *param_4,int8 param_5)
{
int *puVar1;
int *puVar2;
long lVar3;
int iVar4;
char *pcVar5;
int *piVar6;
size_t sVar7;
long local_a0;
code *local_98;
code *local_90;
code *local_88;
long local_80;
int1 *local_78;
int8 local_70;
... | |
11,045 | JS_DefinePropertyValueValue | bluesky950520[P]quickjs/quickjs.c | int JS_DefinePropertyValueValue(JSContext *ctx, JSValue this_obj,
JSValue prop, JSValue val, int flags)
{
JSAtom atom;
int ret;
atom = JS_ValueToAtom(ctx, prop);
JS_FreeValue(ctx, prop);
if (unlikely(atom == JS_ATOM_NULL)) {
JS_FreeValue(ctx, val);
ret... | O0 | c | JS_DefinePropertyValueValue:
subq $0x58, %rsp
leaq 0x60(%rsp), %rax
movq %rax, 0x10(%rsp)
movq %rsi, 0x40(%rsp)
movq %rdx, 0x48(%rsp)
movq %rcx, 0x30(%rsp)
movq %r8, 0x38(%rsp)
movq %rdi, 0x28(%rsp)
movl %r9d, 0x24(%rsp)
movq 0x28(%rsp), %rdi
movq 0x30(%rsp), %rsi
movq 0x38(%rsp), %rdx
callq 0x2ff40
movl %eax, 0x20(%rs... | JS_DefinePropertyValueValue:
sub rsp, 58h
lea rax, [rsp+58h+arg_0]
mov [rsp+58h+var_48], rax
mov [rsp+58h+var_18], rsi
mov [rsp+58h+var_10], rdx
mov [rsp+58h+var_28], rcx
mov [rsp+58h+var_20], r8
mov [rsp+58h+var_30], rdi
mov [rsp+58h+var_34], r9d
mov rdi, [rsp+58h+var_30]
mov ... | long long JS_DefinePropertyValueValue(
long long a1,
long long a2,
long long a3,
long long a4,
long long a5,
int a6,
__m128 a7,
__m128 a8,
__m128 a9,
__m128 a10,
double a11,
double a12,
__m128 a13,
__m128 a1... | JS_DefinePropertyValueValue:
SUB RSP,0x58
LEA RAX,[RSP + 0x60]
MOV qword ptr [RSP + 0x10],RAX
MOV qword ptr [RSP + 0x40],RSI
MOV qword ptr [RSP + 0x48],RDX
MOV qword ptr [RSP + 0x30],RCX
MOV qword ptr [RSP + 0x38],R8
MOV qword ptr [RSP + 0x28],RDI
MOV dword ptr [RSP + 0x24],R9D
MOV RDI,qword ptr [RSP + 0x28]
MOV RSI,qw... |
int4
JS_DefinePropertyValueValue
(int8 param_1,int8 param_2,int8 param_3,int8 param_4,
int8 param_5,int4 param_6,int8 param_7,int8 param_8)
{
int iVar1;
int4 local_4;
iVar1 = JS_ValueToAtom(param_1,param_4,param_5);
JS_FreeValue(param_1,param_4,param_5);
if (iVar1 == 0) {
JS_FreeV... | |
11,046 | bool httplib::detail::parse_header<httplib::detail::read_headers(httplib::Stream&, std::unordered_multimap<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, httplib::detail::case_ignore::hash, httplib::detail::... | hkr04[P]cpp-mcp/common/httplib.h | inline bool parse_header(const char *beg, const char *end, T fn) {
// Skip trailing spaces and tabs.
while (beg < end && is_space_or_tab(end[-1])) {
end--;
}
auto p = beg;
while (p < end && *p != ':') {
p++;
}
if (p == end) { return false; }
auto key_end = p;
if (*p++ != ':') { return fals... | O0 | c | bool httplib::detail::parse_header<httplib::detail::read_headers(httplib::Stream&, std::unordered_multimap<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, httplib::detail::case_ignore::hash, httplib::detail::... | _ZN7httplib6detail12parse_headerIZNS0_23MultipartFormDataParser5parseEPKcmRKSt8functionIFbS4_mEERKS5_IFbRKNS_17MultipartFormDataEEEEUlRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESO_E_EEbS4_S4_T_:
sub rsp, 168h
mov qword ptr [rsp+168h+var_10], rdi
mov qword ptr [rsp+168h+var_18], rsi
loc_379D7:
mov... | char httplib::detail::parse_header<httplib::detail::MultipartFormDataParser::parse(char const*,unsigned long,std::function<bool ()(char const*,unsigned long)> const&,std::function const&<bool ()(httplib::MultipartFormData const&)>)::{lambda(std::string const&,std::string const&)#1}>(
long long a1,
long... | parse_header<httplib::detail::MultipartFormDataParser::parse(char_const*,unsigned_long,std::function<bool(char_const*,unsigned_long)>const&,std::function<bool(httplib::MultipartFormData_const&)>const&)::{lambda(std::__cxx11::string_const&,std::__cxx11::string_const&)#1}>:
SUB RSP,0x168
MOV qword ptr [RSP + 0x158],RDI
M... |
/* bool httplib::detail::parse_header<httplib::detail::MultipartFormDataParser::parse(char const*,
unsigned long, std::function<bool (char const*, unsigned long)> const&, std::function<bool
(httplib::MultipartFormData const&)> const&)::{lambda(std::__cxx11::string const&,
std::__cxx11::string const&)#1}>(char... | |
11,047 | bool httplib::detail::parse_header<httplib::detail::read_headers(httplib::Stream&, std::unordered_multimap<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, httplib::detail::case_ignore::hash, httplib::detail::... | hkr04[P]cpp-mcp/common/httplib.h | inline bool parse_header(const char *beg, const char *end, T fn) {
// Skip trailing spaces and tabs.
while (beg < end && is_space_or_tab(end[-1])) {
end--;
}
auto p = beg;
while (p < end && *p != ':') {
p++;
}
if (p == end) { return false; }
auto key_end = p;
if (*p++ != ':') { return fals... | O3 | c | bool httplib::detail::parse_header<httplib::detail::read_headers(httplib::Stream&, std::unordered_multimap<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, httplib::detail::case_ignore::hash, httplib::detail::... | _ZN7httplib6detail12parse_headerIZNS0_12read_headersERNS_6StreamERSt18unordered_multimapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESA_NS0_11case_ignore4hashENSB_8equal_toESaISt4pairIKSA_SA_EEEEUlRSF_SK_E_EEbPKcSN_T_:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 88h
mov ... | long long httplib::detail::parse_header<httplib::detail::read_headers(httplib::Stream &,std::unordered_multimap<std::string,std::string,httplib::detail::case_ignore::hash,httplib::detail::case_ignore::equal_to,std::allocator<std::pair<std::string const,std::string>>> &)::{lambda(std::string const&,std::string const&)#... | parse_header<httplib::detail::read_headers(httplib::Stream&,std::unordered_multimap<std::__cxx11::string,std::__cxx11::string,httplib::detail::case_ignore::hash,httplib::detail::case_ignore::equal_to,std::allocator<std::pair<std::__cxx11::string_const,std::__cxx11::string>>>&)::{lambda(std::__cxx11::string_const&,std::... |
/* bool httplib::detail::parse_header<httplib::detail::read_headers(httplib::Stream&,
std::unordered_multimap<std::__cxx11::string, std::__cxx11::string,
httplib::detail::case_ignore::hash, httplib::detail::case_ignore::equal_to,
std::allocator<std::pair<std::__cxx11::string const, std::__cxx11::string > >
... | |
11,048 | ma_real_read | eloqsql/libmariadb/libmariadb/ma_net.c | static ulong ma_real_read(NET *net, size_t *complen)
{
uchar *pos;
ssize_t length;
uint i;
ulong len=packet_error;
size_t remain= (net->compress ? NET_HEADER_SIZE+COMP_HEADER_SIZE :
NET_HEADER_SIZE);
*complen = 0;
net->reading_or_writing=1;
pos = net->buff + net->where_b; /* net->packet -4 */
... | O0 | c | ma_real_read:
pushq %rbp
movq %rsp, %rbp
subq $0x50, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movl $0xffffffff, %eax # imm = 0xFFFFFFFF
movq %rax, -0x30(%rbp)
movq -0x8(%rbp), %rax
movsbl 0x84(%rax), %edx
movl $0x4, %eax
movl $0x7, %ecx
cmpl $0x0, %edx
cmovnel %ecx, %eax
cltq
movq %rax, -0x38(%rbp)
movq ... | ma_real_read:
push rbp
mov rbp, rsp
sub rsp, 50h
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov eax, 0FFFFFFFFh
mov [rbp+var_30], rax
mov rax, [rbp+var_8]
movsx edx, byte ptr [rax+84h]
mov eax, 4
mov ecx, 7
cmp edx, 0
cmovnz eax, ecx
cdqe
mov [rbp+var_38], rax
mov r... | unsigned long long ma_real_read(long long a1, unsigned long long *a2)
{
int v2; // eax
int v3; // ecx
long long v4; // rdx
unsigned long long v6; // [rsp+8h] [rbp-48h]
unsigned long long v7; // [rsp+10h] [rbp-40h]
unsigned long long v8; // [rsp+18h] [rbp-38h]
unsigned long long v9; // [rsp+20h] [rbp-30h]... | ma_real_read:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x50
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV EAX,0xffffffff
MOV qword ptr [RBP + -0x30],RAX
MOV RAX,qword ptr [RBP + -0x8]
MOVSX EDX,byte ptr [RAX + 0x84]
MOV EAX,0x4
MOV ECX,0x7
CMP EDX,0x0
CMOVNZ EAX,ECX
CDQE
MOV qword ptr [RBP + -0x38],RAX
MOV RAX... |
ulong ma_real_read(int8 *param_1,ulong *param_2)
{
char cVar1;
int iVar2;
long lVar3;
ulong local_50;
ulong local_40;
ulong local_38;
uint local_2c;
long local_20;
local_38 = 0xffffffff;
iVar2 = 4;
if (*(char *)((long)param_1 + 0x84) != '\0') {
iVar2 = 7;
}
local_40 = (ulong)iVar2;
... | |
11,049 | minja::Parser::parseVarNames[abi:cxx11]() | monkey531[P]llama/common/minja.hpp | std::vector<std::string> parseVarNames() {
static std::regex varnames_regex(R"(((?:\w+)(?:[\r\n\s]*,[\r\n\s]*(?:\w+))*)[\r\n\s]*)");
std::vector<std::string> group;
if ((group = consumeTokenGroups(varnames_regex)).empty()) throw std::runtime_error("Expected variable names");
std::vector<std::st... | O3 | cpp | minja::Parser::parseVarNames[abi:cxx11]():
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x1e8, %rsp # imm = 0x1E8
movq %rsi, %r14
movq %rdi, %rbx
leaq 0xaea72(%rip), %rax # 0xe1fd0
movb (%rax), %al
testb %al, %al
je 0x336cd
xorps %xmm0, %xmm0
movaps %xmm0, (%rsp)
movq $0x0, 0x1... | _ZN5minja6Parser13parseVarNamesB5cxx11Ev:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 1E8h
mov r14, rsi
mov rbx, rdi
lea rax, _ZGVZN5minja6Parser13parseVarNamesB5cxx11EvE14varnames_regexB5cxx11; `guard variable for'minja::Parser::parseVarNames(void)::varnames_regex
m... | long long minja::Parser::parseVarNames[abi:cxx11](long long a1, long long a2)
{
_QWORD *v2; // rax
std::runtime_error *exception; // rbx
int v5[4]; // [rsp+0h] [rbp-218h] BYREF
int v6[2]; // [rsp+10h] [rbp-208h]
__int128 v7; // [rsp+20h] [rbp-1F8h] BYREF
_QWORD v8[2]; // [rsp+30h] [rbp-1E8h] BYREF
void *... | parseVarNames[abi:cxx11]:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x1e8
MOV R14,RSI
MOV RBX,RDI
LEA RAX,[0x1e1fd0]
MOV AL,byte ptr [RAX]
TEST AL,AL
JZ 0x001336cd
LAB_00133568:
XORPS XMM0,XMM0
MOVAPS xmmword ptr [RSP],XMM0
MOV qword ptr [RSP + 0x10],0x0
LAB_00133578:
LEA RDX,[0x1e1fb0]
LEA RDI,[RSP... |
/* minja::Parser::parseVarNames[abi:cxx11]() */
void minja::Parser::parseVarNames_abi_cxx11_(void)
{
ulong *puVar1;
ulong *puVar2;
int iVar3;
istream *piVar4;
runtime_error *this;
vector<std::__cxx11::string,std::allocator<std::__cxx11::string>> *in_RDI;
ulong *local_218;
ulong *puStack_210;
ulong ... | |
11,050 | flush_cached_blocks | eloqsql/storage/maria/ma_pagecache.c | static int flush_cached_blocks(PAGECACHE *pagecache,
PAGECACHE_FILE *file,
PAGECACHE_BLOCK_LINK **cache,
PAGECACHE_BLOCK_LINK **end,
enum flush_type type,
int *first... | O3 | c | flush_cached_blocks:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x28, %rsp
movq %r9, %r14
movl %r8d, -0x2c(%rbp)
movq %rdx, %r12
movq %rsi, -0x38(%rbp)
movq %rdi, %r13
movq %rcx, -0x48(%rbp)
movq %rcx, %rbx
subq %rdx, %rbx
shrq $0x3, %rbx
movl $0x0, (%r9)
leaq 0xc8(%rdi), %r... | flush_cached_blocks:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 28h
mov r14, r9
mov [rbp+var_2C], r8d
mov r12, rdx
mov [rbp+var_38], rsi
mov r13, rdi
mov [rbp+var_48], rcx
mov rbx, rcx
sub rbx, rdx
shr rbx, 3
mov dword pt... | long long flush_cached_blocks(_QWORD *a1, long long a2, long long *a3, long long *a4, unsigned int a5, int *a6)
{
int *v6; // r14
long long *v7; // r12
unsigned long long v8; // rbx
long long v9; // r15
unsigned int v10; // eax
unsigned int v11; // r15d
long long v12; // rbx
char v13; // r14
long lon... | flush_cached_blocks:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x28
MOV R14,R9
MOV dword ptr [RBP + -0x2c],R8D
MOV R12,RDX
MOV qword ptr [RBP + -0x38],RSI
MOV R13,RDI
MOV qword ptr [RBP + -0x48],RCX
MOV RBX,RCX
SUB RBX,RDX
SHR RBX,0x3
MOV dword ptr [R9],0x0
LEA R15,[RDI + 0xc8]
MOV RDI,q... |
uint flush_cached_blocks(long param_1,int8 param_2,long *param_3,long *param_4,uint param_5,
int *param_6)
{
pthread_mutex_t *__mutex;
long lVar1;
char cVar2;
int iVar3;
int2 *puVar4;
int *piVar5;
uint uVar6;
*param_6 = 0;
__mutex = (pthread_mutex_t *)(param_1 + 200);
if... | |
11,051 | ma_bitmap_reset_full_page_bits | eloqsql/storage/maria/ma_bitmap.c | my_bool _ma_bitmap_reset_full_page_bits(MARIA_HA *info,
MARIA_FILE_BITMAP *bitmap,
pgcache_page_no_t page,
uint page_count)
{
ulonglong bitmap_page;
uint offset, bit_start, bit_count, tmp, byte_of... | O3 | c | ma_bitmap_reset_full_page_bits:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x18, %rsp
movl %ecx, %r13d
movq %rdx, %r12
movq %rsi, %rbx
movq %rdi, %r8
xorl %r14d, %r14d
movq %rdx, %rax
xorl %edx, %edx
divq 0x138(%rsi)
movq %r12, %r15
subq %rdx, %r15
movq %r15, %rax
cmpq 0x10(... | _ma_bitmap_reset_full_page_bits:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 18h
mov r13d, ecx
mov r12, rdx
mov rbx, rsi
mov r8, rdi
xor r14d, r14d
mov rax, rdx
xor edx, edx
div qword ptr [rsi+138h]
mov r15, r12
sub r15, r... | char ma_bitmap_reset_full_page_bits(long long *a1, long long a2, unsigned long long a3, int a4)
{
int v5; // r12d
long long *v6; // r8
char v7; // r14
unsigned long long v8; // r15
long long v9; // rax
char v10; // cl
char result; // al
unsigned int v12; // r12d
int v13; // edx
long long v14; // ra... | _ma_bitmap_reset_full_page_bits:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x18
MOV R13D,ECX
MOV R12,RDX
MOV RBX,RSI
MOV R8,RDI
XOR R14D,R14D
MOV RAX,RDX
XOR EDX,EDX
DIV qword ptr [RSI + 0x138]
MOV R15,R12
SUB R15,RDX
MOV RAX,R15
CMP R15,qword ptr [RSI + 0x10]
JZ 0x001562ab
MOV RDI,R8
MO... |
int8 _ma_bitmap_reset_full_page_bits(long *param_1,long param_2,ulong param_3,int param_4)
{
long lVar1;
ulong __n;
uint uVar2;
char cVar3;
uint uVar4;
uint uVar5;
byte *pbVar6;
byte bVar7;
ulong uVar8;
uVar8 = param_3 - param_3 % *(ulong *)(param_2 + 0x138);
uVar5 = (uint)uVar8;
if (uVar8 ... | |
11,052 | my_convert | eloqsql/strings/ctype.c | uint32
my_convert(char *to, uint32 to_length, CHARSET_INFO *to_cs,
const char *from, uint32 from_length,
CHARSET_INFO *from_cs, uint *errors)
{
uint32 length, length2;
/*
If any of the character sets is not ASCII compatible,
immediately switch to slow mb_wc->wc_mb method.
*/
if ((t... | O3 | c | my_convert:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %rbx
pushq %rax
movq %r9, %rax
movl %r8d, %r9d
movq %rcx, %r8
movq 0x10(%rbp), %r10
movl 0xc(%rax), %ecx
orl 0xc(%rdx), %ecx
btl $0xd, %ecx
jb 0xd1dd4
cmpl %r9d, %esi
movl %r9d, %ebx
cmovbl %esi, %ebx
movl %ebx, %ecx
cmpl $0x4, %ebx
jb 0xd1dad
movl (%r8... | my_convert:
push rbp
mov rbp, rsp
push r15
push r14
push rbx
push rax
mov rax, r9
mov r9d, r8d
mov r8, rcx
mov r10, [rbp+arg_0]
mov ecx, [rax+0Ch]
or ecx, [rdx+0Ch]
bt ecx, 0Dh
jb short loc_D1DD4
cmp esi, r9d
mov ebx, r9d
cmovb ebx, esi
mov ecx, ebx
cm... | long long my_convert(
_DWORD *a1,
unsigned int a2,
long long a3,
long long a4,
unsigned int a5,
long long a6,
_DWORD *a7)
{
_DWORD *v9; // r8
unsigned int v10; // ebx
unsigned int v11; // ecx
unsigned int v12; // r14d
long long v13; // r15
char v14; /... | my_convert:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH RBX
PUSH RAX
MOV RAX,R9
MOV R9D,R8D
MOV R8,RCX
MOV R10,qword ptr [RBP + 0x10]
MOV ECX,dword ptr [RAX + 0xc]
OR ECX,dword ptr [RDX + 0xc]
BT ECX,0xd
JC 0x001d1dd4
CMP ESI,R9D
MOV EBX,R9D
CMOVC EBX,ESI
MOV ECX,EBX
CMP EBX,0x4
JC 0x001d1dad
LAB_001d1d8e:
MOV R11D,dwo... |
ulong my_convert(uint *param_1,uint param_2,long param_3,uint *param_4,uint param_5,long param_6,
int4 *param_7)
{
int iVar1;
ulong uVar2;
uint uVar3;
uint uVar5;
int iVar6;
long lVar7;
ulong uVar4;
uVar2 = (ulong)param_5;
if (((*(uint *)(param_6 + 0xc) | *(uint *)(param_3 + 0xc))... | |
11,053 | ftxui::ScreenInteractive::ResetCursorPosition() | Andrewchistyakov[P]flashcards_lyc/build_O1/_deps/ftxui-src/src/ftxui/component/screen_interactive.cpp | void ScreenInteractive::ResetCursorPosition() {
std::cout << reset_cursor_position;
reset_cursor_position = "";
} | O1 | cpp | ftxui::ScreenInteractive::ResetCursorPosition():
pushq %r14
pushq %rbx
pushq %rax
movq %rdi, %rbx
leaq 0x98(%rdi), %r14
movq 0x98(%rdi), %rsi
movq 0xa0(%rdi), %rdx
movq 0x2bf57(%rip), %rdi # 0x59fb8
callq 0xb490
movq 0xa0(%rbx), %rdx
leaq 0xfb6d(%rip), %rcx # 0x3dbe1
movq %r14, %rdi
xorl %esi, %esi
xorl %r8d, ... | _ZN5ftxui17ScreenInteractive19ResetCursorPositionEv:
push r14
push rbx
push rax
mov rbx, rdi
lea r14, [rdi+98h]
mov rsi, [rdi+98h]
mov rdx, [rdi+0A0h]
mov rdi, cs:_ZSt4cout_ptr
call __ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_l; std::__ostream_insert<char... | long long ftxui::ScreenInteractive::ResetCursorPosition(ftxui::ScreenInteractive *this)
{
std::__ostream_insert<char,std::char_traits<char>>(&std::cout, *((_QWORD *)this + 19), *((_QWORD *)this + 20));
return std::string::_M_replace((char *)this + 152, 0LL, *((_QWORD *)this + 20), "", 0LL);
}
| ResetCursorPosition:
PUSH R14
PUSH RBX
PUSH RAX
MOV RBX,RDI
LEA R14,[RDI + 0x98]
MOV RSI,qword ptr [RDI + 0x98]
MOV RDX,qword ptr [RDI + 0xa0]
MOV RDI,qword ptr [0x00159fb8]
CALL 0x0010b490
MOV RDX,qword ptr [RBX + 0xa0]
LEA RCX,[0x13dbe1]
MOV RDI,R14
XOR ESI,ESI
XOR R8D,R8D
ADD RSP,0x8
POP RBX
POP R14
JMP 0x0010b680
|
/* ftxui::ScreenInteractive::ResetCursorPosition() */
void __thiscall ftxui::ScreenInteractive::ResetCursorPosition(ScreenInteractive *this)
{
std::__ostream_insert<char,std::char_traits<char>>
((ostream *)PTR_cout_00159fb8,*(char **)(this + 0x98),*(long *)(this + 0xa0));
std::__cxx11::string::_M_rep... | |
11,054 | gguf_get_val_str | ngxson[P]ggml-easy/ggml/src/gguf.cpp | const char * gguf_get_val_str(const struct gguf_context * ctx, int64_t key_id) {
GGML_ASSERT(key_id >= 0 && key_id < gguf_get_n_kv(ctx));
GGML_ASSERT(ctx->kv[key_id].get_ne() == 1);
return ctx->kv[key_id].get_val<std::string>().c_str();
} | O3 | cpp | gguf_get_val_str:
pushq %r14
pushq %rbx
pushq %rax
testq %rsi, %rsi
js 0x3dba2
movq %rdi, %rbx
movq 0x8(%rdi), %rdi
movq 0x10(%rbx), %rax
subq %rdi, %rax
sarq $0x3, %rax
movabsq $0x2e8ba2e8ba2e8ba3, %rcx # imm = 0x2E8BA2E8BA2E8BA3
imulq %rax, %rcx
cmpq %rsi, %rcx
jle 0x3dba2
imulq $0x58, %rsi, %r14
addq %r14, %rdi
call... | gguf_get_val_str:
push r14
push rbx
push rax
test rsi, rsi
js short loc_3DBA2
mov rbx, rdi
mov rdi, [rdi+8]
mov rax, [rbx+10h]
sub rax, rdi
sar rax, 3
mov rcx, 2E8BA2E8BA2E8BA3h
imul rcx, rax
cmp rcx, rsi
jle short loc_3DBA2
imul r14, rsi, 58h ; 'X'
add rdi, r1... | long long gguf_get_val_str(long long a1, long long a2, long long a3, long long a4, int a5, int a6)
{
long long v7; // rdi
const char *v9; // rcx
int v10; // esi
if ( a2 < 0 || (v7 = *(_QWORD *)(a1 + 8), 0x2E8BA2E8BA2E8BA3LL * ((*(_QWORD *)(a1 + 16) - v7) >> 3) <= a2) )
{
v9 = "key_id >= 0 && key_id < gg... | gguf_get_val_str:
PUSH R14
PUSH RBX
PUSH RAX
TEST RSI,RSI
JS 0x0013dba2
MOV RBX,RDI
MOV RDI,qword ptr [RDI + 0x8]
MOV RAX,qword ptr [RBX + 0x10]
SUB RAX,RDI
SAR RAX,0x3
MOV RCX,0x2e8ba2e8ba2e8ba3
IMUL RCX,RAX
CMP RCX,RSI
JLE 0x0013dba2
IMUL R14,RSI,0x58
ADD RDI,R14
CALL 0x00116620
CMP RAX,0x1
JNZ 0x0013dbbe
ADD R14,qwo... |
int8 gguf_get_val_str(long param_1,long param_2)
{
string *psVar1;
long lVar2;
char *pcVar3;
int8 uVar4;
if ((param_2 < 0) ||
(lVar2 = (*(long *)(param_1 + 0x10) - *(long *)(param_1 + 8) >> 3) * 0x2e8ba2e8ba2e8ba3,
lVar2 - param_2 == 0 || lVar2 < param_2)) {
pcVar3 = "key_id >= 0 && key_id ... | |
11,055 | bfdec_set_ui | bluesky950520[P]quickjs/libbf.c | int bfdec_set_ui(bfdec_t *r, uint64_t v)
{
#if LIMB_BITS == 32
if (v >= BF_DEC_BASE * BF_DEC_BASE) {
if (bfdec_resize(r, 3))
goto fail;
r->tab[0] = v % BF_DEC_BASE;
v /= BF_DEC_BASE;
r->tab[1] = v % BF_DEC_BASE;
r->tab[2] = v / BF_DEC_BASE;
r->expn = 3 * L... | O1 | c | bfdec_set_ui:
pushq %r14
pushq %rbx
pushq %rax
movq %rsi, %r14
movq %rdi, %rbx
movabsq $-0x7538dcfb76180000, %rcx # imm = 0x8AC7230489E80000
movq 0x18(%rdi), %rax
cmpq %rcx, %rsi
jb 0x8e118
cmpq $0x2, %rax
je 0x8e0f5
movq (%rbx), %rax
movq 0x20(%rbx), %rsi
movq (%rax), %rdi
movl $0x10, %edx
callq *0x8(%rax)
testq %rax,... | bfdec_set_ui:
push r14
push rbx
push rax
mov r14, rsi
mov rbx, rdi
mov rcx, 8AC7230489E80000h
mov rax, [rdi+18h]
cmp rsi, rcx
jb short loc_8E118
cmp rax, 2
jz short loc_8E0F5
mov rax, [rbx]
mov rsi, [rbx+20h]
mov rdi, [rax]
mov edx, 10h
call qword ptr [rax+8... | long long bfdec_set_ui(_QWORD **a1, unsigned long long a2)
{
_QWORD *v2; // rax
long long v3; // rax
_QWORD *v4; // rax
long long v5; // rax
long long v6; // rax
v2 = a1[3];
if ( a2 < 0x8AC7230489E80000LL )
{
if ( v2 != (_QWORD *)((char *)&dword_0 + 1) )
{
v6 = ((long long ( *)(_QWORD, _... | bfdec_set_ui:
PUSH R14
PUSH RBX
PUSH RAX
MOV R14,RSI
MOV RBX,RDI
MOV RCX,-0x7538dcfb76180000
MOV RAX,qword ptr [RDI + 0x18]
CMP RSI,RCX
JC 0x0018e118
CMP RAX,0x2
JZ 0x0018e0f5
MOV RAX,qword ptr [RBX]
MOV RSI,qword ptr [RBX + 0x20]
MOV RDI,qword ptr [RAX]
MOV EDX,0x10
CALL qword ptr [RAX + 0x8]
TEST RAX,RAX
JZ 0x0018e17... |
int8 bfdec_set_ui(long *param_1,ulong param_2)
{
long *plVar1;
long lVar2;
int8 uVar3;
if (param_2 < 10000000000000000000) {
if (param_1[3] != 1) {
lVar2 = (*(code *)((int8 *)*param_1)[1])(*(int8 *)*param_1,param_1[4],8);
if (lVar2 == 0) goto LAB_0018e173;
param_1[4] = lVar2;
pa... | |
11,056 | bfdec_set_ui | bluesky950520[P]quickjs/libbf.c | int bfdec_set_ui(bfdec_t *r, uint64_t v)
{
#if LIMB_BITS == 32
if (v >= BF_DEC_BASE * BF_DEC_BASE) {
if (bfdec_resize(r, 3))
goto fail;
r->tab[0] = v % BF_DEC_BASE;
v /= BF_DEC_BASE;
r->tab[1] = v % BF_DEC_BASE;
r->tab[2] = v / BF_DEC_BASE;
r->expn = 3 * L... | O3 | c | bfdec_set_ui:
pushq %r14
pushq %rbx
pushq %rax
movq %rsi, %r14
movq %rdi, %rbx
movabsq $-0x7538dcfb76180000, %rcx # imm = 0x8AC7230489E80000
movq 0x18(%rdi), %rax
cmpq %rcx, %rsi
jb 0x90bc7
cmpq $0x2, %rax
jne 0x90bd3
movq 0x20(%rbx), %rax
jmp 0x90bf6
cmpq $0x1, %rax
jne 0x90c15
movq 0x20(%rbx), %rax
jmp 0x90c38
movq (... | bfdec_set_ui:
push r14
push rbx
push rax
mov r14, rsi
mov rbx, rdi
mov rcx, 8AC7230489E80000h
mov rax, [rdi+18h]
cmp rsi, rcx
jb short loc_90BC7
cmp rax, 2
jnz short loc_90BD3
mov rax, [rbx+20h]
jmp short loc_90BF6
loc_90BC7:
cmp rax, 1
jnz short loc_90C15
mov ... | long long bfdec_set_ui(_QWORD **a1, unsigned long long a2)
{
_QWORD *v2; // rax
_QWORD *v3; // rax
unsigned long long *v4; // rax
long long v5; // rax
v2 = a1[3];
if ( a2 < 0x8AC7230489E80000LL )
{
if ( v2 == (_QWORD *)((char *)&dword_0 + 1) )
{
v4 = a1[4];
}
else
{
v4 = ... | bfdec_set_ui:
PUSH R14
PUSH RBX
PUSH RAX
MOV R14,RSI
MOV RBX,RDI
MOV RCX,-0x7538dcfb76180000
MOV RAX,qword ptr [RDI + 0x18]
CMP RSI,RCX
JC 0x00190bc7
CMP RAX,0x2
JNZ 0x00190bd3
MOV RAX,qword ptr [RBX + 0x20]
JMP 0x00190bf6
LAB_00190bc7:
CMP RAX,0x1
JNZ 0x00190c15
MOV RAX,qword ptr [RBX + 0x20]
JMP 0x00190c38
LAB_00190b... |
int8 bfdec_set_ui(long *param_1,ulong param_2)
{
long *plVar1;
long lVar2;
ulong *puVar3;
int8 uVar4;
if (param_2 < 10000000000000000000) {
if (param_1[3] == 1) {
puVar3 = (ulong *)param_1[4];
}
else {
puVar3 = (ulong *)(*(code *)((int8 *)*param_1)[1])(*(int8 *)*param_1,param_1[4]... | |
11,057 | my_hash_reset | eloqsql/mysys/hash.c | void my_hash_reset(HASH *hash)
{
DBUG_ENTER("my_hash_reset");
DBUG_PRINT("enter",("hash:%p", hash));
my_hash_free_elements(hash);
reset_dynamic(&hash->array);
/* Set row pointers so that the hash can be reused at once */
hash->blength= 1;
DBUG_VOID_RETURN;
} | O3 | c | my_hash_reset:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %rbx
pushq %rax
movq %rdi, %rbx
movl 0x18(%rdi), %r14d
testq %r14, %r14
je 0x300f4
movq $0x0, 0x18(%rbx)
cmpq $0x0, 0x60(%rbx)
je 0x300f4
movq 0x28(%rbx), %r15
shlq $0x4, %r14
addq %r15, %r14
movq 0x8(%r15), %rdi
addq $0x10, %r15
callq *0x60(%rbx)
cm... | my_hash_reset:
push rbp
mov rbp, rsp
push r15
push r14
push rbx
push rax
mov rbx, rdi
mov r14d, [rdi+18h]
test r14, r14
jz short loc_300F4
mov qword ptr [rbx+18h], 0
cmp qword ptr [rbx+60h], 0
jz short loc_300F4
mov r15, [rbx+28h]
shl r14, 4
add r14, r15
loc_3... | long long my_hash_reset(long long a1)
{
long long v2; // r14
unsigned long long v3; // r15
unsigned long long v4; // r14
long long v5; // rdi
long long result; // rax
v2 = *(unsigned int *)(a1 + 24);
if ( *(_DWORD *)(a1 + 24) )
{
*(_QWORD *)(a1 + 24) = 0LL;
if ( *(_QWORD *)(a1 + 96) )
{
... | my_hash_reset:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH RBX
PUSH RAX
MOV RBX,RDI
MOV R14D,dword ptr [RDI + 0x18]
TEST R14,R14
JZ 0x001300f4
MOV qword ptr [RBX + 0x18],0x0
CMP qword ptr [RBX + 0x60],0x0
JZ 0x001300f4
MOV R15,qword ptr [RBX + 0x28]
SHL R14,0x4
ADD R14,R15
LAB_001300e4:
MOV RDI,qword ptr [R15 + 0x8]
AD... |
void my_hash_reset(long param_1)
{
int8 *puVar1;
uint uVar2;
ulong uVar3;
ulong uVar4;
uVar2 = *(uint *)(param_1 + 0x18);
if (((ulong)uVar2 != 0) && (*(int8 *)(param_1 + 0x18) = 0, *(long *)(param_1 + 0x60) != 0))
{
uVar4 = *(ulong *)(param_1 + 0x28);
uVar3 = (ulong)uVar2 * 0x10 + uVar4;
... | |
11,058 | inline_mysql_cond_destroy | eloqsql/include/mysql/psi/mysql_thread.h | static inline int inline_mysql_cond_destroy(
mysql_cond_t *that)
{
#ifdef HAVE_PSI_COND_INTERFACE
if (psi_likely(that->m_psi != NULL))
{
PSI_COND_CALL(destroy_cond)(that->m_psi);
that->m_psi= NULL;
}
#endif
return pthread_cond_destroy(&that->m_cond);
} | O0 | c | inline_mysql_cond_destroy:
pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
cmpq $0x0, 0x30(%rax)
setne %al
andb $0x1, %al
movzbl %al, %eax
cmpl $0x0, %eax
setne %al
andb $0x1, %al
movzbl %al, %eax
cltq
cmpq $0x0, %rax
je 0x5feb4
leaq 0x1b8829(%rip), %rax # 0x2186c0
movq (%rax)... | inline_mysql_cond_destroy:
push rbp
mov rbp, rsp
sub rsp, 10h
mov [rbp+var_8], rdi
mov rax, [rbp+var_8]
cmp qword ptr [rax+30h], 0
setnz al
and al, 1
movzx eax, al
cmp eax, 0
setnz al
and al, 1
movzx eax, al
cdqe
cmp rax, 0
jz short loc_5FEB4
lea rax, PSI_server
m... | long long inline_mysql_cond_destroy(long long a1)
{
if ( *(_QWORD *)(a1 + 48) )
{
((void ( *)(_QWORD))PSI_server[13])(*(_QWORD *)(a1 + 48));
*(_QWORD *)(a1 + 48) = 0LL;
}
return pthread_cond_destroy(a1);
}
| inline_mysql_cond_destroy:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV qword ptr [RBP + -0x8],RDI
MOV RAX,qword ptr [RBP + -0x8]
CMP qword ptr [RAX + 0x30],0x0
SETNZ AL
AND AL,0x1
MOVZX EAX,AL
CMP EAX,0x0
SETNZ AL
AND AL,0x1
MOVZX EAX,AL
CDQE
CMP RAX,0x0
JZ 0x0015feb4
LEA RAX,[0x3186c0]
MOV RAX,qword ptr [RAX]
MOV RAX,qword ... |
void inline_mysql_cond_destroy(pthread_cond_t *param_1)
{
if (param_1[1].__align != 0) {
(**(code **)(PSI_server + 0x68))(param_1[1].__align);
param_1[1].__align = 0;
}
pthread_cond_destroy(param_1);
return;
}
| |
11,059 | my_printv_error | eloqsql/mysys/my_error.c | void my_printv_error(uint error, const char *format, myf MyFlags, va_list ap)
{
char ebuff[ERRMSGSIZE];
DBUG_ENTER("my_printv_error");
DBUG_PRINT("my", ("nr: %d MyFlags: %lu errno: %d format: %s",
error, MyFlags, errno, format));
(void) my_vsnprintf(ebuff, sizeof(ebuff), format, ap);
(*error_handler... | O0 | c | my_printv_error:
pushq %rbp
movq %rsp, %rbp
subq $0x230, %rsp # imm = 0x230
movq %fs:0x28, %rax
movq %rax, -0x8(%rbp)
movl %edi, -0x214(%rbp)
movq %rsi, -0x220(%rbp)
movq %rdx, -0x228(%rbp)
movq %rcx, -0x230(%rbp)
jmp 0x691c5
leaq -0x210(%rbp), %rdi
movq -0x220(%rbp), %rdx
movq -0x230(%rbp), %rcx
movl $0x200... | my_printv_error:
push rbp
mov rbp, rsp
sub rsp, 230h
mov rax, fs:28h
mov [rbp+var_8], rax
mov [rbp+var_214], edi
mov [rbp+var_220], rsi
mov [rbp+var_228], rdx
mov [rbp+var_230], rcx
jmp short $+2
loc_691C5:
lea rdi, [rbp+var_210]
mov rdx, [rbp+var_220]
mov rcx, [rbp+va... | unsigned long long my_printv_error(unsigned int a1, long long a2, __int16 a3, long long a4)
{
_BYTE v6[520]; // [rsp+20h] [rbp-210h] BYREF
unsigned long long v7; // [rsp+228h] [rbp-8h]
v7 = __readfsqword(0x28u);
my_vsnprintf(v6, 512LL, a2, a4);
((void ( *)(long long, long long, __int16))error_handler_hook[0... | my_printv_error:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x230
MOV RAX,qword ptr FS:[0x28]
MOV qword ptr [RBP + -0x8],RAX
MOV dword ptr [RBP + -0x214],EDI
MOV qword ptr [RBP + -0x220],RSI
MOV qword ptr [RBP + -0x228],RDX
MOV qword ptr [RBP + -0x230],RCX
JMP 0x001691c5
LAB_001691c5:
LEA RDI,[RBP + -0x210]
MOV RDX,qword ptr [RBP + ... |
void my_printv_error(int4 param_1,int8 param_2,int8 param_3,int8 param_4)
{
long in_FS_OFFSET;
int1 local_218 [520];
long local_10;
local_10 = *(long *)(in_FS_OFFSET + 0x28);
my_vsnprintf(local_218,0x200,param_2,param_4);
(*(code *)error_handler_hook)(param_1,local_218,param_3);
if (*(long *)(in_FS_O... | |
11,060 | minja::VariableExpr::do_evaluate(std::shared_ptr<minja::Context> const&) const | monkey531[P]llama/common/minja.hpp | Value do_evaluate(const std::shared_ptr<Context> & context) const override {
if (!context->contains(name)) {
return Value();
}
return context->at(name);
} | O3 | cpp | minja::VariableExpr::do_evaluate(std::shared_ptr<minja::Context> const&) const:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x58, %rsp
movq %rdx, %r15
movq %rsi, %r14
movq %rdi, %rbx
movq (%rdx), %r12
addq $0x20, %r14
leaq 0x8(%rsp), %r13
movq %r13, %rdi
movq %r14, %rsi
callq 0x8cf0a
movq (%... | _ZNK5minja12VariableExpr11do_evaluateERKSt10shared_ptrINS_7ContextEE:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 58h
mov r15, rdx
mov r14, rsi
mov rbx, rdi
mov r12, [rdx]
add r14, 20h ; ' '
lea r13, [rsp+88h+var_80]
mov rdi, r13
mov rsi, r14
call... | minja::Value * minja::VariableExpr::do_evaluate(minja::Value *this, long long a2, long long *a3)
{
long long v5; // r12
char v6; // bp
long long v7; // rdi
signed __int32 v8; // eax
long long v9; // r15
const minja::Value *v10; // rax
long long v11; // rdi
signed __int32 v12; // eax
_BYTE v14[8]; // [... | do_evaluate:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x58
MOV R15,RDX
MOV R14,RSI
MOV RBX,RDI
MOV R12,qword ptr [RDX]
ADD R14,0x20
LEA R13,[RSP + 0x8]
MOV RDI,R13
MOV RSI,R14
CALL 0x0018cf0a
MOV RAX,qword ptr [R12]
LAB_0019b2dc:
MOV RDI,R12
MOV RSI,R13
CALL qword ptr [RAX + 0x20]
LAB_0019b2e5:
MOV... |
/* minja::VariableExpr::do_evaluate(std::shared_ptr<minja::Context> const&) const */
shared_ptr * minja::VariableExpr::do_evaluate(shared_ptr *param_1)
{
int *piVar1;
long *plVar2;
char cVar3;
int iVar4;
Value *pVVar5;
int8 *in_RDX;
long in_RSI;
bool bVar6;
Value local_80 [8];
long *local_78;
_... | |
11,061 | minja::Value::Value(std::shared_ptr<std::function<minja::Value (std::shared_ptr<minja::Context> const&, minja::ArgumentsValue&)>> const&) | monkey531[P]llama/common/./minja.hpp | Value(const std::shared_ptr<CallableType> & callable) : object_(std::make_shared<ObjectType>()), callable_(callable) {} | O2 | cpp | minja::Value::Value(std::shared_ptr<std::function<minja::Value (std::shared_ptr<minja::Context> const&, minja::ArgumentsValue&)>> const&):
pushq %r14
pushq %rbx
pushq %rax
movq %rsi, %r14
movq %rdi, %rbx
addq $0x20, %rdi
xorps %xmm0, %xmm0
movups %xmm0, 0x10(%rbx)
movups %xmm0, (%rbx)
callq 0x3b9a1
leaq 0x30(%rbx), %rd... | _ZN5minja5ValueC2ERKSt10shared_ptrISt8functionIFS0_RKS1_INS_7ContextEERNS_14ArgumentsValueEEEE:
push r14
push rbx
push rax
mov r14, rsi
mov rbx, rdi
add rdi, 20h ; ' '
xorps xmm0, xmm0
movups xmmword ptr [rbx+10h], xmm0
movups xmmword ptr [rbx], xmm0
call _ZSt11make_sharedIN8nlohmann16json_a... | long long minja::Value::Value(long long a1, _QWORD *a2)
{
long long result; // rax
*(_OWORD *)(a1 + 16) = 0LL;
*(_OWORD *)a1 = 0LL;
std::make_shared<nlohmann::json_abi_v3_11_3::ordered_map<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,std::vector,std::string,bool,long,unsigned... | Value:
PUSH R14
PUSH RBX
PUSH RAX
MOV R14,RSI
MOV RBX,RDI
ADD RDI,0x20
XORPS XMM0,XMM0
MOVUPS xmmword ptr [RBX + 0x10],XMM0
MOVUPS xmmword ptr [RBX],XMM0
LAB_0014071c:
CALL 0x0013b9a1
LAB_00140721:
LEA RDI,[RBX + 0x30]
MOV RSI,R14
CALL 0x0013d2e6
ADD RBX,0x40
MOV RDI,RBX
XOR ESI,ESI
ADD RSP,0x8
POP RBX
POP R14
JMP 0x00... |
/* minja::Value::Value(std::shared_ptr<std::function<minja::Value (std::shared_ptr<minja::Context>
const&, minja::ArgumentsValue&)> > const&) */
void __thiscall minja::Value::Value(Value *this,shared_ptr *param_1)
{
*(int8 *)(this + 0x10) = 0;
*(int8 *)(this + 0x18) = 0;
*(int8 *)this = 0;
*(int8 *)(this ... | |
11,062 | aria_read_data | eloqsql/storage/maria/ma_backup.c | int aria_read_data(File dfile, ARIA_TABLE_CAPABILITIES *cap, ulonglong block,
uchar *buffer, size_t *bytes_read)
{
MARIA_SHARE share;
int retry= 0;
DBUG_ENTER("aria_read_data");
share.keypage_header= cap->keypage_header;
share.block_size= cap->block_size;
if (!cap->online_backup_safe)
... | O3 | c | aria_read_data:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0xc48, %rsp # imm = 0xC48
movq %r8, %r15
movq %rcx, %r14
movq %rdx, %rbx
movl %edi, %r12d
movq %fs:0x28, %rax
movq %rax, -0x30(%rbp)
movl 0x14(%rsi), %eax
movl %eax, -0x524(%rbp)
movl 0x10(%rsi), %edx
movl... | aria_read_data:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 0C48h
mov r15, r8
mov r14, rcx
mov rbx, rdx
mov r12d, edi
mov rax, fs:28h
mov [rbp+var_30], rax
mov eax, [rsi+14h]
mov [rbp+var_524], eax
mov edx, [rsi+10h]
mov [... | long long aria_read_data(unsigned int a1, long long a2, unsigned long long a3, const char *a4, long long *a5)
{
long long v8; // rdx
long long v9; // rdx
unsigned long long v10; // rcx
unsigned int v11; // r15d
long long v12; // rax
long long v13; // rax
int v15; // [rsp+0h] [rbp-C70h]
char v16[1860]; ... | aria_read_data:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0xc48
MOV R15,R8
MOV R14,RCX
MOV RBX,RDX
MOV R12D,EDI
MOV RAX,qword ptr FS:[0x28]
MOV qword ptr [RBP + -0x30],RAX
MOV EAX,dword ptr [RSI + 0x14]
MOV dword ptr [RBP + -0x524],EAX
MOV EDX,dword ptr [RSI + 0x10]
MOV dword ptr [RBP + ... |
int aria_read_data(int4 param_1,long param_2,ulong param_3,int8 param_4,ulong *param_5)
{
uint uVar1;
uint uVar2;
char cVar3;
ulong uVar4;
int *piVar5;
int iVar6;
long in_FS_OFFSET;
int1 local_c70 [1860];
int4 local_52c;
uint local_4b4;
long local_38;
local_38 = *(long *)(in_FS_OFFSET + 0x2... | |
11,063 | inline_mysql_file_seek | eloqsql/include/mysql/psi/mysql_file.h | static inline my_off_t
inline_mysql_file_seek(
#ifdef HAVE_PSI_FILE_INTERFACE
const char *src_file, uint src_line,
#endif
File file, my_off_t pos, int whence, myf flags)
{
my_off_t result;
#ifdef HAVE_PSI_FILE_INTERFACE
struct PSI_file_locker *locker;
PSI_file_locker_state state;
locker= PSI_FILE_CALL(get_t... | O0 | c | inline_mysql_file_seek:
pushq %rbp
movq %rsp, %rbp
subq $0x90, %rsp
movq %rdi, -0x10(%rbp)
movl %esi, -0x14(%rbp)
movl %edx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movl %r8d, -0x24(%rbp)
movq %r9, -0x30(%rbp)
leaq 0x213380(%rip), %rax # 0x2c1158
movq (%rax), %rax
movq 0x158(%rax), %rax
movl -0x18(%rbp), %esi
leaq -0x88(... | inline_mysql_file_seek_3:
push rbp
mov rbp, rsp
sub rsp, 90h
mov [rbp+var_10], rdi
mov [rbp+var_14], esi
mov [rbp+var_18], edx
mov [rbp+var_20], rcx
mov [rbp+var_24], r8d
mov [rbp+var_30], r9
lea rax, PSI_server
mov rax, [rax]
mov rax, [rax+158h]
mov esi, [rbp+var_18]
... | long long inline_mysql_file_seek_3(
long long a1,
unsigned int a2,
unsigned int a3,
long long a4,
unsigned int a5,
long long a6)
{
_BYTE v7[72]; // [rsp+8h] [rbp-88h] BYREF
long long v8; // [rsp+50h] [rbp-40h]
long long v9; // [rsp+58h] [rbp-38h]
long long v10; /... | inline_mysql_file_seek:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x90
MOV qword ptr [RBP + -0x10],RDI
MOV dword ptr [RBP + -0x14],ESI
MOV dword ptr [RBP + -0x18],EDX
MOV qword ptr [RBP + -0x20],RCX
MOV dword ptr [RBP + -0x24],R8D
MOV qword ptr [RBP + -0x30],R9
LEA RAX,[0x3c1158]
MOV RAX,qword ptr [RAX]
MOV RAX,qword ptr [RAX + 0x1... |
int8
inline_mysql_file_seek
(int8 param_1,int4 param_2,int4 param_3,int8 param_4,
int4 param_5,int8 param_6)
{
int1 local_90 [72];
long local_48;
int8 local_40;
int8 local_38;
int4 local_2c;
int8 local_28;
int4 local_20;
int4 local_1c;
int8 local_18;
int8 local_10;
local_3... | |
11,064 | Json::Reader::pushError(Json::Value const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, Json::Value const&) | aimrt_mujoco_sim/_deps/jsoncpp-src/src/lib_json/json_reader.cpp | bool Reader::pushError(const Value& value, const String& message,
const Value& extra) {
ptrdiff_t const length = end_ - begin_;
if (value.getOffsetStart() > length || value.getOffsetLimit() > length ||
extra.getOffsetLimit() > length)
return false;
Token token;
token.type_ = tok... | O3 | cpp | Json::Reader::pushError(Json::Value const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, Json::Value const&):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x48, %rsp
movq %rcx, %r14
movq %rdx, %r15
movq %rsi, %r12
movq %rdi, %rbx
movq 0xc8(%rdi), %r13... | _ZN4Json6Reader9pushErrorERKNS_5ValueERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES3_:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 48h
mov r14, rcx
mov r15, rdx
mov r12, rsi
mov rbx, rdi
mov r13, [rdi+0C8h]
sub r13, [rdi+0C0h]
mov rdi, rsi; ... | char Json::Reader::pushError(long long a1, Json::Value *a2, long long a3, Json::Value *a4)
{
long long v6; // r13
long long v8; // rbp
long long v9; // r13
long long v10; // rbp
long long v11; // r15
long long v12; // rdx
long long v13; // rcx
long long v14; // r8
long long v15; // r9
int v16; // [... | pushError:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x48
MOV R14,RCX
MOV R15,RDX
MOV R12,RSI
MOV RBX,RDI
MOV R13,qword ptr [RDI + 0xc8]
SUB R13,qword ptr [RDI + 0xc0]
MOV RDI,RSI
CALL 0x00179ac6
CMP RAX,R13
JG 0x0016fafd
MOV RDI,R12
CALL 0x00179acc
CMP RAX,R13
JG 0x0016fafd
MOV RDI,R14
CALL 0x00179... |
/* Json::Reader::pushError(Json::Value const&, std::__cxx11::string const&, Json::Value const&) */
int8 __thiscall
Json::Reader::pushError(Reader *this,Value *param_1,string *param_2,Value *param_3)
{
long lVar1;
long lVar2;
long lVar3;
int4 local_70 [2];
long local_68;
long local_60;
int1 *local_58;
... | |
11,065 | evmone::StackSpace::Deleter::operator()(void*) | corpus-core[P]colibri-stateless/build_O0/_deps/evmone_external-src/lib/evmone/execution_state.hpp | void operator()(void* p) noexcept
{
#ifdef _MSC_VER
// For MSVC the _aligned_malloc() must be paired with _aligned_free().
_aligned_free(p);
#else
std::free(p);
#endif
} | O0 | cpp | evmone::StackSpace::Deleter::operator()(void*):
pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x10(%rbp), %rdi
callq 0x23290
addq $0x10, %rsp
popq %rbp
retq
nop
| _ZN6evmone10StackSpace7DeleterclEPv:
push rbp
mov rbp, rsp
sub rsp, 10h
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov rdi, [rbp+var_10]
call _free
add rsp, 10h
pop rbp
retn
| long long evmone::StackSpace::Deleter::operator()(long long a1, long long a2)
{
return free(a2);
}
| operator():
PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV RDI,qword ptr [RBP + -0x10]
CALL 0x00123290
ADD RSP,0x10
POP RBP
RET
|
/* evmone::StackSpace::Deleter::TEMPNAMEPLACEHOLDERVALUE(void*) */
void __thiscall evmone::StackSpace::Deleter::operator()(Deleter *this,void *param_1)
{
free(param_1);
return;
}
| |
11,066 | fmt::v8::appender fmt::v8::detail::format_uint<4u, char, fmt::v8::appender, unsigned int>(fmt::v8::appender, unsigned int, int, bool) | aimrt_mujoco_sim/_deps/spdlog_lib-src/include/spdlog/fmt/bundled/format.h | inline auto format_uint(It out, UInt value, int num_digits, bool upper = false)
-> It {
if (auto ptr = to_pointer<Char>(out, to_unsigned(num_digits))) {
format_uint<BASE_BITS>(ptr, value, num_digits, upper);
return out;
}
// Buffer should be large enough to hold all digits (digits / BASE_BITS + 1).
... | O0 | c | fmt::v8::appender fmt::v8::detail::format_uint<4u, char, fmt::v8::appender, unsigned int>(fmt::v8::appender, unsigned int, int, bool):
subq $0x118, %rsp # imm = 0x118
movb %r8b, %al
movq %rdi, 0x108(%rsp)
movq %rsi, 0xf0(%rsp)
movq %rdx, 0xf8(%rsp)
movq 0xf0(%rsp), %rdx
movq 0xf8(%rsp), %rsi
movq %rsi, 0xe8(... | _ZN3fmt2v86detail11format_uintILj1EcNS0_8appenderEoEET1_S4_T2_ib:
sub rsp, 118h
mov al, r8b
mov [rsp+118h+var_10], rdi
mov [rsp+118h+var_28], rsi
mov [rsp+118h+var_20], rdx
mov rdx, [rsp+118h+var_28]
mov rsi, [rsp+118h+var_20]
mov [rsp+118h+var_30], rsi
mov [rsp+118h+var_38], rdx
mov... | long long fmt::v8::detail::format_uint<1u,char,fmt::v8::appender,unsigned __int128>(
long long a1,
long long a2,
long long a3,
unsigned int a4,
char a5)
{
unsigned int v5; // eax
long long v6; // rcx
long long v7; // r8
long long v8; // r9
_BYTE v10[144]; // [rsp+20h] ... | format_uint<1u,char,fmt::v8::appender,unsigned__int128>:
SUB RSP,0x118
MOV AL,R8B
MOV qword ptr [RSP + 0x108],RDI
MOV qword ptr [RSP + 0xf0],RSI
MOV qword ptr [RSP + 0xf8],RDX
MOV RDX,qword ptr [RSP + 0xf0]
MOV RSI,qword ptr [RSP + 0xf8]
MOV qword ptr [RSP + 0xe8],RSI
MOV qword ptr [RSP + 0xe0],RDX
MOV dword ptr [RSP +... |
/* fmt::v8::appender fmt::v8::detail::format_uint<1u, char, fmt::v8::appender, unsigned
__int128>(fmt::v8::appender, unsigned __int128, int, bool) */
detail * __thiscall
fmt::v8::detail::format_uint<1u,char,fmt::v8::appender,unsigned__int128>
(detail *this,int8 param_2,int8 param_3,int param_4,byte param... | |
11,067 | ma_print_error | eloqsql/storage/maria/ma_info.c | void _ma_print_error(MARIA_HA *info, int error, my_bool write_to_log)
{
DBUG_ENTER("_ma_print_error");
DBUG_PRINT("error", ("error: %d log: %d", error, write_to_log));
if (!info->error_count++ || !maria_in_ha_maria || write_to_log)
{
MARIA_SHARE *share= info->s;
_ma_report_error(error,
... | O0 | c | ma_print_error:
pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movb %dl, %al
movq %rdi, -0x8(%rbp)
movl %esi, -0xc(%rbp)
movb %al, -0xd(%rbp)
jmp 0x389a6
movq -0x8(%rbp), %rcx
movl 0x628(%rcx), %eax
movl %eax, %edx
addl $0x1, %edx
movl %edx, 0x628(%rcx)
cmpl $0x0, %eax
je 0x389d5
leaq 0x4078b5(%rip), %rax # 0x44027c
cm... | _ma_print_error:
push rbp
mov rbp, rsp
sub rsp, 30h
mov al, dl
mov [rbp+var_8], rdi
mov [rbp+var_C], esi
mov [rbp+var_D], al
jmp short $+2
loc_389A6:
mov rcx, [rbp+var_8]
mov eax, [rcx+628h]
mov edx, eax
add edx, 1
mov [rcx+628h], edx
cmp eax, 0
jz short loc_3... | long long ma_print_error(_DWORD *a1, int a2, char a3, long long a4, long long a5, int a6)
{
int v6; // eax
long long result; // rax
int v8; // eax
long long *v9; // [rsp+8h] [rbp-28h]
long long v10; // [rsp+18h] [rbp-18h]
v6 = a1[394];
a1[394] = v6 + 1;
if ( !v6 || !maria_in_ha_maria || (result = (uns... | _ma_print_error:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x30
MOV AL,DL
MOV qword ptr [RBP + -0x8],RDI
MOV dword ptr [RBP + -0xc],ESI
MOV byte ptr [RBP + -0xd],AL
JMP 0x001389a6
LAB_001389a6:
MOV RCX,qword ptr [RBP + -0x8]
MOV EAX,dword ptr [RCX + 0x628]
MOV EDX,EAX
ADD EDX,0x1
MOV dword ptr [RCX + 0x628],EDX
CMP EAX,0x0
JZ 0x001... |
void _ma_print_error(long *param_1,int4 param_2,char param_3)
{
long lVar1;
int4 uVar2;
long local_30;
lVar1 = param_1[0xc5];
*(int *)(param_1 + 0xc5) = (int)lVar1 + 1;
if ((((int)lVar1 == 0) || (maria_in_ha_maria == '\0')) || (param_3 != '\0')) {
local_30 = *param_1;
if (*(long *)(local_30 + 0... | |
11,068 | my_sync_dir_by_file | eloqsql/mysys/my_sync.c | int my_sync_dir_by_file(const char *file_name __attribute__((unused)),
myf my_flags __attribute__((unused)))
{
#ifdef NEED_EXPLICIT_SYNC_DIR
char dir_name[FN_REFLEN];
size_t dir_name_length;
dirname_part(dir_name, file_name, &dir_name_length);
return my_sync_dir(dir_name, my_flags & ~MY_... | O0 | c | my_sync_dir_by_file:
pushq %rbp
movq %rsp, %rbp
subq $0x240, %rsp # imm = 0x240
movq %fs:0x28, %rax
movq %rax, -0x8(%rbp)
movq %rdi, -0x218(%rbp)
movq %rsi, -0x220(%rbp)
movq -0x218(%rbp), %rsi
leaq -0x210(%rbp), %rdi
movq %rdi, -0x238(%rbp)
leaq -0x228(%rbp), %rdx
callq 0x334e0
movq -0x238(%rbp), %rdi
movq ... | my_sync_dir_by_file:
push rbp
mov rbp, rsp
sub rsp, 240h
mov rax, fs:28h
mov [rbp+var_8], rax
mov [rbp+var_218], rdi
mov [rbp+var_220], rsi
mov rsi, [rbp+var_218]
lea rdi, [rbp+var_210]
mov [rbp+var_238], rdi
lea rdx, [rbp+var_228]
call dirname_part
mov rdi, [rbp+var_23... | long long my_sync_dir_by_file(_BYTE *a1, long long a2)
{
long long v3; // [rsp+18h] [rbp-228h] BYREF
long long v4; // [rsp+20h] [rbp-220h]
_BYTE *v5; // [rsp+28h] [rbp-218h]
_BYTE v6[520]; // [rsp+30h] [rbp-210h] BYREF
unsigned long long v7; // [rsp+238h] [rbp-8h]
v7 = __readfsqword(0x28u);
v5 = a1;
v... | my_sync_dir_by_file:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x240
MOV RAX,qword ptr FS:[0x28]
MOV qword ptr [RBP + -0x8],RAX
MOV qword ptr [RBP + -0x218],RDI
MOV qword ptr [RBP + -0x220],RSI
MOV RSI,qword ptr [RBP + -0x218]
LEA RDI,[RBP + -0x210]
MOV qword ptr [RBP + -0x238],RDI
LEA RDX,[RBP + -0x228]
CALL 0x001334e0
MOV RDI,qwo... |
int4 my_sync_dir_by_file(int8 param_1,int8 param_2)
{
int4 uVar1;
long in_FS_OFFSET;
int1 local_230 [8];
int8 local_228;
int8 local_220;
int1 local_218 [520];
long local_10;
local_10 = *(long *)(in_FS_OFFSET + 0x28);
local_228 = param_2;
local_220 = param_1;
dirname_part(local_218,param_1,loc... | |
11,069 | google::protobuf::internal::MapFieldBase::SyncRepeatedFieldWithMap() const | aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/map_field.cc | void MapFieldBase::SyncRepeatedFieldWithMap() const {
ConstAccess();
// acquire here matches with release below to ensure that we can only see a
// value of CLEAN after all previous changes have been synced.
switch (state_.load(std::memory_order_acquire)) {
case STATE_MODIFIED_MAP:
mutex_.Lock();
... | O3 | cpp | google::protobuf::internal::MapFieldBase::SyncRepeatedFieldWithMap() const:
pushq %r15
pushq %r14
pushq %rbx
movq %rdi, %rbx
movl 0x40(%rdi), %eax
cmpl $0x2, %eax
je 0x99c26
testl %eax, %eax
jne 0x99c7c
leaq 0x18(%rbx), %r14
movq %r14, %rdi
callq 0x2db90
testl %eax, %eax
jne 0x99cb2
movl 0x40(%rbx), %eax
testl %eax, %e... | _ZNK6google8protobuf8internal12MapFieldBase24SyncRepeatedFieldWithMapEv:
push r15
push r14
push rbx
mov rbx, rdi
mov eax, [rdi+40h]
cmp eax, 2
jz short loc_99C26
test eax, eax
jnz loc_99C7C
lea r14, [rbx+18h]
mov rdi, r14
call _pthread_mutex_lock
test eax, eax
jnz loc_... | long long google::protobuf::internal::MapFieldBase::SyncRepeatedFieldWithMap(
google::protobuf::internal::MapFieldBase *this)
{
long long result; // rax
char *v2; // r14
int v3; // eax
long long v4; // r15
long long AlignedWithCleanup; // rax
long long *v6; // rdx
result = *((unsigned int *)this... | SyncRepeatedFieldWithMap:
PUSH R15
PUSH R14
PUSH RBX
MOV RBX,RDI
MOV EAX,dword ptr [RDI + 0x40]
CMP EAX,0x2
JZ 0x00199c26
TEST EAX,EAX
JNZ 0x00199c7c
LEA R14,[RBX + 0x18]
MOV RDI,R14
CALL 0x0012db90
TEST EAX,EAX
JNZ 0x00199cb2
MOV EAX,dword ptr [RBX + 0x40]
TEST EAX,EAX
JNZ 0x00199ca5
MOV RAX,qword ptr [RBX]
MOV RDI,RB... |
/* google::protobuf::internal::MapFieldBase::SyncRepeatedFieldWithMap() const */
void __thiscall
google::protobuf::internal::MapFieldBase::SyncRepeatedFieldWithMap(MapFieldBase *this)
{
ulong uVar1;
int iVar2;
ulong *puVar3;
int1 auVar4 [16];
if (*(int *)(this + 0x40) == 2) {
iVar2 = pthread_mutex_l... | |
11,070 | minja::SequenceNode::do_render(std::__cxx11::basic_ostringstream<char, std::char_traits<char>, std::allocator<char>>&, std::shared_ptr<minja::Context> const&) const | monkey531[P]llama/common/minja.hpp | void do_render(std::ostringstream & out, const std::shared_ptr<Context> & context) const override {
for (const auto& child : children) child->render(out, context);
} | O2 | cpp | minja::SequenceNode::do_render(std::__cxx11::basic_ostringstream<char, std::char_traits<char>, std::allocator<char>>&, std::shared_ptr<minja::Context> const&) const:
pushq %r15
pushq %r14
pushq %r12
pushq %rbx
pushq %rax
movq %rdx, %rbx
movq %rsi, %r14
movq 0x20(%rdi), %r15
movq 0x28(%rdi), %r12
cmpq %r12, %r15
je 0x78... | _ZNK5minja12SequenceNode9do_renderERNSt7__cxx1119basic_ostringstreamIcSt11char_traitsIcESaIcEEERKSt10shared_ptrINS_7ContextEE:
push r15
push r14
push r12
push rbx
push rax
mov rbx, rdx
mov r14, rsi
mov r15, [rdi+20h]
mov r12, [rdi+28h]
loc_7820A:
cmp r15, r12
jz short loc_78223
m... | long long minja::SequenceNode::do_render(long long a1)
{
long long ( ****v1)(_QWORD); // r15
long long ( ****v2)(_QWORD); // r12
long long result; // rax
v1 = *(long long ( *****)(_QWORD))(a1 + 32);
v2 = *(long long ( *****)(_QWORD))(a1 + 40);
while ( v1 != v2 )
{
result = minja::TemplateNode::rende... | do_render:
PUSH R15
PUSH R14
PUSH R12
PUSH RBX
PUSH RAX
MOV RBX,RDX
MOV R14,RSI
MOV R15,qword ptr [RDI + 0x20]
MOV R12,qword ptr [RDI + 0x28]
LAB_0017820a:
CMP R15,R12
JZ 0x00178223
MOV RDI,qword ptr [R15]
MOV RSI,R14
MOV RDX,RBX
CALL 0x0017332e
ADD R15,0x10
JMP 0x0017820a
LAB_00178223:
ADD RSP,0x8
POP RBX
POP R12
POP ... |
/* minja::SequenceNode::do_render(std::__cxx11::ostringstream&, std::shared_ptr<minja::Context>
const&) const */
void minja::SequenceNode::do_render(ostringstream *param_1,shared_ptr *param_2)
{
int8 *puVar1;
int8 *puVar2;
puVar1 = *(int8 **)(param_1 + 0x28);
for (puVar2 = *(int8 **)(param_1 + 0x20); p... | |
11,071 | translog_stop_writing | eloqsql/storage/maria/ma_loghandler.c | void translog_stop_writing()
{
DBUG_ENTER("translog_stop_writing");
DBUG_PRINT("error", ("errno: %d my_errno: %d", errno, my_errno));
translog_status= (translog_status == TRANSLOG_SHUTDOWN ?
TRANSLOG_UNINITED :
TRANSLOG_READONLY);
log_descriptor.is_everything_flushed= 1... | O0 | c | translog_stop_writing:
pushq %rbp
movq %rsp, %rbp
jmp 0x4f7b6
jmp 0x4f7b8
movl 0x4289f2(%rip), %edx # 0x4781b0
movl $0x2, %eax
xorl %ecx, %ecx
cmpl $0x3, %edx
cmovel %ecx, %eax
movl %eax, 0x4289df(%rip) # 0x4781b0
movb $0x1, 0xc2aab8(%rip) # 0xc7a290
movl $0x0, 0x429bea(%rip) # 0x4793cc
jmp 0x4f7e4
jmp 0x4f... | translog_stop_writing:
push rbp
mov rbp, rsp
jmp short $+2
loc_4F7B6:
jmp short $+2
loc_4F7B8:
mov edx, cs:translog_status
mov eax, 2
xor ecx, ecx
cmp edx, 3
cmovz eax, ecx
mov cs:translog_status, eax
mov cs:byte_C7A290, 1
mov cs:dword_4793CC, 0
jmp short $+2
loc_4F7E4:
... | long long translog_stop_writing()
{
long long result; // rax
result = 2LL;
if ( translog_status == 3 )
result = 0LL;
translog_status = result;
byte_C7A290 = 1;
dword_4793CC = 0;
return result;
}
| translog_stop_writing:
PUSH RBP
MOV RBP,RSP
JMP 0x0014f7b6
LAB_0014f7b6:
JMP 0x0014f7b8
LAB_0014f7b8:
MOV EDX,dword ptr [0x005781b0]
MOV EAX,0x2
XOR ECX,ECX
CMP EDX,0x3
CMOVZ EAX,ECX
MOV dword ptr [0x005781b0],EAX
MOV byte ptr [0x00d7a290],0x1
MOV dword ptr [0x005793cc],0x0
JMP 0x0014f7e4
LAB_0014f7e4:
JMP 0x0014f7e6
L... |
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */
void translog_stop_writing(void)
{
int4 uVar1;
uVar1 = 2;
if (translog_status == 3) {
uVar1 = 0;
}
translog_status = uVar1;
DAT_00d7a290 = 1;
_DAT_005793cc = 0;
return;
}
| |
11,072 | mysql_close_start | eloqsql/libmariadb/libmariadb/mariadb_async.c | MK_ASYNC_CONT_BODY_VOID_RETURN(sock)
}
int STDCALL
mysql_close_start(MYSQL *sock)
{
int res;
/* It is legitimate to have NULL sock argument, which will do nothing. */
if (sock && sock->net.pvio)
{
res= mysql_close_slow_part_start(sock);
/* If we need to block, return now and do the rest in mysql_close_... | O3 | c | mysql_close_start:
pushq %rbp
movq %rsp, %rbp
pushq %rbx
pushq %rax
movq %rdi, %rbx
testq %rdi, %rdi
je 0x2caee
cmpq $0x0, (%rbx)
je 0x2caee
movq %rbx, %rdi
callq 0x2c912
testl %eax, %eax
jne 0x2caf8
movq %rbx, %rdi
callq 0x1ccb8
xorl %eax, %eax
addq $0x8, %rsp
popq %rbx
popq %rbp
retq
| mysql_close_start:
push rbp
mov rbp, rsp
push rbx
push rax
mov rbx, rdi
test rdi, rdi
jz short loc_2CAEE
cmp qword ptr [rbx], 0
jz short loc_2CAEE
mov rdi, rbx
call mysql_close_slow_part_start
test eax, eax
jnz short loc_2CAF8
loc_2CAEE:
mov rdi, rbx
call mysql_clo... | long long mysql_close_start(_QWORD *a1)
{
long long result; // rax
if ( !a1 || !*a1 || (result = mysql_close_slow_part_start((long long)a1), !(_DWORD)result) )
{
mysql_close((long long)a1);
return 0LL;
}
return result;
}
| mysql_close_start:
PUSH RBP
MOV RBP,RSP
PUSH RBX
PUSH RAX
MOV RBX,RDI
TEST RDI,RDI
JZ 0x0012caee
CMP qword ptr [RBX],0x0
JZ 0x0012caee
MOV RDI,RBX
CALL 0x0012c912
TEST EAX,EAX
JNZ 0x0012caf8
LAB_0012caee:
MOV RDI,RBX
CALL 0x0011ccb8
XOR EAX,EAX
LAB_0012caf8:
ADD RSP,0x8
POP RBX
POP RBP
RET
|
int8 mysql_close_start(long *param_1)
{
int8 uVar1;
if (((param_1 != (long *)0x0) && (*param_1 != 0)) &&
(uVar1 = mysql_close_slow_part_start(param_1), (int)uVar1 != 0)) {
return uVar1;
}
mysql_close(param_1);
return 0;
}
| |
11,073 | Balloc | eloqsql/strings/dtoa.c | static Bigint *Balloc(int k, Stack_alloc *alloc)
{
Bigint *rv;
DBUG_ASSERT(k <= Kmax);
if (k <= Kmax && alloc->freelist[k])
{
rv= alloc->freelist[k];
alloc->freelist[k]= rv->p.next;
}
else
{
int x, len;
x= 1 << k;
len= MY_ALIGN(sizeof(Bigint) + x * sizeof(ULong), SIZEOF_CHARP);
... | O0 | c | Balloc:
pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movl %edi, -0x4(%rbp)
movq %rsi, -0x10(%rbp)
jmp 0xdc431
cmpl $0xf, -0x4(%rbp)
jg 0xdc471
movq -0x10(%rbp), %rax
movslq -0x4(%rbp), %rcx
cmpq $0x0, 0x18(%rax,%rcx,8)
je 0xdc471
movq -0x10(%rbp), %rax
movslq -0x4(%rbp), %rcx
movq 0x18(%rax,%rcx,8), %rax
movq %rax, -0x1... | Balloc:
push rbp
mov rbp, rsp
sub rsp, 20h
mov [rbp+var_4], edi
mov [rbp+var_10], rsi
jmp short $+2
loc_DC431:
cmp [rbp+var_4], 0Fh
jg short loc_DC471
mov rax, [rbp+var_10]
movsxd rcx, [rbp+var_4]
cmp qword ptr [rax+rcx*8+18h], 0
jz short loc_DC471
mov rax, [rbp+var_10]... | long long Balloc(int a1, long long a2)
{
signed int v3; // [rsp+0h] [rbp-20h]
long long v4; // [rsp+8h] [rbp-18h]
if ( a1 <= 15 && *(_QWORD *)(a2 + 8LL * a1 + 24) )
{
v4 = *(_QWORD *)(a2 + 8LL * a1 + 24);
*(_QWORD *)(a2 + 8LL * a1 + 24) = *(_QWORD *)v4;
}
else
{
v3 = (4 * (1 << a1) + 31) & 0... | Balloc:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x20
MOV dword ptr [RBP + -0x4],EDI
MOV qword ptr [RBP + -0x10],RSI
JMP 0x001dc431
LAB_001dc431:
CMP dword ptr [RBP + -0x4],0xf
JG 0x001dc471
MOV RAX,qword ptr [RBP + -0x10]
MOVSXD RCX,dword ptr [RBP + -0x4]
CMP qword ptr [RAX + RCX*0x8 + 0x18],0x0
JZ 0x001dc471
MOV RAX,qword ptr [R... |
int8 * Balloc(int param_1,long param_2)
{
int iVar1;
uint uVar2;
int8 *local_20;
if ((param_1 < 0x10) && (*(long *)(param_2 + 0x18 + (long)param_1 * 8) != 0)) {
local_20 = *(int8 **)(param_2 + 0x18 + (long)param_1 * 8);
*(int8 *)(param_2 + 0x18 + (long)param_1 * 8) = *local_20;
}
else {
iVa... | |
11,074 | my_fill_ucs2 | eloqsql/strings/ctype-ucs2.c | static void
my_fill_ucs2(CHARSET_INFO *cs __attribute__((unused)),
char *s, size_t l, int fill)
{
DBUG_ASSERT(fill <= 0xFFFF);
#ifdef WAITING_FOR_GCC_VECTORIZATION_BUG_TO_BE_FIXED
/*
This code with int2store() is known to be faster on some processors,
but crashes on other processors due to a p... | O3 | c | my_fill_ucs2:
cmpq $0x2, %rdx
jb 0x48eba
pushq %rbp
movq %rsp, %rbp
movl %ecx, %eax
shrl $0x8, %eax
movb %al, (%rsi)
movb %cl, 0x1(%rsi)
addq $0x2, %rsi
addq $-0x2, %rdx
cmpq $0x1, %rdx
ja 0x48ea6
popq %rbp
retq
| my_fill_ucs2:
cmp rdx, 2
jb short locret_48EBA
push rbp
mov rbp, rsp
mov eax, ecx
shr eax, 8
loc_48EA6:
mov [rsi], al
mov [rsi+1], cl
add rsi, 2
add rdx, 0FFFFFFFFFFFFFFFEh
cmp rdx, 1
ja short loc_48EA6
pop rbp
locret_48EBA:
retn
| void my_fill_ucs2(long long a1, _BYTE *a2, unsigned long long a3, __int16 a4)
{
bool v4; // cf
if ( a3 >= 2 )
{
do
{
*a2 = HIBYTE(a4);
a2[1] = a4;
a2 += 2;
v4 = a3 == 2;
a3 -= 2LL;
}
while ( !v4 && a3 != 1 );
}
}
| my_fill_ucs2:
CMP RDX,0x2
JC 0x00148eba
PUSH RBP
MOV RBP,RSP
MOV EAX,ECX
SHR EAX,0x8
LAB_00148ea6:
MOV byte ptr [RSI],AL
MOV byte ptr [RSI + 0x1],CL
ADD RSI,0x2
ADD RDX,-0x2
CMP RDX,0x1
JA 0x00148ea6
POP RBP
LAB_00148eba:
RET
|
void my_fill_ucs2(int8 param_1,int1 *param_2,ulong param_3,int4 param_4)
{
if (1 < param_3) {
do {
*param_2 = (char)((uint)param_4 >> 8);
param_2[1] = (char)param_4;
param_2 = param_2 + 2;
param_3 = param_3 - 2;
} while (1 < param_3);
}
return;
}
| |
11,075 | my_hash_sort_simple_nopad | eloqsql/strings/ctype-simple.c | void my_hash_sort_simple_nopad(CHARSET_INFO *cs,
const uchar *key, size_t len,
ulong *nr1, ulong *nr2)
{
register const uchar *sort_order=cs->sort_order;
const uchar *end= key + len;
register ulong m1= *nr1, m2= *nr2;
for (; key < (uchar*) end ; key++)
{
MY_HASH_ADD(m1, m2, (uint) sort... | O3 | c | my_hash_sort_simple_nopad:
movq (%rcx), %rax
movq (%r8), %r9
testq %rdx, %rdx
jle 0x6e798
pushq %rbp
movq %rsp, %rbp
movq 0x58(%rdi), %rdi
addq %rsi, %rdx
movl %eax, %r10d
andl $0x3f, %r10d
addq %r9, %r10
movzbl (%rsi), %r11d
movzbl (%rdi,%r11), %r11d
imulq %r10, %r11
movq %rax, %r10
shlq $0x8, %r10
addq %r11, %r10
xor... | my_hash_sort_simple_nopad:
mov rax, [rcx]
mov r9, [r8]
test rdx, rdx
jle short loc_6E798
push rbp
mov rbp, rsp
mov rdi, [rdi+58h]
add rdx, rsi
loc_6E767:
mov r10d, eax
and r10d, 3Fh
add r10, r9
movzx r11d, byte ptr [rsi]
movzx r11d, byte ptr [rdi+r11]
imul r11, r10
mov ... | long long my_hash_sort_simple_nopad(long long a1, unsigned __int8 *a2, long long a3, long long *a4, long long *a5)
{
long long result; // rax
long long v6; // r9
long long v7; // rdi
unsigned __int8 *v8; // rdx
result = *a4;
v6 = *a5;
if ( a3 > 0 )
{
v7 = *(_QWORD *)(a1 + 88);
v8 = &a2[a3];
... | my_hash_sort_simple_nopad:
MOV RAX,qword ptr [RCX]
MOV R9,qword ptr [R8]
TEST RDX,RDX
JLE 0x0016e798
PUSH RBP
MOV RBP,RSP
MOV RDI,qword ptr [RDI + 0x58]
ADD RDX,RSI
LAB_0016e767:
MOV R10D,EAX
AND R10D,0x3f
ADD R10,R9
MOVZX R11D,byte ptr [RSI]
MOVZX R11D,byte ptr [RDI + R11*0x1]
IMUL R11,R10
MOV R10,RAX
SHL R10,0x8
ADD ... |
void my_hash_sort_simple_nopad(long param_1,byte *param_2,long param_3,ulong *param_4,long *param_5)
{
ulong uVar1;
byte *pbVar2;
long lVar3;
uVar1 = *param_4;
lVar3 = *param_5;
if (0 < param_3) {
pbVar2 = param_2 + param_3;
do {
uVar1 = uVar1 ^ uVar1 * 0x100 +
(ulon... | |
11,076 | CLI::Config::Config() | MikePodsytnik[P]TCRtrie/build_O0/_deps/cli11-src/include/CLI/ConfigFwd.hpp | class Config {
protected:
std::vector<ConfigItem> items{};
public:
/// Convert an app into a configuration
virtual std::string to_config(const App *, bool, bool, std::string) const = 0;
/// Convert a configuration into an app
virtual std::vector<ConfigItem> from_config(std::istream &) const = ... | O0 | cpp | CLI::Config::Config():
pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rdi
leaq 0x79b91(%rip), %rax # 0xa13b8
addq $0x10, %rax
movq %rax, (%rdi)
addq $0x8, %rdi
movq %rdi, -0x10(%rbp)
xorl %esi, %esi
movl $0x18, %edx
callq 0x9310
movq -0x10(%rbp), %rdi
callq 0x27860
addq $0x10, %... | _ZN3CLI6ConfigC2Ev:
push rbp
mov rbp, rsp
sub rsp, 10h
mov [rbp+var_8], rdi
mov rdi, [rbp+var_8]
lea rax, _ZTVN3CLI6ConfigE; `vtable for'CLI::Config
add rax, 10h
mov [rdi], rax
add rdi, 8
mov [rbp+var_10], rdi
xor esi, esi
mov edx, 18h
call _memset
mov rdi, [rbp+var... | long long CLI::Config::Config(CLI::Config *this)
{
*(_QWORD *)this = &`vtable for'CLI::Config + 2;
memset((char *)this + 8, 0LL, 24LL);
return std::vector<CLI::ConfigItem>::vector((char *)this + 8);
}
| Config:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV qword ptr [RBP + -0x8],RDI
MOV RDI,qword ptr [RBP + -0x8]
LEA RAX,[0x1a13b8]
ADD RAX,0x10
MOV qword ptr [RDI],RAX
ADD RDI,0x8
MOV qword ptr [RBP + -0x10],RDI
XOR ESI,ESI
MOV EDX,0x18
CALL 0x00109310
MOV RDI,qword ptr [RBP + -0x10]
CALL 0x00127860
ADD RSP,0x10
POP RBP
RET
|
/* CLI::Config::Config() */
void __thiscall CLI::Config::Config(Config *this)
{
*(int ***)this = &PTR___cxa_pure_virtual_001a13c8;
memset((vector<CLI::ConfigItem,std::allocator<CLI::ConfigItem>> *)(this + 8),0,0x18);
std::vector<CLI::ConfigItem,std::allocator<CLI::ConfigItem>>::vector
((vector<CLI:... | |
11,077 | walk_and_copy | eloqsql/storage/maria/ma_ft_parser.c | static int walk_and_copy(FT_WORD *word,uint32 count,FT_DOCSTAT *docstat)
{
word->weight=LWS_IN_USE;
docstat->sum+=word->weight;
memcpy((docstat->list)++, word, sizeof(FT_WORD));
return 0;
} | O3 | c | walk_and_copy:
pushq %rbp
movq %rsp, %rbp
pushq %r14
pushq %rbx
movq %rdx, %r14
movq %rdi, %rbx
testl %esi, %esi
je 0x5f361
movl %esi, %eax
cvtsi2sd %rax, %xmm0
callq 0x29130
addsd 0x81ba9(%rip), %xmm0 # 0xe0f08
jmp 0x5f365
xorpd %xmm0, %xmm0
movsd %xmm0, 0x10(%rbx)
addsd 0x10(%r14), %xmm0
movsd %xmm0, 0x10(%r14)
mo... | walk_and_copy:
push rbp
mov rbp, rsp
push r14
push rbx
mov r14, rdx
mov rbx, rdi
test esi, esi
jz short loc_5F361
mov eax, esi
cvtsi2sd xmm0, rax
call _log
addsd xmm0, cs:qword_E0F08
jmp short loc_5F365
loc_5F361:
xorpd xmm0, xmm0
loc_5F365:
movsd qword ptr [rbx+10h], xmm0
... | long long walk_and_copy(long long a1, int a2, double *a3)
{
double v4; // xmm0_8
double v5; // rax
if ( a2 )
v4 = log((double)a2) + 1.0;
else
v4 = 0.0;
*(double *)(a1 + 16) = v4;
a3[2] = v4 + a3[2];
v5 = *a3;
*(_QWORD *)a3 += 24LL;
*(_QWORD *)(*(_QWORD *)&v5 + 16LL) = *(_QWORD *)(a1 + 16);
... | walk_and_copy:
PUSH RBP
MOV RBP,RSP
PUSH R14
PUSH RBX
MOV R14,RDX
MOV RBX,RDI
TEST ESI,ESI
JZ 0x0015f361
MOV EAX,ESI
CVTSI2SD XMM0,RAX
CALL 0x00129130
ADDSD XMM0,qword ptr [0x001e0f08]
JMP 0x0015f365
LAB_0015f361:
XORPD XMM0,XMM0
LAB_0015f365:
MOVSD qword ptr [RBX + 0x10],XMM0
ADDSD XMM0,qword ptr [R14 + 0x10]
MOVSD qw... |
int8 walk_and_copy(int8 *param_1,uint param_2,long *param_3)
{
int8 *puVar1;
double dVar2;
int8 uVar3;
if (param_2 == 0) {
dVar2 = 0.0;
}
else {
dVar2 = log((double)param_2);
dVar2 = dVar2 + DAT_001e0f08;
}
param_1[2] = dVar2;
param_3[2] = (long)(dVar2 + (double)param_3[2]);
puVar1 ... | |
11,078 | ma_read_rnd_pack_record | eloqsql/storage/maria/ma_packrec.c | int _ma_read_rnd_pack_record(MARIA_HA *info,
uchar *buf,
register MARIA_RECORD_POS filepos,
my_bool skip_deleted_blocks)
{
File file;
MARIA_BLOCK_INFO block_info;
MARIA_SHARE *share= info->s;
DBUG_ENTER("_ma_read_rnd_pack_record");
if (filepos >= info->state->data... | O0 | c | ma_read_rnd_pack_record:
pushq %rbp
movq %rsp, %rbp
subq $0xa0, %rsp
movb %cl, %al
movq %fs:0x28, %rcx
movq %rcx, -0x8(%rbp)
movq %rdi, -0x70(%rbp)
movq %rsi, -0x78(%rbp)
movq %rdx, -0x80(%rbp)
movb %al, -0x81(%rbp)
movq -0x70(%rbp), %rax
movq (%rax), %rax
movq %rax, -0x90(%rbp)
movq -0x80(%rbp), %rax
movq -0x70(%rbp),... | _ma_read_rnd_pack_record:
push rbp
mov rbp, rsp
sub rsp, 0A0h
mov al, cl
mov rcx, fs:28h
mov [rbp+var_8], rcx
mov [rbp+var_70], rdi
mov [rbp+var_78], rsi
mov [rbp+var_80], rdx
mov [rbp+var_81], al
mov rax, [rbp+var_70]
mov rax, [rax]
mov [rbp+var_90], rax
mov rax, ... | long long ma_read_rnd_pack_record(long long a1, long long a2, unsigned long long a3, char a4)
{
int v5; // [rsp+18h] [rbp-88h]
_BYTE v9[24]; // [rsp+40h] [rbp-60h] BYREF
long long v10; // [rsp+58h] [rbp-48h]
long long v11; // [rsp+78h] [rbp-28h]
unsigned int v12; // [rsp+94h] [rbp-Ch]
unsigned long long v1... | _ma_read_rnd_pack_record:
PUSH RBP
MOV RBP,RSP
SUB RSP,0xa0
MOV AL,CL
MOV RCX,qword ptr FS:[0x28]
MOV qword ptr [RBP + -0x8],RCX
MOV qword ptr [RBP + -0x70],RDI
MOV qword ptr [RBP + -0x78],RSI
MOV qword ptr [RBP + -0x80],RDX
MOV byte ptr [RBP + -0x81],AL
MOV RAX,qword ptr [RBP + -0x70]
MOV RAX,qword ptr [RAX]
MOV qword... |
int4 _ma_read_rnd_pack_record(long *param_1,int8 param_2,ulong param_3,char param_4)
{
char cVar1;
int iVar2;
int4 *puVar3;
long lVar4;
long in_FS_OFFSET;
int4 local_90;
int4 local_6c;
int1 local_68 [24];
long local_50;
long local_30;
uint local_14;
long local_10;
local_10 = *(long *)(in_... | |
11,079 | find_closure_var | bluesky950520[P]quickjs/quickjs.c | static int find_closure_var(JSContext *ctx, JSFunctionDef *s,
JSAtom var_name)
{
int i;
for(i = 0; i < s->closure_var_count; i++) {
JSClosureVar *cv = &s->closure_var[i];
if (cv->var_name == var_name)
return i;
}
return -1;
} | O0 | c | find_closure_var:
movq %rdi, -0x10(%rsp)
movq %rsi, -0x18(%rsp)
movl %edx, -0x1c(%rsp)
movl $0x0, -0x20(%rsp)
movl -0x20(%rsp), %eax
movq -0x18(%rsp), %rcx
cmpl 0x198(%rcx), %eax
jge 0xb8deb
movq -0x18(%rsp), %rax
movq 0x1a0(%rax), %rax
movslq -0x20(%rsp), %rcx
shlq $0x3, %rcx
addq %rcx, %rax
movq %rax, -0x28(%rsp)
mov... | find_closure_var:
mov [rsp+var_10], rdi
mov [rsp+var_18], rsi
mov [rsp+var_1C], edx
mov [rsp+var_20], 0
loc_B8D96:
mov eax, [rsp+var_20]
mov rcx, [rsp+var_18]
cmp eax, [rcx+198h]
jge short loc_B8DEB
mov rax, [rsp+var_18]
mov rax, [rax+1A0h]
movsxd rcx, [rsp+var_20]
shl rcx, ... | long long find_closure_var(long long a1, long long a2, int a3)
{
unsigned int i; // [rsp+8h] [rbp-20h]
for ( i = 0; (signed int)i < *(_DWORD *)(a2 + 408); ++i )
{
if ( *(_DWORD *)(8LL * (int)i + *(_QWORD *)(a2 + 416) + 4) == a3 )
return i;
}
return (unsigned int)-1;
}
| find_closure_var:
MOV qword ptr [RSP + -0x10],RDI
MOV qword ptr [RSP + -0x18],RSI
MOV dword ptr [RSP + -0x1c],EDX
MOV dword ptr [RSP + -0x20],0x0
LAB_001b8d96:
MOV EAX,dword ptr [RSP + -0x20]
MOV RCX,qword ptr [RSP + -0x18]
CMP EAX,dword ptr [RCX + 0x198]
JGE 0x001b8deb
MOV RAX,qword ptr [RSP + -0x18]
MOV RAX,qword ptr... |
int find_closure_var(int8 param_1,long param_2,int param_3)
{
int local_20;
local_20 = 0;
while( true ) {
if (*(int *)(param_2 + 0x198) <= local_20) {
return -1;
}
if (*(int *)(*(long *)(param_2 + 0x1a0) + (long)local_20 * 8 + 4) == param_3) break;
local_20 = local_20 + 1;
}
return ... | |
11,080 | rlLoadDrawQuad | csit-sgu[P]mit-game-2025_1/Libraries/raylib/src/rlgl.h | void rlLoadDrawQuad(void)
{
#if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
unsigned int quadVAO = 0;
unsigned int quadVBO = 0;
float vertices[] = {
// Positions Texcoords
-1.0f, 1.0f, 0.0f, 0.0f, 1.0f,
-1.0f, -1.0f, 0.0f, 0.0f, 0.0f,
1... | O1 | c | rlLoadDrawQuad:
pushq %r15
pushq %r14
pushq %rbx
subq $0x60, %rsp
xorl %eax, %eax
leaq 0xc(%rsp), %rbx
movl %eax, (%rbx)
leaq 0x8(%rsp), %r14
movl %eax, (%r14)
leaq 0x7c246(%rip), %rsi # 0xe3680
leaq 0x10(%rsp), %r15
movl $0xa, %ecx
movq %r15, %rdi
rep movsq (%rsi), %es:(%rdi)
movl $0x1, %edi
movq %rbx, %rsi
callq... | rlLoadDrawQuad:
push r15
push r14
push rbx
sub rsp, 60h
xor eax, eax
lea rbx, [rsp+78h+var_6C]
mov [rbx], eax
lea r14, [rsp+78h+var_70]
mov [r14], eax
lea rsi, unk_E3680
lea r15, [rsp+78h+var_68]
mov ecx, 0Ah
mov rdi, r15
rep movsq
mov edi, 1
mov rsi, rbx
call ... | long long rlLoadDrawQuad()
{
unsigned int v1; // [rsp+8h] [rbp-70h] BYREF
unsigned int v2; // [rsp+Ch] [rbp-6Ch] BYREF
_BYTE v3[104]; // [rsp+10h] [rbp-68h] BYREF
v2 = 0;
v1 = 0;
qmemcpy(v3, &unk_E3680, 0x50uLL);
glad_glGenVertexArrays(1LL, &v2);
glad_glBindVertexArray(v2);
glad_glGenBuffers(1LL, &v1... | rlLoadDrawQuad:
PUSH R15
PUSH R14
PUSH RBX
SUB RSP,0x60
XOR EAX,EAX
LEA RBX,[RSP + 0xc]
MOV dword ptr [RBX],EAX
LEA R14,[RSP + 0x8]
MOV dword ptr [R14],EAX
LEA RSI,[0x1e3680]
LEA R15,[RSP + 0x10]
MOV ECX,0xa
MOV RDI,R15
MOVSQ.REP RDI,RSI
MOV EDI,0x1
MOV RSI,RBX
CALL qword ptr [0x0023f9f0]
MOV EDI,dword ptr [RBX]
CALL q... |
void rlLoadDrawQuad(void)
{
long lVar1;
int8 *puVar2;
int8 *puVar3;
int4 local_70;
int4 local_6c;
int8 local_68 [10];
local_6c = 0;
local_70 = 0;
puVar2 = &DAT_001e3680;
puVar3 = local_68;
for (lVar1 = 10; lVar1 != 0; lVar1 = lVar1 + -1) {
*puVar3 = *puVar2;
puVar2 = puVar2 + 1;
p... | |
11,081 | update_rwlock_derived_flags() | eloqsql/storage/perfschema/pfs_instr.cc | void update_rwlock_derived_flags()
{
global_rwlock_container.apply_all(fct_update_rwlock_derived_flags);
} | O3 | cpp | update_rwlock_derived_flags():
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
xorl %ebx, %ebx
leaq 0x35afc6(%rip), %r14 # 0x393378
leaq 0x39a047(%rip), %r15 # 0x3d2400
movq 0xa8(%r14,%rbx,8), %rax
testq %rax, %rax
je 0x38415
movq 0x50(%rax), %r12
testq %r12, %r12
jle ... | _Z27update_rwlock_derived_flagsv:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
push rax
xor ebx, ebx
lea r14, global_rwlock_container
lea r15, flag_global_instrumentation
loc_383B9:
mov rax, [r14+rbx*8+0A8h]
test rax, rax
jz short loc_38415
mov ... | char update_rwlock_derived_flags(void)
{
long long i; // rbx
long long v1; // rax
long long v2; // r12
unsigned long long v3; // r13
unsigned long long v4; // r12
char v5; // cl
for ( i = 0LL; i != 1024; ++i )
{
v1 = global_rwlock_container[i + 21];
if ( v1 )
{
v2 = *(_QWORD *)(v1 + 8... | update_rwlock_derived_flags:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
XOR EBX,EBX
LEA R14,[0x493378]
LEA R15,[0x4d2400]
LAB_001383b9:
MOV RAX,qword ptr [R14 + RBX*0x8 + 0xa8]
TEST RAX,RAX
JZ 0x00138415
MOV R12,qword ptr [RAX + 0x50]
TEST R12,R12
JLE 0x00138415
MOV R13,qword ptr [RAX + ... |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
/* update_rwlock_derived_flags() */
void update_rwlock_derived_flags(void)
{
int1 uVar1;
long lVar2;
long lVar3;
ulong uVar4;
ulong uVar5;
lVar3 = 0;
do {
lVar2 = *(long *)(global_rwlock_container + lVar3 * 8 + 0xa8);
... | |
11,082 | js_typed_array___speciesCreate | bluesky950520[P]quickjs/quickjs.c | static JSValue js_typed_array___speciesCreate(JSContext *ctx,
JSValue this_val,
int argc, JSValue *argv)
{
JSValue obj;
JSObject *p;
JSValue ctor, ret;
int argc1;
obj = argv[0];
p = get_typed_array(ctx, ... | O0 | c | js_typed_array___speciesCreate:
subq $0xc8, %rsp
movq %rsi, 0xa8(%rsp)
movq %rdx, 0xb0(%rsp)
movq %rdi, 0xa0(%rsp)
movl %ecx, 0x9c(%rsp)
movq %r8, 0x90(%rsp)
movq 0x90(%rsp), %rax
movq (%rax), %rcx
movq %rcx, 0x80(%rsp)
movq 0x8(%rax), %rax
movq %rax, 0x88(%rsp)
movq 0xa0(%rsp), %rdi
movq 0x80(%rsp), %rsi
movq 0x88(%rs... | js_typed_array___speciesCreate:
sub rsp, 0C8h
mov [rsp+0C8h+var_20], rsi
mov [rsp+0C8h+var_18], rdx
mov [rsp+0C8h+var_28], rdi
mov [rsp+0C8h+var_2C], ecx
mov [rsp+0C8h+var_38], r8
mov rax, [rsp+0C8h+var_38]
mov rcx, [rax]
mov [rsp+0C8h+var_48], rcx
mov rax, [rax+8]
mov [rsp+0... | long long js_typed_array___speciesCreate(
long long a1,
__m128 a2,
__m128 a3,
__m128 a4,
__m128 a5,
__m128 a6,
__m128 a7,
__m128 a8,
__m128 a9,
long long a10,
long long a11,
int a12,
long long *a13,
long lon... | js_typed_array___speciesCreate:
SUB RSP,0xc8
MOV qword ptr [RSP + 0xa8],RSI
MOV qword ptr [RSP + 0xb0],RDX
MOV qword ptr [RSP + 0xa0],RDI
MOV dword ptr [RSP + 0x9c],ECX
MOV qword ptr [RSP + 0x90],R8
MOV RAX,qword ptr [RSP + 0x90]
MOV RCX,qword ptr [RAX]
MOV qword ptr [RSP + 0x80],RCX
MOV RAX,qword ptr [RAX + 0x8]
MOV q... |
int1 [16]
js_typed_array___speciesCreate
(int8 param_1,int8 param_2,int8 param_3,int param_4,int8 *param_5)
{
int8 uVar1;
int iVar2;
int4 uVar3;
long lVar4;
int1 auVar6 [16];
uint uStack_b4;
uint uStack_94;
int8 local_68;
int4 local_10;
int4 uStack_c;
int8 local_8;
int8 uVar5;
... | |
11,083 | js_typed_array___speciesCreate | bluesky950520[P]quickjs/quickjs.c | static JSValue js_typed_array___speciesCreate(JSContext *ctx,
JSValue this_val,
int argc, JSValue *argv)
{
JSValue obj;
JSObject *p;
JSValue ctor, ret;
int argc1;
obj = argv[0];
p = get_typed_array(ctx, ... | O1 | c | js_typed_array___speciesCreate:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x18, %rsp
movq %rdx, %r14
movl %esi, %r13d
movq %rdi, %rbx
movq (%rdx), %r15
movq 0x8(%rdx), %r12
movq %r15, 0x10(%rsp)
cmpl $-0x1, %r12d
jne 0x77fdc
movq 0x10(%rsp), %rbp
movzwl 0x6(%rbp), %eax
addl $-0x15, %eax
cm... | js_typed_array___speciesCreate:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 18h
mov r14, rdx
mov r13d, esi
mov rbx, rdi
mov r15, [rdx]
mov r12, [rdx+8]
mov [rsp+48h+var_38], r15
cmp r12d, 0FFFFFFFFh
jnz short loc_77FDC
mov rbp, [rsp+48h+var_38... | unsigned long long js_typed_array___speciesCreate(
long long a1,
int a2,
long long *a3,
long long a4,
long long a5,
long long a6,
__m128 a7,
__m128 a8,
__m128 a9,
__m128 a10,
__m128 a11,
__m128 a12,
__m128 a13,
... | js_typed_array___speciesCreate:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x18
MOV R14,RDX
MOV R13D,ESI
MOV RBX,RDI
MOV R15,qword ptr [RDX]
MOV R12,qword ptr [RDX + 0x8]
MOV qword ptr [RSP + 0x10],R15
CMP R12D,-0x1
JNZ 0x00177fdc
MOV RBP,qword ptr [RSP + 0x10]
MOVZX EAX,word ptr [RBP + 0x6]
ADD EAX,... |
int1 [16] js_typed_array___speciesCreate(long param_1,int param_2,long *param_3)
{
long lVar1;
long lVar2;
int8 uVar3;
int iVar4;
int8 uVar5;
long lVar6;
ulong uVar7;
int1 auVar8 [16];
int1 auVar9 [16];
lVar1 = *param_3;
lVar2 = param_3[1];
if (((int)lVar2 != -1) || (lVar6 = lVar1, 0xb < (... | |
11,084 | js_typed_array___speciesCreate | bluesky950520[P]quickjs/quickjs.c | static JSValue js_typed_array___speciesCreate(JSContext *ctx,
JSValue this_val,
int argc, JSValue *argv)
{
JSValue obj;
JSObject *p;
JSValue ctor, ret;
int argc1;
obj = argv[0];
p = get_typed_array(ctx, ... | O2 | c | js_typed_array___speciesCreate:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movq %rdx, %r12
movl %esi, %ebp
movq %rdi, %r15
movq (%rdx), %rbx
movq 0x8(%rdx), %r14
movq %rbx, %rsi
movq %r14, %rdx
callq 0x3280b
testq %rax, %rax
je 0x64f1d
movq %rax, %r13
movl %ebp, 0x4(%rsp)
movabsq $-0x1... | js_typed_array___speciesCreate:
push rbp
push r15
push r14
push r13
push r12
push rbx
push rax
mov r12, rdx
mov ebp, esi
mov r15, rdi
mov rbx, [rdx]
mov r14, [rdx+8]
mov rsi, rbx
mov rdx, r14
call get_typed_array
test rax, rax
jz short loc_64F1D
mov r13, r... | unsigned long long js_typed_array___speciesCreate(
long long a1,
int a2,
long long *a3,
long long a4,
long long a5,
long long a6,
__m128 a7,
__m128 a8,
__m128 a9,
__m128 a10,
__m128 a11,
__m128 a12,
__m128 a13,
... | js_typed_array___speciesCreate:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV R12,RDX
MOV EBP,ESI
MOV R15,RDI
MOV RBX,qword ptr [RDX]
MOV R14,qword ptr [RDX + 0x8]
MOV RSI,RBX
MOV RDX,R14
CALL 0x0013280b
TEST RAX,RAX
JZ 0x00164f1d
MOV R13,RAX
MOV dword ptr [RSP + 0x4],EBP
MOV RBP,-0x100000000
PUSH ... |
int1 [16] js_typed_array___speciesCreate(int8 param_1,int param_2,int8 *param_3)
{
int8 uVar1;
long lVar2;
int8 uVar3;
int iVar4;
ulong uVar5;
int1 auVar6 [16];
int1 auVar7 [16];
uVar3 = *param_3;
uVar1 = param_3[1];
lVar2 = get_typed_array(param_1,uVar3,uVar1);
if (lVar2 == 0) {
auVar6 ... | |
11,085 | my_hrtime | eloqsql/mysys/my_getsystime.c | my_hrtime_t my_hrtime()
{
my_hrtime_t hrtime;
#if defined(_WIN32)
ulonglong newtime;
GetSystemTimePreciseAsFileTime((FILETIME*)&newtime);
hrtime.val= (newtime - OFFSET_TO_EPOC)/10;
#elif defined(HAVE_CLOCK_GETTIME)
struct timespec tp;
clock_gettime(CLOCK_REALTIME, &tp);
hrtime.val= tp.tv_sec*1000000ULL+tp... | O3 | c | my_hrtime:
pushq %rbp
movq %rsp, %rbp
pushq %rbx
subq $0x18, %rsp
leaq -0x18(%rbp), %rbx
xorl %edi, %edi
movq %rbx, %rsi
callq 0x24290
imulq $0xf4240, (%rbx), %rcx # imm = 0xF4240
movq 0x8(%rbx), %rax
shrq $0x3, %rax
movabsq $0x20c49ba5e353f7cf, %rdx # imm = 0x20C49BA5E353F7CF
mulq %rdx
shrq $0x4, %rdx
addq %rdx, %rcx... | my_hrtime:
push rbp
mov rbp, rsp
push rbx
sub rsp, 18h
lea rbx, [rbp+var_18]
xor edi, edi
mov rsi, rbx
call _clock_gettime
imul rcx, [rbx], 0F4240h
mov rax, [rbx+8]
shr rax, 3
mov rdx, 20C49BA5E353F7CFh
mul rdx
shr rdx, 4
add rcx, rdx
mov rax, rcx
add rsp,... | unsigned long long my_hrtime()
{
long long v1; // [rsp+8h] [rbp-18h] BYREF
unsigned long long v2; // [rsp+10h] [rbp-10h]
clock_gettime(0LL, &v1);
return v2 / 0x3E8 + 1000000 * v1;
}
| my_hrtime:
PUSH RBP
MOV RBP,RSP
PUSH RBX
SUB RSP,0x18
LEA RBX,[RBP + -0x18]
XOR EDI,EDI
MOV RSI,RBX
CALL 0x00124290
IMUL RCX,qword ptr [RBX],0xf4240
MOV RAX,qword ptr [RBX + 0x8]
SHR RAX,0x3
MOV RDX,0x20c49ba5e353f7cf
MUL RDX
SHR RDX,0x4
ADD RCX,RDX
MOV RAX,RCX
ADD RSP,0x18
POP RBX
POP RBP
RET
|
long my_hrtime(void)
{
timespec local_20;
clock_gettime(0,&local_20);
return local_20.tv_sec * 1000000 + (ulong)local_20.tv_nsec / 1000;
}
| |
11,086 | httplib::detail::is_hex(char, int&) | nickolajgrishuk[P]metricz-cpp/build_O0/_deps/httplib-src/httplib.h | inline bool is_hex(char c, int &v) {
if (0x20 <= c && isdigit(c)) {
v = c - '0';
return true;
} else if ('A' <= c && c <= 'F') {
v = c - 'A' + 10;
return true;
} else if ('a' <= c && c <= 'f') {
v = c - 'a' + 10;
return true;
}
return false;
} | O0 | c | httplib::detail::is_hex(char, int&):
pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movb %dil, %al
movb %al, -0x2(%rbp)
movq %rsi, -0x10(%rbp)
movsbl -0x2(%rbp), %ecx
movl $0x20, %eax
cmpl %ecx, %eax
jg 0x3e930
movsbl -0x2(%rbp), %edi
callq 0xa600
cmpl $0x0, %eax
je 0x3e930
movsbl -0x2(%rbp), %ecx
subl $0x30, %ecx
movq -0... | _ZN7httplib6detail6is_hexEcRi:
push rbp
mov rbp, rsp
sub rsp, 10h
mov al, dil
mov [rbp+var_2], al
mov [rbp+var_10], rsi
movsx ecx, [rbp+var_2]
mov eax, 20h ; ' '
cmp eax, ecx
jg short loc_3E930
movsx edi, [rbp+var_2]
call _isdigit
cmp eax, 0
jz short loc_3E930
movsx ... | char httplib::detail::is_hex(httplib::detail *this, _DWORD *a2, int *a3)
{
if ( (char)this >= 32 && (unsigned int)isdigit((unsigned int)(char)this, a2, a3) )
{
*a2 = (char)this - 48;
return 1;
}
else if ( (char)this < 65 || (char)this > 70 )
{
if ( (char)this < 97 || (char)this > 102 )
{
... | is_hex:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV AL,DIL
MOV byte ptr [RBP + -0x2],AL
MOV qword ptr [RBP + -0x10],RSI
MOVSX ECX,byte ptr [RBP + -0x2]
MOV EAX,0x20
CMP EAX,ECX
JG 0x0013e930
MOVSX EDI,byte ptr [RBP + -0x2]
CALL 0x0010a600
CMP EAX,0x0
JZ 0x0013e930
MOVSX ECX,byte ptr [RBP + -0x2]
SUB ECX,0x30
MOV RAX,qword pt... |
/* httplib::detail::is_hex(char, int&) */
int1 httplib::detail::is_hex(char param_1,int *param_2)
{
int iVar1;
int1 local_9;
if (('\x1f' < param_1) && (iVar1 = isdigit((int)param_1), iVar1 != 0)) {
*param_2 = param_1 + -0x30;
return 1;
}
if ((param_1 < 'A') || ('F' < param_1)) {
if ((param_1... | |
11,087 | google::protobuf::internal::EpsCopyInputStream::Next() | aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/parse_context.cc | const char* EpsCopyInputStream::Next() {
GOOGLE_DCHECK(limit_ > kSlopBytes);
auto p = NextBuffer(0 /* immaterial */, -1);
if (p == nullptr) {
limit_end_ = buffer_end_;
// Distinguish ending on a pushed limit or ending on end-of-stream.
SetEndOfStream();
return nullptr;
}
limit_ -= buffer_end_ ... | O3 | cpp | google::protobuf::internal::EpsCopyInputStream::Next():
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movq %rdi, %rbx
movq 0x10(%rdi), %rbp
testq %rbp, %rbp
je 0xfe54f
leaq 0x28(%rbx), %r14
cmpq %r14, %rbp
je 0xfe565
movslq 0x18(%rbx), %rax
leaq (%rax,%rbp), %r15
addq $-0x10, %r15
movq %r... | _ZN6google8protobuf8internal18EpsCopyInputStream4NextEv:
push rbp
push r15
push r14
push r13
push r12
push rbx
push rax
mov rbx, rdi
mov rbp, [rdi+10h]
test rbp, rbp
jz short loc_FE54F
lea r14, [rbx+28h]
cmp rbp, r14
jz short loc_FE565
movsxd rax, dword ptr [rbx+18h]
l... | google::protobuf::internal::EpsCopyInputStream * google::protobuf::internal::EpsCopyInputStream::Next(
google::protobuf::internal::EpsCopyInputStream *this)
{
_OWORD *v1; // rax
google::protobuf::internal::EpsCopyInputStream *v2; // rbp
google::protobuf::internal::EpsCopyInputStream *v3; // r14
char *v4... | Next:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV RBX,RDI
MOV RBP,qword ptr [RDI + 0x10]
TEST RBP,RBP
JZ 0x001fe54f
LEA R14,[RBX + 0x28]
CMP RBP,R14
JZ 0x001fe565
MOVSXD RAX,dword ptr [RBX + 0x18]
LEA R15,[RAX + RBP*0x1]
ADD R15,-0x10
MOV qword ptr [RBX + 0x8],R15
MOV qword ptr [RBX + 0x10],R14
C... |
/* google::protobuf::internal::EpsCopyInputStream::Next() */
EpsCopyInputStream * __thiscall
google::protobuf::internal::EpsCopyInputStream::Next(EpsCopyInputStream *this)
{
EpsCopyInputStream *pEVar1;
int iVar2;
int4 *puVar3;
int4 uVar4;
int4 uVar5;
int4 uVar6;
int8 uVar7;
char cVar8;
uint uVar9;
... | |
11,088 | testing::internal::ReportInvalidTestSuiteType(char const*, testing::internal::CodeLocation const&) | giladroyz[P]FindPeaks/build_O3/_deps/googletest-src/googletest/src/gtest.cc | void ReportInvalidTestSuiteType(const char* test_suite_name,
const CodeLocation& code_location) {
Message errors;
errors
<< "Attempted redefinition of test suite " << test_suite_name << ".\n"
<< "All tests in the same test suite must use the same test fixture\n"
<< ... | O3 | cpp | testing::internal::ReportInvalidTestSuiteType(char const*, testing::internal::CodeLocation const&):
pushq %r15
pushq %r14
pushq %r12
pushq %rbx
subq $0x58, %rsp
movq %rsi, %r14
movq %rdi, %r12
leaq 0x50(%rsp), %rbx
movq %rbx, %rdi
callq 0x1c968
movq (%rbx), %rbx
leaq 0x10(%rbx), %r15
leaq 0x22174(%rip), %rsi # 0x43... | _ZN7testing8internal26ReportInvalidTestSuiteTypeEPKcRKNS0_12CodeLocationE:
push r15; __int64
push r14; int
push r12; void *
push rbx; int
sub rsp, 58h
mov r14, rsi
mov r12, rdi
lea rbx, [rsp+78h+var_28]
mov rdi, rbx; this
call _ZN7testing7MessageC2Ev; testing::Message::Message(void)
m... | void testing::internal::ReportInvalidTestSuiteType(const char *a1, long long a2)
{
const char *v3; // r12
long long v4; // rbx
long long v5; // rdx
const char *v6; // rsi
long long v7; // rdx
long long v8; // r14
void *v9; // rsi
long long v10; // rdx
long long v11; // rcx
int v12; // [rsp+Ch] [rbp... | ReportInvalidTestSuiteType:
PUSH R15
PUSH R14
PUSH R12
PUSH RBX
SUB RSP,0x58
MOV R14,RSI
MOV R12,RDI
LEA RBX,[RSP + 0x50]
MOV RDI,RBX
CALL 0x0011c968
MOV RBX,qword ptr [RBX]
LEA R15,[RBX + 0x10]
LAB_00120eb0:
LEA RSI,[0x14302b]
MOV EDX,0x25
MOV RDI,R15
CALL 0x001085b0
TEST R12,R12
JZ 0x00120ed9
MOV RDI,R12
CALL 0x00108... |
/* testing::internal::ReportInvalidTestSuiteType(char const*, testing::internal::CodeLocation
const&) */
void testing::internal::ReportInvalidTestSuiteType(char *param_1,CodeLocation *param_2)
{
size_t sVar1;
ostream *poVar2;
char *pcVar3;
GTestLog local_6c [4];
long *local_68;
long local_60;
long l... | |
11,089 | void nlohmann::json_abi_v3_11_3::detail::from_json<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, s... | monkey531[P]llama/common/json.hpp | inline void from_json(const BasicJsonType& j, ArithmeticType& val)
{
switch (static_cast<value_t>(j))
{
case value_t::number_unsigned:
{
val = static_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_unsigned_t*>());
break;
}
ca... | O2 | cpp | void nlohmann::json_abi_v3_11_3::detail::from_json<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, s... | _ZN8nlohmann16json_abi_v3_11_36detail9from_jsonINS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEEiTnNSt9enable_ifIXaaaaaaaasr3std13is_arithmeticIT0_EE5valuentsr3std7is_sameISH_NT_17number_unsigned_tEEE5valuentsr3std7is_sameISH_NSI_1... | long long ZN8nlohmann16json_abi_v3_11_36detail9from_jsonINS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEEiTnNSt9enable_ifIXaaaaaaaasr3std13is_arithmeticIT0_EE5valuentsr3std7is_sameISH_NT_17number_unsigned_tEEE5valuentsr3std7is_sam... | _ZN8nlohmann16json_abi_v3_11_36detail9from_jsonINS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEEiTnNSt9enable_ifIXaaaaaaaasr3std13is_arithmeticIT0_EE5valuentsr3std7is_sameISH_NT_17number_unsigned_tEEE5valuentsr3std7is_sameISH_NSI_1... |
void _ZN8nlohmann16json_abi_v3_11_36detail9from_jsonINS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEEiTnNSt9enable_ifIXaaaaaaaasr3std13is_arithmeticIT0_EE5valuentsr3std7is_sameISH_NT_17number_unsigned_tEEE5valuentsr3std7is_sameISH... | |
11,090 | js_object_set___proto__ | bluesky950520[P]quickjs/quickjs.c | static JSValue js_object_set___proto__(JSContext *ctx, JSValue this_val,
JSValue proto)
{
if (JS_IsUndefined(this_val) || JS_IsNull(this_val))
return JS_ThrowTypeErrorNotAnObject(ctx);
if (!JS_IsObject(proto) && !JS_IsNull(proto))
return JS_UNDEFINED;
i... | O0 | c | js_object_set___proto__:
subq $0x38, %rsp
movq %rsi, 0x18(%rsp)
movq %rdx, 0x20(%rsp)
movq %rcx, 0x8(%rsp)
movq %r8, 0x10(%rsp)
movq %rdi, (%rsp)
movq 0x18(%rsp), %rdi
movq 0x20(%rsp), %rsi
callq 0x2e260
cmpl $0x0, %eax
jne 0xc16e4
movq 0x18(%rsp), %rdi
movq 0x20(%rsp), %rsi
callq 0x2e240
cmpl $0x0, %eax
je 0xc16fc
mov... | js_object_set___proto__:
sub rsp, 38h
mov [rsp+38h+var_20], rsi
mov [rsp+38h+var_18], rdx
mov [rsp+38h+var_30], rcx
mov [rsp+38h+var_28], r8
mov [rsp+38h+var_38], rdi
mov rdi, [rsp+38h+var_20]
mov rsi, [rsp+38h+var_18]
call JS_IsUndefined_0
cmp eax, 0
jnz short loc_C16E4
mov ... | long long js_object_set___proto__(
long long a1,
long long a2,
long long a3,
_DWORD *a4,
long long a5,
__m128 a6,
__m128 a7,
__m128 a8,
__m128 a9,
double a10,
double a11,
__m128 a12,
__m128 a13)
{
long long v14; /... | js_object_set___proto__:
SUB RSP,0x38
MOV qword ptr [RSP + 0x18],RSI
MOV qword ptr [RSP + 0x20],RDX
MOV qword ptr [RSP + 0x8],RCX
MOV qword ptr [RSP + 0x10],R8
MOV qword ptr [RSP],RDI
MOV RDI,qword ptr [RSP + 0x18]
MOV RSI,qword ptr [RSP + 0x20]
CALL 0x0012e260
CMP EAX,0x0
JNZ 0x001c16e4
MOV RDI,qword ptr [RSP + 0x18]
... |
int1 [16]
js_object_set___proto__
(int8 param_1,int8 param_2,int8 param_3,int8 param_4,
int8 param_5)
{
int iVar1;
int1 auVar2 [16];
int4 local_10;
int4 uStack_c;
int8 local_8;
iVar1 = JS_IsUndefined(param_2,param_3);
if (iVar1 == 0) {
iVar1 = JS_IsNull(param_2,param_3);
... | |
11,091 | js_object_set___proto__ | bluesky950520[P]quickjs/quickjs.c | static JSValue js_object_set___proto__(JSContext *ctx, JSValue this_val,
JSValue proto)
{
if (JS_IsUndefined(this_val) || JS_IsNull(this_val))
return JS_ThrowTypeErrorNotAnObject(ctx);
if (!JS_IsObject(proto) && !JS_IsNull(proto))
return JS_UNDEFINED;
i... | O1 | c | js_object_set___proto__:
pushq %rax
movl %edx, %eax
andl $-0x2, %eax
cmpl $0x2, %eax
jne 0x71696
leaq 0x2d99e(%rip), %rsi # 0x9f025
xorl %eax, %eax
callq 0x22567
movl $0x6, %r9d
jmp 0x716be
cmpl $0x2, %r8d
je 0x716a8
movl $0x3, %r9d
cmpl $-0x1, %r8d
jne 0x716be
movl $0x1, %r9d
callq 0x22731
shrl $0x1f, %eax
leaq (%... | js_object_set___proto__:
push rax
mov eax, edx
and eax, 0FFFFFFFEh
cmp eax, 2
jnz short loc_71696
lea rsi, aOperandPrototy+20h; "not an object"
xor eax, eax
call JS_ThrowTypeError
mov r9d, 6
jmp short loc_716BE
loc_71696:
cmp r8d, 2
jz short loc_716A8
mov r9d, 3
cmp ... | long long js_object_set___proto__(
long long a1,
long long a2,
long long a3,
_DWORD *a4,
long long a5,
long long a6,
__m128 a7,
__m128 a8,
__m128 a9,
__m128 a10,
__m128 a11,
__m128 a12,
__m128 a13,
__m128 a1... | js_object_set___proto__:
PUSH RAX
MOV EAX,EDX
AND EAX,0xfffffffe
CMP EAX,0x2
JNZ 0x00171696
LEA RSI,[0x19f025]
XOR EAX,EAX
CALL 0x00122567
MOV R9D,0x6
JMP 0x001716be
LAB_00171696:
CMP R8D,0x2
JZ 0x001716a8
MOV R9D,0x3
CMP R8D,-0x1
JNZ 0x001716be
LAB_001716a8:
MOV R9D,0x1
CALL 0x00122731
SHR EAX,0x1f
LEA R9,[RAX + RAX*0... |
int1 [16]
js_object_set___proto__
(int8 param_1,int8 param_2,uint param_3,int8 param_4,int param_5)
{
int1 auVar1 [16];
uint uVar2;
ulong uVar3;
if ((param_3 & 0xfffffffe) == 2) {
JS_ThrowTypeError(param_1,"not an object");
uVar3 = 6;
}
else if ((param_5 == 2) || (uVar3 = 3, param_5 ... | |
11,092 | mz_zip_reader_is_file_encrypted | 7CodeWizard[P]stablediffusion/thirdparty/miniz.h | mz_bool mz_zip_reader_is_file_encrypted(mz_zip_archive *pZip,
mz_uint file_index) {
mz_uint m_bit_flag;
const mz_uint8 *p = mz_zip_get_cdh(pZip, file_index);
if (!p) {
mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER);
return MZ_FALSE;
}
m_bit_flag = MZ_READ_LE1... | O0 | c | mz_zip_reader_is_file_encrypted:
movq %rdi, -0x30(%rsp)
movl %esi, -0x34(%rsp)
movq -0x30(%rsp), %rcx
movl -0x34(%rsp), %eax
movq %rcx, -0x10(%rsp)
movl %eax, -0x14(%rsp)
cmpq $0x0, -0x10(%rsp)
je 0xfff3d
movq -0x10(%rsp), %rax
cmpq $0x0, 0x68(%rax)
je 0xfff3d
movl -0x14(%rsp), %eax
movq -0x10(%rsp), %rcx
cmpl 0x10(%rc... | mz_zip_reader_is_file_encrypted:
mov [rsp+var_30], rdi
mov [rsp+var_34], esi
mov rcx, [rsp+var_30]
mov eax, [rsp+var_34]
mov [rsp+var_10], rcx
mov [rsp+var_14], eax
cmp [rsp+var_10], 0
jz short loc_FFF3D
mov rax, [rsp+var_10]
cmp qword ptr [rax+68h], 0
jz short loc_FFF3D
mo... | _BOOL8 mz_zip_reader_is_file_encrypted(long long a1, unsigned int a2)
{
long long v4; // [rsp+38h] [rbp-8h]
if ( a1 && *(_QWORD *)(a1 + 104) && a2 < *(_DWORD *)(a1 + 16) )
v4 = *(unsigned int *)(*(_QWORD *)(*(_QWORD *)(a1 + 104) + 32LL) + 4LL * a2) + **(_QWORD **)(a1 + 104);
else
v4 = 0LL;
if ( v4 )
... | mz_zip_reader_is_file_encrypted:
MOV qword ptr [RSP + -0x30],RDI
MOV dword ptr [RSP + -0x34],ESI
MOV RCX,qword ptr [RSP + -0x30]
MOV EAX,dword ptr [RSP + -0x34]
MOV qword ptr [RSP + -0x10],RCX
MOV dword ptr [RSP + -0x14],EAX
CMP qword ptr [RSP + -0x10],0x0
JZ 0x001fff3d
MOV RAX,qword ptr [RSP + -0x10]
CMP qword ptr [RA... |
bool mz_zip_reader_is_file_encrypted(long param_1,uint param_2)
{
bool bVar1;
long local_8;
if (((param_1 == 0) || (*(long *)(param_1 + 0x68) == 0)) || (*(uint *)(param_1 + 0x10) <= param_2)
) {
local_8 = 0;
}
else {
local_8 = **(long **)(param_1 + 0x68) +
(ulong)*(uint *)(*(lo... | |
11,093 | mz_zip_reader_is_file_encrypted | 7CodeWizard[P]stablediffusion/thirdparty/miniz.h | mz_bool mz_zip_reader_is_file_encrypted(mz_zip_archive *pZip,
mz_uint file_index) {
mz_uint m_bit_flag;
const mz_uint8 *p = mz_zip_get_cdh(pZip, file_index);
if (!p) {
mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER);
return MZ_FALSE;
}
m_bit_flag = MZ_READ_LE1... | O1 | c | mz_zip_reader_is_file_encrypted:
testq %rdi, %rdi
je 0x84223
movq 0x68(%rdi), %rax
testq %rax, %rax
je 0x84223
cmpl %esi, 0x10(%rdi)
jbe 0x84223
movq 0x20(%rax), %rcx
movl %esi, %edx
movl (%rcx,%rdx,4), %ecx
addq (%rax), %rcx
jmp 0x84225
xorl %ecx, %ecx
xorl %eax, %eax
testq %rcx, %rcx
je 0x84234
testb $0x41, 0x8(%rcx)... | mz_zip_reader_is_file_encrypted:
test rdi, rdi
jz short loc_84223
mov rax, [rdi+68h]
test rax, rax
jz short loc_84223
cmp [rdi+10h], esi
jbe short loc_84223
mov rcx, [rax+20h]
mov edx, esi
mov ecx, [rcx+rdx*4]
add rcx, [rax]
jmp short loc_84225
loc_84223:
xor ecx, ecx... | bool mz_zip_reader_is_file_encrypted(long long a1, unsigned int a2)
{
_QWORD *v2; // rax
long long v3; // rcx
bool result; // al
if ( a1 && (v2 = *(_QWORD **)(a1 + 104)) != 0LL && *(_DWORD *)(a1 + 16) > a2 )
v3 = *v2 + *(unsigned int *)(v2[4] + 4LL * a2);
else
v3 = 0LL;
result = 0;
if ( v3 )
... | |||
11,094 | mz_zip_reader_is_file_encrypted | 7CodeWizard[P]stablediffusion/thirdparty/miniz.h | mz_bool mz_zip_reader_is_file_encrypted(mz_zip_archive *pZip,
mz_uint file_index) {
mz_uint m_bit_flag;
const mz_uint8 *p = mz_zip_get_cdh(pZip, file_index);
if (!p) {
mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER);
return MZ_FALSE;
}
m_bit_flag = MZ_READ_LE1... | O2 | c | mz_zip_reader_is_file_encrypted:
xorl %eax, %eax
testq %rdi, %rdi
je 0x5e9c2
movq 0x68(%rdi), %rcx
testq %rcx, %rcx
je 0x5e9c3
cmpl %esi, 0x10(%rdi)
jbe 0x5e9c3
movq (%rcx), %rdx
testq %rdx, %rdx
je 0x5e9c3
movq 0x20(%rcx), %rax
movl %esi, %ecx
movl (%rax,%rcx,4), %ecx
xorl %eax, %eax
testb $0x41, 0x8(%rdx,%rcx)
setne ... | mz_zip_reader_is_file_encrypted:
xor eax, eax
test rdi, rdi
jz short locret_5E9C2
mov rcx, [rdi+68h]
test rcx, rcx
jz short loc_5E9C3
cmp [rdi+10h], esi
jbe short loc_5E9C3
mov rdx, [rcx]
test rdx, rdx
jz short loc_5E9C3
mov rax, [rcx+20h]
mov ecx, esi
mov ecx, [r... | _BOOL8 mz_zip_reader_is_file_encrypted(long long a1, unsigned int a2)
{
_BOOL8 result; // rax
_QWORD *v3; // rcx
result = 0LL;
if ( a1 )
{
v3 = *(_QWORD **)(a1 + 104);
if ( v3 && *(_DWORD *)(a1 + 16) > a2 && *v3 )
return (*(_BYTE *)(*v3 + *(unsigned int *)(v3[4] + 4LL * a2) + 8LL) & 0x41) != 0... | mz_zip_reader_is_file_encrypted:
XOR EAX,EAX
TEST RDI,RDI
JZ 0x0015e9c2
MOV RCX,qword ptr [RDI + 0x68]
TEST RCX,RCX
JZ 0x0015e9c3
CMP dword ptr [RDI + 0x10],ESI
JBE 0x0015e9c3
MOV RDX,qword ptr [RCX]
TEST RDX,RDX
JZ 0x0015e9c3
MOV RAX,qword ptr [RCX + 0x20]
MOV ECX,ESI
MOV ECX,dword ptr [RAX + RCX*0x4]
XOR EAX,EAX
TEST... |
bool mz_zip_reader_is_file_encrypted(long param_1,uint param_2)
{
long *plVar1;
bool bVar2;
bVar2 = false;
if (param_1 != 0) {
plVar1 = *(long **)(param_1 + 0x68);
if (((plVar1 == (long *)0x0) || (*(uint *)(param_1 + 0x10) <= param_2)) || (*plVar1 == 0)) {
*(int4 *)(param_1 + 0x1c) = 0x18;
... | |
11,095 | mz_zip_reader_is_file_encrypted | 7CodeWizard[P]stablediffusion/thirdparty/miniz.h | mz_bool mz_zip_reader_is_file_encrypted(mz_zip_archive *pZip,
mz_uint file_index) {
mz_uint m_bit_flag;
const mz_uint8 *p = mz_zip_get_cdh(pZip, file_index);
if (!p) {
mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER);
return MZ_FALSE;
}
m_bit_flag = MZ_READ_LE1... | O3 | c | mz_zip_reader_is_file_encrypted:
xorl %eax, %eax
testq %rdi, %rdi
je 0x832d3
movq 0x68(%rdi), %rcx
testq %rcx, %rcx
je 0x832d4
cmpl %esi, 0x10(%rdi)
jbe 0x832d4
movq (%rcx), %rdx
testq %rdx, %rdx
je 0x832d4
movq 0x20(%rcx), %rax
movl %esi, %ecx
movl (%rax,%rcx,4), %ecx
xorl %eax, %eax
testb $0x41, 0x8(%rdx,%rcx)
setne ... | mz_zip_reader_is_file_encrypted:
xor eax, eax
test rdi, rdi
jz short locret_832D3
mov rcx, [rdi+68h]
test rcx, rcx
jz short loc_832D4
cmp [rdi+10h], esi
jbe short loc_832D4
mov rdx, [rcx]
test rdx, rdx
jz short loc_832D4
mov rax, [rcx+20h]
mov ecx, esi
mov ecx, [r... | _BOOL8 mz_zip_reader_is_file_encrypted(long long a1, unsigned int a2)
{
_BOOL8 result; // rax
_QWORD *v3; // rcx
result = 0LL;
if ( a1 )
{
v3 = *(_QWORD **)(a1 + 104);
if ( v3 && *(_DWORD *)(a1 + 16) > a2 && *v3 )
return (*(_BYTE *)(*v3 + *(unsigned int *)(v3[4] + 4LL * a2) + 8LL) & 0x41) != 0... | |||
11,096 | SchemaConverter::_resolve_ref(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&) | monkey531[P]llama/common/json-schema-to-grammar.cpp | std::string _resolve_ref(const std::string & ref) {
std::string ref_name = ref.substr(ref.find_last_of('/') + 1);
if (_rules.find(ref_name) == _rules.end() && _refs_being_resolved.find(ref) == _refs_being_resolved.end()) {
_refs_being_resolved.insert(ref);
json resolved = _refs[r... | O2 | cpp | SchemaConverter::_resolve_ref(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&):
pushq %r15
pushq %r14
pushq %r12
pushq %rbx
subq $0x38, %rsp
movq %rdx, %r14
movq %rsi, %r15
movq %rdi, %rbx
pushq $0x2f
popq %rsi
pushq $-0x1
popq %r12
movq %rdx, %rdi
movq %r12, %rdx
callq 0x24130
lea... | _ZN15SchemaConverter12_resolve_refERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE:
push r15
push r14
push r12
push rbx
sub rsp, 38h
mov r14, rdx
mov r15, rsi
mov rbx, rdi
push 2Fh ; '/'
pop rsi
push 0FFFFFFFFFFFFFFFFh
pop r12
mov rdi, rdx
mov rdx, r12
call __... | long long SchemaConverter::_resolve_ref(long long a1, long long a2, long long a3, __m128d a4)
{
long long v5; // rax
long long v6; // rdx
int v7; // ecx
int v8; // r8d
int v9; // r9d
int v10; // edx
int v11; // ecx
int v12; // r8d
int v13; // r9d
unsigned __int8 *v14; // rax
unsigned __int8 v16[1... | _resolve_ref:
PUSH R15
PUSH R14
PUSH R12
PUSH RBX
SUB RSP,0x38
MOV R14,RDX
MOV R15,RSI
MOV RBX,RDI
PUSH 0x2f
POP RSI
PUSH -0x1
POP R12
MOV RDI,RDX
MOV RDX,R12
CALL 0x00124130
LEA RDX,[RAX + 0x1]
MOV RDI,RBX
MOV RSI,R14
MOV RCX,R12
CALL 0x00123920
LEA RDI,[R15 + 0x28]
LAB_0019025e:
MOV RSI,RBX
CALL 0x0018e356
LEA RCX,[R... |
/* SchemaConverter::_resolve_ref(std::__cxx11::string const&) */
string * SchemaConverter::_resolve_ref(string *param_1)
{
_Hashtable<std::__cxx11::string,std::__cxx11::string,std::allocator<std::__cxx11::string>,std::__detail::_Identity,std::equal_to<std::__cxx11::string>,std::hash<std::__cxx11::string>,std::__de... | |
11,097 | my_wc_mb_tis620 | eloqsql/strings/ctype-tis620.c | static
int my_wc_mb_tis620(CHARSET_INFO *cs __attribute__((unused)),
my_wc_t wc,
uchar *str,
uchar *end __attribute__((unused)))
{
const uchar *pl;
if (str >= end)
return MY_CS_TOOSMALL;
pl= uni_to_cs[(wc>>8) & 0xFF];
str[0]= pl ? pl[wc & 0xFF] : '\0';
return (!str[0] && wc) ? MY_CS_ILU... | O3 | c | my_wc_mb_tis620:
movl $0xffffff9b, %eax # imm = 0xFFFFFF9B
cmpq %rcx, %rdx
jae 0x3ff96
pushq %rbp
movq %rsp, %rbp
pushq %rbx
movq %rsi, %rbx
movzbl %bh, %eax
leaq 0x2b1111(%rip), %rcx # 0x2f1080
movq (%rcx,%rax,8), %rax
testq %rax, %rax
je 0x3ff80
movzbl %bl, %ecx
movb (%rax,%rcx), %al
jmp 0x3ff82
xorl %eax, %... | my_wc_mb_tis620:
mov eax, 0FFFFFF9Bh
cmp rdx, rcx
jnb short locret_3FF96
push rbp
mov rbp, rsp
push rbx
mov rbx, rsi
movzx eax, bh
lea rcx, uni_to_cs_0
mov rax, [rcx+rax*8]
test rax, rax
jz short loc_3FF80
movzx ecx, bl
mov al, [rax+rcx]
jmp short loc_3FF82
loc_3FF8... | long long my_wc_mb_tis620(long long a1, long long a2, _BYTE *a3, unsigned long long a4)
{
long long result; // rax
long long v5; // rax
char v6; // al
result = 4294967195LL;
if ( (unsigned long long)a3 < a4 )
{
v5 = (long long)*(&uni_to_cs_0 + BYTE1(a2));
if ( v5 )
v6 = *(_BYTE *)(v5 + (unsi... | my_wc_mb_tis620:
MOV EAX,0xffffff9b
CMP RDX,RCX
JNC 0x0013ff96
PUSH RBP
MOV RBP,RSP
PUSH RBX
MOV RBX,RSI
MOVZX EAX,BH
LEA RCX,[0x3f1080]
MOV RAX,qword ptr [RCX + RAX*0x8]
TEST RAX,RAX
JZ 0x0013ff80
MOVZX ECX,BL
MOV AL,byte ptr [RAX + RCX*0x1]
JMP 0x0013ff82
LAB_0013ff80:
XOR EAX,EAX
LAB_0013ff82:
MOV byte ptr [RDX],AL
... |
ulong my_wc_mb_tis620(int8 param_1,ulong param_2,char *param_3,char *param_4)
{
char cVar1;
ulong uVar2;
uVar2 = 0xffffff9b;
if (param_3 < param_4) {
if (*(long *)(uni_to_cs + (param_2 >> 8 & 0xff) * 8) == 0) {
cVar1 = '\0';
}
else {
cVar1 = *(char *)(*(long *)(uni_to_cs + (param_2 ... | |
11,098 | ident_realloc | bluesky950520[P]quickjs/quickjs.c | static __exception int ident_realloc(JSContext *ctx, char **pbuf, size_t *psize,
char *static_buf)
{
char *buf, *new_buf;
size_t size, new_size;
buf = *pbuf;
size = *psize;
if (size >= (SIZE_MAX / 3) * 2)
new_size = SIZE_MAX;
else
new_size = ... | O2 | c | ident_realloc:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movq %rdx, %rbx
movq %rsi, %r14
movq (%rsi), %r12
movq (%rdx), %r13
movq %r13, %rax
shrq %rax
addq %r13, %rax
movabsq $-0x5555555555555557, %rdx # imm = 0xAAAAAAAAAAAAAAA9
cmpq %rdx, %r13
pushq $-0x1
popq %r15
cmovbeq %rax, %r15... | ident_realloc:
push rbp
push r15
push r14
push r13
push r12
push rbx
push rax
mov rbx, rdx
mov r14, rsi
mov r12, [rsi]
mov r13, [rdx]
mov rax, r13
shr rax, 1
add rax, r13
mov rdx, 0AAAAAAAAAAAAAAA9h
cmp r13, rdx
push 0FFFFFFFFFFFFFFFFh
pop r15
cmovbe r15,... | long long ident_realloc(long long a1, long long *a2, long long *a3, long long a4)
{
long long v5; // r12
long long v6; // r13
long long v7; // r15
long long v8; // rbp
long long v9; // rax
v5 = *a2;
v6 = *a3;
v7 = -1LL;
if ( (unsigned long long)*a3 <= 0xAAAAAAAAAAAAAAA9LL )
v7 = *a3 + ((unsigned... | ident_realloc:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV RBX,RDX
MOV R14,RSI
MOV R12,qword ptr [RSI]
MOV R13,qword ptr [RDX]
MOV RAX,R13
SHR RAX,0x1
ADD RAX,R13
MOV RDX,-0x5555555555555557
CMP R13,RDX
PUSH -0x1
POP R15
CMOVBE R15,RAX
CMP R12,RCX
JZ 0x00141f59
MOV RSI,R12
MOV RDX,R15
CALL 0x0011... |
int8 ident_realloc(int8 param_1,long *param_2,ulong *param_3,void *param_4)
{
void *__src;
ulong __n;
void *__dest;
ulong uVar1;
__src = (void *)*param_2;
__n = *param_3;
uVar1 = 0xffffffffffffffff;
if (__n < 0xaaaaaaaaaaaaaaaa) {
uVar1 = (__n >> 1) + __n;
}
if (__src == param_4) {
__de... | |
11,099 | verify_receipt_proof | corpus-core[P]colibri-stateless/src/chains/eth/verifier/verify_receipt_proof.c | bool verify_receipt_proof(verify_ctx_t* ctx) {
ssz_ob_t raw_tx = ssz_get(&ctx->proof, "transaction");
ssz_ob_t receipt_proof = ssz_get(&ctx->proof, "receipt_proof");
ssz_ob_t block_proof = ssz_get(&ctx->proof, "block_proof");
ssz_ob_t header = ssz_... | O2 | c | verify_receipt_proof:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x228, %rsp # imm = 0x228
movq %rdi, %rbx
leaq 0x20(%rdi), %r14
leaq 0x4dee3(%rip), %rdx # 0x755c2
leaq 0x60(%rsp), %rdi
movq %r14, %rsi
callq 0x4d119
leaq 0x4d59b(%rip), %rdx # 0x74c8e
leaq 0xe8(%rsp), %rdi... | verify_receipt_proof:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 228h
mov rbx, rdi
lea r14, [rdi+20h]
lea rdx, aInvalidTransac+8; "transaction"
lea rdi, [rsp+258h+var_1F8]
mov rsi, r14
call ssz_get
lea rdx, aReceiptProof; "receipt_proof"
lea rdi, ... | long long verify_receipt_proof(long long a1)
{
unsigned int v2; // eax
unsigned int v3; // r14d
long long v4; // rdi
const char *v5; // rsi
unsigned int v6; // r14d
int v8; // r8d
int v9; // r9d
int v10; // r15d
int v11; // eax
long long v12; // rcx
long long v13; // rbp
long long v14; // r15
... | verify_receipt_proof:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x228
MOV RBX,RDI
LEA R14,[RDI + 0x20]
LEA RDX,[0x1755c2]
LEA RDI,[RSP + 0x60]
MOV RSI,R14
CALL 0x0014d119
LEA RDX,[0x174c8e]
LEA RDI,[RSP + 0xe8]
MOV RSI,R14
CALL 0x0014d119
LEA RDX,[0x174c9c]
LEA RDI,[RSP + 0xd0]
MOV RSI,R14
CALL 0x00... |
int8 verify_receipt_proof(long param_1)
{
long lVar1;
void *pvVar2;
char cVar3;
uint uVar4;
int iVar5;
int8 uVar6;
char *pcVar7;
int4 uVar8;
int1 *puVar9;
uint local_228 [2];
void *local_220;
long local_218;
uint local_210 [2];
void *local_208;
long local_200;
int4 local_1f8 [2];
lon... |
Subsets and Splits
C++ Functions With Standard Library Dependencies
Identifies C++ functions that depend on standard library components, revealing patterns in how developers utilize STL libraries and potentially highlighting common coding practices or dependencies in the dataset.
C++ Standard Library Function Analysis
Filters C++ code examples that use standard library containers and types, providing useful insights into common programming patterns and data structures in the dataset.
Random Training Function Samples
Performs basic filtering and random sampling of assembly code data without revealing meaningful patterns or relationships.
Random Training Function Samples
Retrieves a random sample of 1000 records from the training dataset, providing basic data exploration but offering limited analytical value beyond seeing raw entries.