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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
61,900 | translog_enable_purge | eloqsql/storage/maria/ma_loghandler.c | void translog_enable_purge()
{
mysql_mutex_lock(&log_descriptor.purger_lock);
log_purge_disabled--;
mysql_mutex_unlock(&log_descriptor.purger_lock);
} | O3 | c | translog_enable_purge:
pushq %rbp
movq %rsp, %rbp
cmpq $0x0, 0xb9ad08(%rip) # 0xc09900
jne 0x6ec25
leaq 0xb9acbf(%rip), %rdi # 0xc098c0
callq 0x291d0
decl 0x398c04(%rip) # 0x407810
movq 0xb9aced(%rip), %rdi # 0xc09900
testq %rdi, %rdi
jne 0x6ec2c
leaq 0xb9aca1(%rip), %rdi # 0xc098c0
popq %rbp
jmp 0... | translog_enable_purge:
push rbp
mov rbp, rsp
cmp cs:qword_C09900, 0
jnz short loc_6EC25
lea rdi, unk_C098C0
call _pthread_mutex_lock
loc_6EC06:
dec cs:log_purge_disabled
mov rdi, cs:qword_C09900
test rdi, rdi
jnz short loc_6EC2C
loc_6EC18:
lea rdi, unk_C098C0
pop rbp
jmp ... | long long translog_enable_purge()
{
if ( qword_C09900 )
translog_enable_purge_cold_1();
else
pthread_mutex_lock(&unk_C098C0);
--log_purge_disabled;
if ( qword_C09900 )
PSI_server[44]();
return pthread_mutex_unlock(&unk_C098C0);
}
| translog_enable_purge:
PUSH RBP
MOV RBP,RSP
CMP qword ptr [0x00d09900],0x0
JNZ 0x0016ec25
LEA RDI,[0xd098c0]
CALL 0x001291d0
LAB_0016ec06:
DEC dword ptr [0x00507810]
MOV RDI,qword ptr [0x00d09900]
TEST RDI,RDI
JNZ 0x0016ec2c
LAB_0016ec18:
LEA RDI,[0xd098c0]
POP RBP
JMP 0x001291a0
LAB_0016ec25:
CALL 0x0012d245
JMP 0x001... |
void translog_enable_purge(void)
{
if (DAT_00d09900 == 0) {
pthread_mutex_lock((pthread_mutex_t *)&DAT_00d098c0);
}
else {
translog_enable_purge_cold_1();
}
log_purge_disabled = log_purge_disabled + -1;
if (DAT_00d09900 != 0) {
(**(code **)(PSI_server + 0x160))();
}
pthread_mutex_unlock((p... | |
61,901 | test_if_hard_path | eloqsql/mysys/my_getwd.c | int test_if_hard_path(register const char *dir_name)
{
if (dir_name[0] == FN_HOMELIB && dir_name[1] == FN_LIBCHAR)
return (home_dir != NullS && test_if_hard_path(home_dir));
if (dir_name[0] == FN_LIBCHAR)
return (TRUE);
#ifdef FN_DEVCHAR
return (strchr(dir_name,FN_DEVCHAR) != 0);
#else
return FALSE;
#en... | O0 | c | test_if_hard_path:
pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movq %rdi, -0x10(%rbp)
movq -0x10(%rbp), %rax
movsbl (%rax), %eax
cmpl $0x7e, %eax
jne 0x7cf8c
movq -0x10(%rbp), %rax
movsbl 0x1(%rax), %eax
cmpl $0x2f, %eax
jne 0x7cf8c
xorl %eax, %eax
leaq 0x3c888a(%rip), %rcx # 0x4457e8
cmpq $0x0, (%rcx)
movb %al, -0x... | test_if_hard_path:
push rbp
mov rbp, rsp
sub rsp, 20h
mov [rbp+var_10], rdi
mov rax, [rbp+var_10]
movsx eax, byte ptr [rax]
cmp eax, 7Eh ; '~'
jnz short loc_7CF8C
mov rax, [rbp+var_10]
movsx eax, byte ptr [rax+1]
cmp eax, 2Fh ; '/'
jnz short loc_7CF8C
xor eax, eax
lea ... | _BOOL8 test_if_hard_path(char *a1)
{
bool v2; // [rsp+Fh] [rbp-11h]
if ( *a1 == 126 && a1[1] == 47 )
{
v2 = 0;
if ( home_dir )
return (unsigned int)test_if_hard_path(home_dir) != 0;
return v2;
}
else
{
return *a1 == 47;
}
}
| test_if_hard_path:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x20
MOV qword ptr [RBP + -0x10],RDI
MOV RAX,qword ptr [RBP + -0x10]
MOVSX EAX,byte ptr [RAX]
CMP EAX,0x7e
JNZ 0x0017cf8c
MOV RAX,qword ptr [RBP + -0x10]
MOVSX EAX,byte ptr [RAX + 0x1]
CMP EAX,0x2f
JNZ 0x0017cf8c
XOR EAX,EAX
LEA RCX,[0x5457e8]
CMP qword ptr [RCX],0x0
MOV ... |
bool test_if_hard_path(char *param_1)
{
int iVar1;
bool local_19;
if ((*param_1 == '~') && (param_1[1] == '/')) {
local_19 = false;
if (home_dir != 0) {
iVar1 = test_if_hard_path(home_dir);
local_19 = iVar1 != 0;
}
}
else if (*param_1 == '/') {
local_19 = true;
}
else {
... | |
61,902 | test_if_hard_path | eloqsql/mysys/my_getwd.c | int test_if_hard_path(register const char *dir_name)
{
if (dir_name[0] == FN_HOMELIB && dir_name[1] == FN_LIBCHAR)
return (home_dir != NullS && test_if_hard_path(home_dir));
if (dir_name[0] == FN_LIBCHAR)
return (TRUE);
#ifdef FN_DEVCHAR
return (strchr(dir_name,FN_DEVCHAR) != 0);
#else
return FALSE;
#en... | O3 | c | test_if_hard_path:
pushq %rbp
movq %rsp, %rbp
leaq 0x3aae7b(%rip), %rax # 0x40b7d8
movq (%rax), %rax
movb (%rdi), %cl
cmpb $0x7e, %cl
jne 0x60979
cmpb $0x2f, 0x1(%rdi)
jne 0x60979
movq %rax, %rdi
testq %rax, %rax
jne 0x60960
xorl %eax, %eax
jmp 0x60981
xorl %eax, %eax
cmpb $0x2f, %cl
sete %al
popq %rbp
retq
| test_if_hard_path:
push rbp
mov rbp, rsp
lea rax, home_dir
mov rax, [rax]
loc_60960:
mov cl, [rdi]
cmp cl, 7Eh ; '~'
jnz short loc_60979
cmp byte ptr [rdi+1], 2Fh ; '/'
jnz short loc_60979
mov rdi, rax
test rax, rax
jnz short loc_60960
xor eax, eax
jmp short loc_609... | _BOOL8 test_if_hard_path(_BYTE *a1)
{
while ( *a1 == 126 && a1[1] == 47 )
{
a1 = (_BYTE *)home_dir;
if ( !home_dir )
return 0LL;
}
return *a1 == 47;
}
| test_if_hard_path:
PUSH RBP
MOV RBP,RSP
LEA RAX,[0x50b7d8]
MOV RAX,qword ptr [RAX]
LAB_00160960:
MOV CL,byte ptr [RDI]
CMP CL,0x7e
JNZ 0x00160979
CMP byte ptr [RDI + 0x1],0x2f
JNZ 0x00160979
MOV RDI,RAX
TEST RAX,RAX
JNZ 0x00160960
XOR EAX,EAX
JMP 0x00160981
LAB_00160979:
XOR EAX,EAX
CMP CL,0x2f
SETZ AL
LAB_00160981:
PO... |
bool test_if_hard_path(char *param_1)
{
while ((*param_1 == '~' && (param_1[1] == '/'))) {
param_1 = home_dir;
if (home_dir == (char *)0x0) {
return false;
}
}
return *param_1 == '/';
}
| |
61,903 | ftxui::(anonymous namespace)::Frame::SetBox(ftxui::Box) | Andrewchistyakov[P]flashcards_lyc/build_O1/_deps/ftxui-src/src/ftxui/dom/frame.cpp | void SetBox(Box box) override {
Node::SetBox(box);
auto& selected_box = requirement_.selected_box;
Box children_box = box;
if (x_frame_) {
const int external_dimx = box.x_max - box.x_min;
const int internal_dimx = std::max(requirement_.min_x, external_dimx);
const int focused_dimx = s... | O1 | cpp | ftxui::(anonymous namespace)::Frame::SetBox(ftxui::Box):
pushq %r15
pushq %r14
pushq %rbx
movq %rdx, %rbx
movq %rsi, %r14
movq %rdi, %r15
callq 0x24194
movq %r14, %rax
shrq $0x20, %rax
cmpb $0x1, 0x5c(%r15)
jne 0x3968f
subl %r14d, %eax
movl 0x20(%r15), %ecx
movl 0x3c(%r15), %edx
cmpl %eax, %ecx
cmovlel %eax, %ecx
movl ... | _ZN5ftxui12_GLOBAL__N_15Frame6SetBoxENS_3BoxE:
push r15
push r14
push rbx
mov rbx, rdx
mov r14, rsi
mov r15, rdi
call _ZN5ftxui4Node6SetBoxENS_3BoxE; ftxui::Node::SetBox(ftxui::Box)
mov rax, r14
shr rax, 20h
cmp byte ptr [r15+5Ch], 1
jnz short loc_3968F
sub eax, r14d
mov ... | long long ftxui::`anonymous namespace'::Frame::SetBox(long long a1, unsigned long long a2, long long a3)
{
unsigned long long v3; // rbx
unsigned int v4; // r14d
unsigned long long v6; // rax
int v7; // eax
int v8; // ecx
int v9; // edi
int v10; // eax
int v11; // edx
int v12; // edx
int v13; // ec... | SetBox:
PUSH R15
PUSH R14
PUSH RBX
MOV RBX,RDX
MOV R14,RSI
MOV R15,RDI
CALL 0x00124194
MOV RAX,R14
SHR RAX,0x20
CMP byte ptr [R15 + 0x5c],0x1
JNZ 0x0013968f
SUB EAX,R14D
MOV ECX,dword ptr [R15 + 0x20]
MOV EDX,dword ptr [R15 + 0x3c]
CMP ECX,EAX
CMOVLE ECX,EAX
MOV ESI,dword ptr [R15 + 0x40]
SUB ESI,EDX
MOV EDI,EAX
SHR ED... |
/* ftxui::(anonymous namespace)::Frame::SetBox(ftxui::Box) */
void ftxui::(anonymous_namespace)::Frame::SetBox(long param_1,ulong param_2,int8 param_3)
{
uint uVar1;
int iVar2;
uint uVar3;
ulong uVar4;
int iVar5;
int iVar6;
Node::SetBox();
uVar4 = param_2 >> 0x20;
if (*(char *)(param_1 + 0x5c) =... | |
61,904 | 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 | void push_back(const typename object_t::value_type& val)
{
// push_back only works for null objects or objects
if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_object())))
{
JSON_THROW(type_error::create(308, detail::concat("cannot use push_back() with ", type_name()), this));
... | O2 | 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_IhSaIhEEvE9push_backERKSt4pairIKS9_SD_E:
push rbp; char
push r14; int
push rbx; int
sub rsp, 30h
mov rbx, rsi
mov r14, rdi
movzx eax, byte ptr [r... | long long nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,std::vector,std::string,bool,long,unsigned long,double,std::allocator,nlohmann::json_abi_v3_11_3::adl_serializer,std::vector<unsigned char>,void>::push_back(
long long a1,
long long a2)
{
nlohmann::json_abi_v3_11... | push_back:
PUSH RBP
PUSH R14
PUSH RBX
SUB RSP,0x30
MOV RBX,RSI
MOV R14,RDI
MOVZX EAX,byte ptr [RDI]
TEST EAX,EAX
JNZ 0x00189421
MOV byte ptr [R14],0x1
CALL 0x0013e1fe
MOV qword ptr [R14 + 0x8],RAX
PUSH 0x1
POP RSI
MOV RDI,R14
CALL 0x0013e106
JMP 0x00189426
LAB_00189421:
CMP EAX,0x1
JNZ 0x0018943a
LAB_00189426:
MOV RDI,... |
/* nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector,
std::__cxx11::string, bool, long, unsigned long, double, std::allocator,
nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned
char> >, void>::push_back(std::pair<std::__cxx... | |
61,905 | 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 | void push_back(const typename object_t::value_type& val)
{
// push_back only works for null objects or objects
if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_object())))
{
JSON_THROW(type_error::create(308, detail::concat("cannot use push_back() with ", type_name()), this));
... | 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_IhSaIhEEvE9push_backERKSt4pairIKS9_SD_E:
push rbp; char
push r14; int
push rbx; __int64
sub rsp, 30h
mov rbx, rsi
mov r14, rdi
movzx eax, byte pt... | long long nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,std::vector,std::string,bool,long,unsigned long,double,std::allocator,nlohmann::json_abi_v3_11_3::adl_serializer,std::vector<unsigned char>,void>::push_back(
long long a1,
long long a2)
{
long long v2; // rax
n... | push_back:
PUSH RBP
PUSH R14
PUSH RBX
SUB RSP,0x30
MOV RBX,RSI
MOV R14,RDI
MOVZX EAX,byte ptr [RDI]
TEST EAX,EAX
JNZ 0x001b9098
MOV byte ptr [R14],0x1
MOV EDI,0x20
CALL 0x0011a8d0
XORPS XMM0,XMM0
MOVUPS xmmword ptr [RAX],XMM0
MOV qword ptr [RAX + 0x10],0x0
MOV qword ptr [R14 + 0x8],RAX
MOV RDI,R14
MOV ESI,0x1
CALL 0x00... |
/* nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector,
std::__cxx11::string, bool, long, unsigned long, double, std::allocator,
nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned
char> >, void>::push_back(std::pair<std::__cxx... | |
61,906 | plutovg_canvas_add_text | dmazzella[P]pylunasvg/lunasvg/plutovg/source/plutovg-canvas.c | float plutovg_canvas_add_text(plutovg_canvas_t* canvas, const void* text, int length, plutovg_text_encoding_t encoding, float x, float y)
{
plutovg_state_t* state = canvas->state;
if(state->font_face == NULL || state->font_size <= 0.f)
return 0.f;
plutovg_text_iterator_t it;
plutovg_text_iterato... | O1 | c | plutovg_canvas_add_text:
pushq %r15
pushq %r14
pushq %rbx
subq $0x30, %rsp
movq 0x18(%rdi), %r15
cmpq $0x0, 0x8(%r15)
je 0x242c1
xorps %xmm2, %xmm2
ucomiss 0x88(%r15), %xmm2
jae 0x242c4
movq %rdi, %rbx
leaq 0x18(%rsp), %r14
movq %r14, %rdi
movss %xmm1, 0x14(%rsp)
movss %xmm0, 0x10(%rsp)
callq 0x244c4
movq %r14, %rdi
ca... | plutovg_canvas_add_text:
push r15
push r14
push rbx
sub rsp, 30h
mov r15, [rdi+18h]
cmp qword ptr [r15+8], 0
jz loc_242C1
xorps xmm2, xmm2
ucomiss xmm2, dword ptr [r15+88h]
jnb loc_242C4
mov rbx, rdi
lea r14, [rsp+48h+var_30]
mov rdi, r14
movss [rsp+48h+var_34], xmm1
movss ... | __int128 __usercall plutovg_canvas_add_text@<xmm0>(
long long a1@<rdi>,
long long a2@<rsi>,
long long a3@<rdx>,
long long a4@<rcx>,
float a5@<xmm0>,
float a6@<xmm1>)
{
long long v6; // r15
__int128 v7; // xmm2
unsigned int v8; // eax
float v9; // xmm0_4
double v... | plutovg_canvas_add_text:
PUSH R15
PUSH R14
PUSH RBX
SUB RSP,0x30
MOV R15,qword ptr [RDI + 0x18]
CMP qword ptr [R15 + 0x8],0x0
JZ 0x001242c1
XORPS XMM2,XMM2
UCOMISS XMM2,dword ptr [R15 + 0x88]
JNC 0x001242c4
MOV RBX,RDI
LEA R14,[RSP + 0x18]
MOV RDI,R14
MOVSS dword ptr [RSP + 0x14],XMM1
MOVSS dword ptr [RSP + 0x10],XMM0
... |
float plutovg_canvas_add_text(float param_1,int4 param_2,long param_3)
{
long lVar1;
char cVar2;
int4 uVar3;
float fVar4;
float local_3c;
int1 local_30 [24];
lVar1 = *(long *)(param_3 + 0x18);
if (*(long *)(lVar1 + 8) == 0) {
local_3c = 0.0;
}
else {
local_3c = 0.0;
if (0.0 < *(floa... | |
61,907 | my_b_append | eloqsql/mysys/mf_iocache.c | int my_b_append(IO_CACHE *info, const uchar *Buffer, size_t Count)
{
size_t rest_length,length;
MEM_CHECK_DEFINED(Buffer, Count);
/*
Assert that we cannot come here with a shared cache. If we do one
day, we might need to add a call to copy_to_read_buffer().
*/
DBUG_ASSERT(!info->share);
DBUG_ASSER... | O0 | c | my_b_append:
pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
jmp 0xb86a6
jmp 0xb86a8
jmp 0xb86aa
movq -0x10(%rbp), %rdi
addq $0x50, %rdi
leaq 0xb5377(%rip), %rsi # 0x16da30
movl $0x62b, %edx # imm = 0x62B
callq 0xb83f0
movq -0x10(%rbp), %ra... | my_b_append:
push rbp
mov rbp, rsp
sub rsp, 30h
mov [rbp+var_10], rdi
mov [rbp+var_18], rsi
mov [rbp+var_20], rdx
jmp short $+2
loc_B86A6:
jmp short $+2
loc_B86A8:
jmp short $+2
loc_B86AA:
mov rdi, [rbp+var_10]
add rdi, 50h ; 'P'
lea rsi, aWorkspaceLlm4b_1; "/workspace/llm... | long long my_b_append(long long a1, long long a2, unsigned long long a3)
{
long long v4; // [rsp+0h] [rbp-30h]
unsigned long long v5; // [rsp+8h] [rbp-28h]
long long v7; // [rsp+18h] [rbp-18h]
v7 = a2;
inline_mysql_mutex_lock_0(a1 + 80, (long long)"/workspace/llm4binary/github2025/eloqsql/mysys/mf_iocache.c... | my_b_append:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x30
MOV qword ptr [RBP + -0x10],RDI
MOV qword ptr [RBP + -0x18],RSI
MOV qword ptr [RBP + -0x20],RDX
JMP 0x001b86a6
LAB_001b86a6:
JMP 0x001b86a8
LAB_001b86a8:
JMP 0x001b86aa
LAB_001b86aa:
MOV RDI,qword ptr [RBP + -0x10]
ADD RDI,0x50
LEA RSI,[0x26da30]
MOV EDX,0x62b
CALL 0x001b8... |
int4 my_b_append(long param_1,void *param_2,ulong param_3)
{
int iVar1;
ulong uVar2;
long lVar3;
size_t local_28;
void *local_20;
inline_mysql_mutex_lock
(param_1 + 0x50,"/workspace/llm4binary/github2025/eloqsql/mysys/mf_iocache.c",0x62b);
uVar2 = *(long *)(param_1 + 0x48) - *(long *)(par... | |
61,908 | js_std_file_seek | bluesky950520[P]quickjs/quickjs-libc.c | static JSValue js_std_file_seek(JSContext *ctx, JSValue this_val,
int argc, JSValue *argv)
{
FILE *f = js_std_file_get(ctx, this_val);
int64_t pos;
int whence, ret;
if (!f)
return JS_EXCEPTION;
if (JS_ToInt64Ext(ctx, &pos, argv[0]))
return JS_EXCEPTION... | O0 | c | js_std_file_seek:
subq $0x78, %rsp
movq %rsi, 0x38(%rsp)
movq %rdx, 0x40(%rsp)
movq %rdi, 0x30(%rsp)
movl %ecx, 0x2c(%rsp)
movq %r8, 0x20(%rsp)
movq 0x30(%rsp), %rdi
movq 0x38(%rsp), %rsi
movq 0x40(%rsp), %rdx
callq 0x19d70
movq %rax, 0x18(%rsp)
cmpq $0x0, 0x18(%rsp)
jne 0x191a3
movl $0x0, 0x48(%rsp)
movq $0x6, 0x50(%r... | js_std_file_seek:
sub rsp, 78h
mov [rsp+78h+var_40], rsi
mov [rsp+78h+var_38], rdx
mov [rsp+78h+var_48], rdi
mov [rsp+78h+var_4C], ecx
mov [rsp+78h+var_58], r8
mov rdi, [rsp+78h+var_48]
mov rsi, [rsp+78h+var_40]
mov rdx, [rsp+78h+var_38]
call js_std_file_get
mov [rsp+78h+var_6... | long long js_std_file_seek(long long a1, long long a2, long long a3, int a4, _QWORD *a5)
{
int v6; // [rsp+8h] [rbp-70h]
unsigned int v7; // [rsp+Ch] [rbp-6Ch] BYREF
long long v8; // [rsp+10h] [rbp-68h] BYREF
long long v9; // [rsp+18h] [rbp-60h]
_QWORD *v10; // [rsp+20h] [rbp-58h]
int v11; // [rsp+2Ch] [rb... | js_std_file_seek:
SUB RSP,0x78
MOV qword ptr [RSP + 0x38],RSI
MOV qword ptr [RSP + 0x40],RDX
MOV qword ptr [RSP + 0x30],RDI
MOV dword ptr [RSP + 0x2c],ECX
MOV qword ptr [RSP + 0x20],R8
MOV RDI,qword ptr [RSP + 0x30]
MOV RSI,qword ptr [RSP + 0x38]
MOV RDX,qword ptr [RSP + 0x40]
CALL 0x00119d70
MOV qword ptr [RSP + 0x18]... |
int1 [16]
js_std_file_seek(int8 param_1,int8 param_2,int8 param_3,int4 param_4,
int8 *param_5)
{
int1 auVar1 [16];
int iVar2;
int *piVar3;
int local_70;
int local_6c;
__off_t local_68;
FILE *local_60;
int8 *local_58;
int4 local_4c;
int8 local_48;
int8 local_40;
int8 local_38;
... | |
61,909 | inline_mysql_start_statement(PSI_statement_locker_state_v1*, unsigned int, char const*, unsigned long, charset_info_st const*, PSI_sp_share*, char const*, unsigned int) | eloqsql/include/mysql/psi/mysql_statement.h | static inline struct PSI_statement_locker *
inline_mysql_start_statement(PSI_statement_locker_state *state,
PSI_statement_key key,
const char *db, size_t db_len,
CHARSET_INFO *charset,
PSI_sp_share *sp_sh... | O0 | c | inline_mysql_start_statement(PSI_statement_locker_state_v1*, unsigned int, char const*, unsigned long, charset_info_st const*, PSI_sp_share*, char const*, unsigned int):
pushq %rbp
movq %rsp, %rbp
subq $0x40, %rsp
movl 0x18(%rbp), %eax
movq 0x10(%rbp), %rax
movq %rdi, -0x8(%rbp)
movl %esi, -0xc(%rbp)
movq %rdx, -0x18(%... | _ZL28inline_mysql_start_statementP29PSI_statement_locker_state_v1jPKcmPK15charset_info_stP12PSI_sp_shareS2_j_3:
push rbp
mov rbp, rsp
sub rsp, 40h
mov eax, [rbp+arg_8]
mov rax, [rbp+arg_0]
mov [rbp+var_8], rdi
mov [rbp+var_C], esi
mov [rbp+var_18], rdx
mov [rbp+var_20], rcx
mov [r... | long long inline_mysql_start_statement(
long long a1,
unsigned int a2,
long long a3,
unsigned int a4,
long long a5,
long long a6,
long long a7,
unsigned int a8)
{
long long v9; // [rsp+8h] [rbp-38h]
v9 = ((long long ( *)(long long, _QWORD, long long,... | ~Item_func_soundex:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV qword ptr [RBP + -0x8],RDI
MOV RDI,qword ptr [RBP + -0x8]
MOV qword ptr [RBP + -0x10],RDI
CALL 0x00aa6150
MOV RDI,qword ptr [RBP + -0x10]
MOV ESI,0xc8
CALL 0x005b7780
ADD RSP,0x10
POP RBP
RET
|
/* Item_func_soundex::~Item_func_soundex() */
void __thiscall Item_func_soundex::~Item_func_soundex(Item_func_soundex *this)
{
~Item_func_soundex(this);
Item::operator_delete(this,200);
return;
}
| |
61,910 | ggml_compute_forward_add1_f32 | Yangxiaoz[P]GGML-Tutorial/ggml/src/ggml-cpu/ggml-cpu.c | static void ggml_compute_forward_add1_f32(
const struct ggml_compute_params * params,
struct ggml_tensor * dst) {
const struct ggml_tensor * src0 = dst->src[0];
const struct ggml_tensor * src1 = dst->src[1];
GGML_ASSERT(ggml_are_same_shape(src0, dst));
GGML_ASSERT(ggml_is_scalar(src1))... | O0 | c | ggml_compute_forward_add1_f32:
pushq %rbp
movq %rsp, %rbp
subq $0xd0, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x10(%rbp), %rax
movq 0x98(%rax), %rax
movq %rax, -0x18(%rbp)
movq -0x10(%rbp), %rax
movq 0xa0(%rax), %rax
movq %rax, -0x20(%rbp)
movq -0x18(%rbp), %rdi
movq -0x10(%rbp), %rsi
callq 0xe260
testb... | ggml_compute_forward_add1_f32:
push rbp
mov rbp, rsp
sub rsp, 0D0h
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov rax, [rbp+var_10]
mov rax, [rax+98h]
mov [rbp+var_18], rax
mov rax, [rbp+var_10]
mov rax, [rax+0A0h]
mov [rbp+var_20], rax
mov rdi, [rbp+var_18]
mov rsi, [... | long long ggml_compute_forward_add1_f32(int *a1, _QWORD *a2)
{
long long result; // rax
int v5; // [rsp+0h] [rbp-D0h]
int v6; // [rsp+4h] [rbp-CCh]
int v7; // [rsp+8h] [rbp-C8h]
int v8; // [rsp+Ch] [rbp-C4h]
int i; // [rsp+10h] [rbp-C0h]
int v10; // [rsp+1Ch] [rbp-B4h]
long long v11; // [rsp+20h] [rbp-... | ggml_compute_forward_add1_f32:
PUSH RBP
MOV RBP,RSP
SUB RSP,0xd0
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV RAX,qword ptr [RBP + -0x10]
MOV RAX,qword ptr [RAX + 0x98]
MOV qword ptr [RBP + -0x18],RAX
MOV RAX,qword ptr [RBP + -0x10]
MOV RAX,qword ptr [RAX + 0xa0]
MOV qword ptr [RBP + -0x20],RAX
MO... |
void ggml_compute_forward_add1_f32(int *param_1,long param_2)
{
long lVar1;
long lVar2;
long lVar3;
long lVar4;
long lVar5;
long lVar6;
long lVar7;
long lVar8;
long lVar9;
long lVar10;
long lVar11;
int iVar12;
int iVar13;
int iVar14;
ulong uVar15;
int local_d8;
int local_c8;
lVa... | |
61,911 | mult | eloqsql/strings/dtoa.c | static Bigint *mult(Bigint *a, Bigint *b, Stack_alloc *alloc)
{
Bigint *c;
int k, wa, wb, wc;
ULong *x, *xa, *xae, *xb, *xbe, *xc, *xc0;
ULong y;
ULLong carry, z;
if (a->wds < b->wds)
{
c= a;
a= b;
b= c;
}
k= a->k;
wa= a->wds;
wb= b->wds;
wc= wa + wb;
if (wc > a->maxwds)
k++;
... | O0 | c | mult:
pushq %rbp
movq %rsp, %rbp
subq $0x90, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq -0x8(%rbp), %rax
movl 0x14(%rax), %eax
movq -0x10(%rbp), %rcx
cmpl 0x14(%rcx), %eax
jge 0xc3b8f
movq -0x8(%rbp), %rax
movq %rax, -0x20(%rbp)
movq -0x10(%rbp), %rax
movq %rax, -0x8(%rbp)
movq -0x20(... | mult_0:
push rbp
mov rbp, rsp
sub rsp, 90h
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov [rbp+var_18], rdx
mov rax, [rbp+var_8]
mov eax, [rax+14h]
mov rcx, [rbp+var_10]
cmp eax, [rcx+14h]
jge short loc_C3B8F
mov rax, [rbp+var_8]
mov [rbp+var_20], rax
mov rax, [rbp... | long long mult_0(unsigned int **a1, unsigned int **a2, long long a3)
{
unsigned int *v3; // rax
unsigned int *v4; // rax
_DWORD *v5; // rax
long long v6; // rax
char v8; // [rsp+Fh] [rbp-81h]
unsigned long long v9; // [rsp+10h] [rbp-80h]
unsigned long long v10; // [rsp+18h] [rbp-78h]
unsigned int v11; ... | mult:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x90
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV qword ptr [RBP + -0x18],RDX
MOV RAX,qword ptr [RBP + -0x8]
MOV EAX,dword ptr [RAX + 0x14]
MOV RCX,qword ptr [RBP + -0x10]
CMP EAX,dword ptr [RCX + 0x14]
JGE 0x001c3b8f
MOV RAX,qword ptr [RBP + -0x8]
MOV qword ptr ... |
long * mult(int8 *param_1,int8 *param_2,int8 param_3)
{
int iVar1;
int iVar2;
uint uVar3;
uint *puVar4;
uint *puVar5;
long *plVar6;
int4 *puVar7;
ulong uVar8;
uint *puVar9;
uint *puVar10;
bool bVar11;
ulong local_80;
uint *local_70;
uint *local_68;
uint *local_58;
uint *local_40;
int... | |
61,912 | flatbuffers::FlatBufferBuilder::EndTable(unsigned int) | mnn-tts/MNN/3rd_party/flatbuffers/include/flatbuffers/flatbuffers.h | uoffset_t EndTable(uoffset_t start) {
// If you get this assert, a corresponding StartTable wasn't called.
FLATBUFFERS_ASSERT(nested);
// Write the vtable offset, which is the start of any Table.
// We fill it's value later.
auto vtableoffsetloc = PushElement<soffset_t>(0);
// Write a vtable, wh... | O0 | c | flatbuffers::FlatBufferBuilder::EndTable(unsigned int):
subq $0x88, %rsp
movq %rdi, 0x80(%rsp)
movl %esi, 0x7c(%rsp)
movq 0x80(%rsp), %rax
movq %rax, 0x20(%rsp)
testb $0x1, 0x46(%rax)
je 0x12e38
jmp 0x12e57
leaq 0x2a7b0(%rip), %rdi # 0x3d5ef
leaq 0x2a723(%rip), %rsi # 0x3d569
movl $0x48f, %edx # imm ... | _ZN11flatbuffers17FlatBufferBuilder8EndTableEj:
sub rsp, 88h
mov [rsp+88h+var_8], rdi
mov dword ptr [rsp+88h+var_10+4], esi
mov rax, [rsp+88h+var_8]
mov [rsp+88h+var_68], rax
test byte ptr [rax+46h], 1
jz short loc_12E38
jmp short loc_12E57
loc_12E38:
lea rdi, aNested+1; "nested"
lea... | long long flatbuffers::FlatBufferBuilder::EndTable(flatbuffers::FlatBufferBuilder *this, int a2)
{
long long v2; // rax
long long v3; // rax
long long v4; // rax
long long v5; // rax
int v6; // eax
long long v7; // rax
_WORD *v9; // [rsp+30h] [rbp-58h]
unsigned int *j; // [rsp+40h] [rbp-48h]
int Size... | EndTable:
SUB RSP,0x88
MOV qword ptr [RSP + 0x80],RDI
MOV dword ptr [RSP + 0x7c],ESI
MOV RAX,qword ptr [RSP + 0x80]
MOV qword ptr [RSP + 0x20],RAX
TEST byte ptr [RAX + 0x46],0x1
JZ 0x00112e38
JMP 0x00112e57
LAB_00112e38:
LEA RDI,[0x13d5ef]
LEA RSI,[0x13d569]
MOV EDX,0x48f
LEA RCX,[0x13d772]
CALL 0x001030c0
LAB_00112e57... |
/* flatbuffers::FlatBufferBuilder::EndTable(unsigned int) */
uint __thiscall flatbuffers::FlatBufferBuilder::EndTable(FlatBufferBuilder *this,uint param_1)
{
uint uVar1;
int4 *puVar2;
ushort uVar3;
int iVar4;
uint uVar5;
ushort *puVar6;
long lVar7;
void *pvVar8;
int4 *puVar9;
uint *puVar10;
uin... | |
61,913 | JS_CompactBigInt1 | bluesky950520[P]quickjs/quickjs.c | static JSValue JS_CompactBigInt1(JSContext *ctx, JSValue val)
{
if (JS_VALUE_GET_TAG(val) != JS_TAG_BIG_INT)
return val; /* fail safe */
bf_t *a = JS_GetBigInt(val);
if (a->expn == BF_EXP_ZERO && a->sign) {
assert(((JSBigInt*)JS_VALUE_GET_PTR(val))->header.ref_count == 1);
a->sign = ... | O2 | c | JS_CompactBigInt1:
movq %rsi, %rdx
movq %rdi, %rax
cmpq $-0x9, %rsi
jne 0x372c9
xorl %ecx, %ecx
cmpq 0x18(%rax), %rcx
jno 0x372c9
cmpl $0x0, 0x10(%rax)
je 0x372c9
andl $0x0, 0x10(%rax)
retq
| JS_CompactBigInt1:
mov rdx, rsi
mov rax, rdi
cmp rsi, 0FFFFFFFFFFFFFFF7h
jnz short locret_372C9
xor ecx, ecx
cmp rcx, [rax+18h]
jno short locret_372C9
cmp dword ptr [rax+10h], 0
jz short locret_372C9
and dword ptr [rax+10h], 0
locret_372C9:
retn
| long long JS_CompactBigInt1(long long a1, long long a2)
{
long long result; // rax
result = a1;
if ( a2 == -9 && __OFSUB__(0LL, *(_QWORD *)(a1 + 24)) )
{
if ( *(_DWORD *)(a1 + 16) )
*(_DWORD *)(a1 + 16) = 0;
}
return result;
}
| JS_CompactBigInt1:
MOV RDX,RSI
MOV RAX,RDI
CMP RSI,-0x9
JNZ 0x001372c9
XOR ECX,ECX
CMP RCX,qword ptr [RAX + 0x18]
JNO 0x001372c9
CMP dword ptr [RAX + 0x10],0x0
JZ 0x001372c9
AND dword ptr [RAX + 0x10],0x0
LAB_001372c9:
RET
|
/* WARNING: Removing unreachable block (ram,0x001372bf) */
/* WARNING: Removing unreachable block (ram,0x001372c5) */
void JS_CompactBigInt1(void)
{
return;
}
| |
61,914 | minja::Parser::parseMathPlusMinus() | monkey531[P]llama/common/./minja.hpp | std::shared_ptr<Expression> parseMathPlusMinus() {
static std::regex plus_minus_tok(R"(\+|-(?![}%#]\}))");
auto left = parseMathMulDiv();
if (!left) throw std::runtime_error("Expected left side of 'math plus/minus' expression");
std::string op_str;
while (!(op_str = consumeToken... | O3 | cpp | minja::Parser::parseMathPlusMinus():
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x58, %rsp
movq %rsi, %r14
movq %rdi, %rbp
movb 0xb0e52(%rip), %al # 0xf0e60
testb %al, %al
movq %rdi, (%rsp)
je 0x401fa
movq %rbp, %rdi
movq %r14, %rsi
callq 0x4031a
cmpq $0x0, (%rbp)
je 0x40255
leaq 0x48(... | _ZN5minja6Parser18parseMathPlusMinusEv:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 58h
mov r14, rsi
mov rbp, rdi
mov al, cs:_ZGVZN5minja6Parser18parseMathPlusMinusEvE14plus_minus_tokB5cxx11; `guard variable for'minja::Parser::parseMathPlusMinus(void)::plus_minus_tok... | minja::Parser * minja::Parser::parseMathPlusMinus(volatile signed __int32 **this, long long a2)
{
minja::Parser *v2; // rbp
long long v3; // r15
unsigned int v4; // r15d
volatile signed __int32 *v5; // rax
volatile signed __int32 *v6; // r13
volatile signed __int32 *v7; // rdi
std::runtime_error *v9; // r... | parseMathPlusMinus:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x58
MOV R14,RSI
MOV RBP,RDI
MOV AL,byte ptr [0x001f0e60]
TEST AL,AL
MOV qword ptr [RSP],RDI
JZ 0x001401fa
LAB_0014001a:
MOV RDI,RBP
MOV RSI,R14
CALL 0x0014031a
CMP qword ptr [RBP],0x0
JZ 0x00140255
LEA RAX,[RSP + 0x48]
MOV qword ptr [RAX... |
/* minja::Parser::parseMathPlusMinus() */
long * minja::Parser::parseMathPlusMinus(void)
{
_Sp_counted_base<(__gnu_cxx::_Lock_policy)2> *this;
int iVar1;
long lVar2;
int8 *puVar3;
runtime_error *prVar4;
int8 *in_RSI;
long *in_RDI;
long local_80;
_Sp_counted_base<(__gnu_cxx::_Lock_policy)2> *local_7... | |
61,915 | ma_hash_password | eloqsql/libmariadb/libmariadb/ma_password.c | void ma_hash_password(ulong *result, const char *password, size_t len)
{
register ulong nr=1345345333L, add=7, nr2=0x12345671L;
ulong tmp;
const char *password_end= password + len;
for (; password < password_end; password++)
{
if (*password == ' ' || *password == '\t')
continue; /* skip space in p... | O0 | c | ma_hash_password:
pushq %rbp
movq %rsp, %rbp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq $0x50305735, -0x20(%rbp) # imm = 0x50305735
movq $0x7, -0x28(%rbp)
movq $0x12345671, -0x30(%rbp) # imm = 0x12345671
movq -0x10(%rbp), %rax
addq -0x18(%rbp), %rax
movq %rax, -0x40(%rbp)
movq -0x10(%rbp),... | ma_hash_password:
push rbp
mov rbp, rsp
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov [rbp+var_18], rdx
mov [rbp+var_20], 50305735h
mov [rbp+var_28], 7
mov [rbp+var_30], 12345671h
mov rax, [rbp+var_10]
add rax, [rbp+var_18]
mov [rbp+var_40], rax
loc_492E4:
mov rax, [rbp+v... | _QWORD * ma_hash_password(_QWORD *a1, _BYTE *a2, long long a3)
{
_QWORD *result; // rax
long long v4; // [rsp+8h] [rbp-38h]
int v5; // [rsp+10h] [rbp-30h]
long long v6; // [rsp+18h] [rbp-28h]
int v7; // [rsp+20h] [rbp-20h]
_BYTE *v8; // [rsp+30h] [rbp-10h]
v8 = a2;
v7 = 1345345333;
v6 = 7LL;
v5 = 3... | ma_hash_password:
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],0x50305735
MOV qword ptr [RBP + -0x28],0x7
MOV qword ptr [RBP + -0x30],0x12345671
MOV RAX,qword ptr [RBP + -0x10]
ADD RAX,qword ptr [RBP + -0x18]
MOV qword pt... |
void ma_hash_password(ulong *param_1,byte *param_2,long param_3)
{
ulong local_38;
long local_30;
ulong local_28;
byte *local_18;
local_28 = 0x50305735;
local_30 = 7;
local_38 = 0x12345671;
for (local_18 = param_2; local_18 < param_2 + param_3; local_18 = local_18 + 1) {
if ((*local_18 != 0x20)... | |
61,916 | eth_free_codes | corpus-core[P]colibri-stateless/src/chains/eth/verifier/eth_account.c | INTERNAL void eth_free_codes(call_code_t* call_codes) {
while (call_codes) {
call_code_t* next = call_codes->next;
if (call_codes->free) safe_free(call_codes->code.data);
safe_free(call_codes);
call_codes = next;
}
} | O0 | c | eth_free_codes:
pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x8(%rbp)
cmpq $0x0, -0x8(%rbp)
je 0x32949
movq -0x8(%rbp), %rax
movq 0x38(%rax), %rax
movq %rax, -0x10(%rbp)
movq -0x8(%rbp), %rax
testb $0x1, 0x30(%rax)
je 0x32936
movq -0x8(%rbp), %rax
movq 0x28(%rax), %rdi
callq 0x9c5a0
movq -0x8(%rbp), %rdi
ca... | eth_free_codes:
push rbp
mov rbp, rsp
sub rsp, 10h
mov [rbp+var_8], rdi
loc_3290C:
cmp [rbp+var_8], 0
jz short loc_32949
mov rax, [rbp+var_8]
mov rax, [rax+38h]
mov [rbp+var_10], rax
mov rax, [rbp+var_8]
test byte ptr [rax+30h], 1
jz short loc_32936
mov rax, [rbp+var_... | long long eth_free_codes(long long a1)
{
long long result; // rax
long long v2; // [rsp+0h] [rbp-10h]
while ( a1 )
{
v2 = *(_QWORD *)(a1 + 56);
if ( (*(_BYTE *)(a1 + 48) & 1) != 0 )
safe_free(*(_QWORD *)(a1 + 40));
safe_free(a1);
result = v2;
a1 = v2;
}
return result;
}
| eth_free_codes:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV qword ptr [RBP + -0x8],RDI
LAB_0013290c:
CMP qword ptr [RBP + -0x8],0x0
JZ 0x00132949
MOV RAX,qword ptr [RBP + -0x8]
MOV RAX,qword ptr [RAX + 0x38]
MOV qword ptr [RBP + -0x10],RAX
MOV RAX,qword ptr [RBP + -0x8]
TEST byte ptr [RAX + 0x30],0x1
JZ 0x00132936
MOV RAX,qw... |
void eth_free_codes(long param_1)
{
long lVar1;
int8 local_10;
local_10 = param_1;
while (local_10 != 0) {
lVar1 = *(long *)(local_10 + 0x38);
if ((*(byte *)(local_10 + 0x30) & 1) != 0) {
safe_free(*(int8 *)(local_10 + 0x28));
}
safe_free(local_10);
local_10 = lVar1;
}
return;... | |
61,917 | nglog::internal::CheckOpMessageBuilder::CheckOpMessageBuilder(char const*) | ng-log[P]ng-log/src/logging.cc | CheckOpMessageBuilder::CheckOpMessageBuilder(const char* exprtext)
: stream_(new ostringstream) {
*stream_ << exprtext << " (";
} | O1 | cpp | nglog::internal::CheckOpMessageBuilder::CheckOpMessageBuilder(char const*):
pushq %r15
pushq %r14
pushq %rbx
movq %rsi, %r14
movq %rdi, %r15
movl $0x178, %edi # imm = 0x178
callq 0x7530
movq %rax, %rbx
movq %rax, %rdi
callq 0x7760
movq %rbx, (%r15)
testq %r14, %r14
je 0xde56
movq %r14, %rdi
callq 0x71f0
movq... | _ZN5nglog8internal21CheckOpMessageBuilderC2EPKc:
push r15; Alternative name is 'nglog::internal::CheckOpMessageBuilder::CheckOpMessageBuilder(char const*)'
push r14
push rbx
mov r14, rsi
mov r15, rdi
mov edi, 178h; unsigned __int64
call __Znwm; operator new(ulong)
mov rbx, rax
mov rdi, r... | long long nglog::internal::CheckOpMessageBuilder::CheckOpMessageBuilder(
nglog::internal::CheckOpMessageBuilder *this,
const char *a2)
{
_QWORD *v2; // rbx
long long v3; // rax
v2 = (_QWORD *)operator new(0x178uLL);
std::ostringstream::basic_ostringstream(v2);
*(_QWORD *)this = v2;
if ( a2... | CheckOpMessageBuilder:
PUSH R15
PUSH R14
PUSH RBX
MOV R14,RSI
MOV R15,RDI
MOV EDI,0x178
CALL 0x00107530
MOV RBX,RAX
LAB_0010de2e:
MOV RDI,RAX
CALL 0x00107760
LAB_0010de36:
MOV qword ptr [R15],RBX
TEST R14,R14
JZ 0x0010de56
MOV RDI,R14
CALL 0x001071f0
MOV RDI,RBX
MOV RSI,R14
MOV RDX,RAX
CALL 0x00107610
JMP 0x0010de6f
LA... |
/* nglog::internal::CheckOpMessageBuilder::CheckOpMessageBuilder(char const*) */
void __thiscall
nglog::internal::CheckOpMessageBuilder::CheckOpMessageBuilder
(CheckOpMessageBuilder *this,char *param_1)
{
ostringstream *this_00;
size_t sVar1;
this_00 = (ostringstream *)operator_new(0x178);
... | |
61,918 | DiscreteSchedule::get_sigmas(unsigned int) | 7CodeWizard[P]stablediffusion/denoiser.hpp | std::vector<float> get_sigmas(uint32_t n) {
std::vector<float> result;
int t_max = TIMESTEPS - 1;
if (n == 0) {
return result;
} else if (n == 1) {
result.push_back(t_to_sigma((float)t_max));
result.push_back(0);
return result;
}
... | O0 | cpp | DiscreteSchedule::get_sigmas(unsigned int):
subq $0x78, %rsp
movq %rdi, 0x10(%rsp)
movq %rdi, %rax
movq %rax, 0x18(%rsp)
movq %rdi, 0x70(%rsp)
movq %rsi, 0x68(%rsp)
movl %edx, 0x64(%rsp)
movq 0x68(%rsp), %rax
movq %rax, 0x20(%rsp)
movb $0x0, 0x63(%rsp)
callq 0x3e3e0
movl $0x3e7, 0x5c(%rsp) # imm = 0x3E7
cmpl $0x0,... | _ZN16DiscreteSchedule10get_sigmasEj:
sub rsp, 78h
mov [rsp+78h+var_68], rdi
mov rax, rdi
mov [rsp+78h+var_60], rax
mov [rsp+78h+var_8], rdi
mov [rsp+78h+var_10], rsi
mov [rsp+78h+var_14], edx
mov rax, [rsp+78h+var_10]
mov [rsp+78h+var_58], rax
mov [rsp+78h+var_15], 0
call _ZNS... | DiscreteSchedule * DiscreteSchedule::get_sigmas(DiscreteSchedule *this, SigmaSchedule *a2, unsigned int a3)
{
float v3; // xmm0_4
int v5; // [rsp+2Ch] [rbp-4Ch] BYREF
float v6; // [rsp+30h] [rbp-48h] BYREF
float v7; // [rsp+34h] [rbp-44h]
int i; // [rsp+38h] [rbp-40h]
float v9; // [rsp+3Ch] [rbp-3Ch]
int ... | get_sigmas:
SUB RSP,0x78
MOV qword ptr [RSP + 0x10],RDI
MOV RAX,RDI
MOV qword ptr [RSP + 0x18],RAX
MOV qword ptr [RSP + 0x70],RDI
MOV qword ptr [RSP + 0x68],RSI
MOV dword ptr [RSP + 0x64],EDX
MOV RAX,qword ptr [RSP + 0x68]
MOV qword ptr [RSP + 0x20],RAX
MOV byte ptr [RSP + 0x63],0x0
CALL 0x0013e3e0
MOV dword ptr [RSP +... |
/* WARNING: Removing unreachable block (ram,0x0014b71b) */
/* DiscreteSchedule::get_sigmas(unsigned int) */
vector<float,std::allocator<float>> * DiscreteSchedule::get_sigmas(uint param_1)
{
uint in_EDX;
SigmaSchedule *in_RSI;
int4 in_register_0000003c;
vector<float,std::allocator<float>> *this;
float loca... | |
61,919 | DiscreteSchedule::get_sigmas(unsigned int) | 7CodeWizard[P]stablediffusion/denoiser.hpp | std::vector<float> get_sigmas(uint32_t n) {
std::vector<float> result;
int t_max = TIMESTEPS - 1;
if (n == 0) {
return result;
} else if (n == 1) {
result.push_back(t_to_sigma((float)t_max));
result.push_back(0);
return result;
}
... | O1 | cpp | DiscreteSchedule::get_sigmas(unsigned int):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x28, %rsp
movq %rdi, %rbx
xorps %xmm0, %xmm0
movups %xmm0, (%rdi)
movq $0x0, 0x10(%rdi)
testl %edx, %edx
je 0x3b09b
movl %edx, %r15d
movq %rsi, %r14
cmpl $0x1, %edx
jne 0x3af68
movss 0x2ee4(%r14), %xmm1
... | _ZN16DiscreteSchedule10get_sigmasEj:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 28h
mov rbx, rdi
xorps xmm0, xmm0
movups xmmword ptr [rdi], xmm0
mov qword ptr [rdi+10h], 0
test edx, edx
jz loc_3B09B
mov r15d, edx
mov r14, rsi
cmp edx, 1
jnz sh... | DiscreteSchedule * DiscreteSchedule::get_sigmas(DiscreteSchedule *this, long long a2, int a3)
{
float v5; // xmm0_4
float *v6; // rsi
int i; // ebp
__m128 v8; // xmm0
int v9; // r13d
int v10; // eax
float v11; // xmm1_4
float v12; // xmm0_4
float *v13; // rsi
_DWORD *v14; // rsi
float v16; // [rsp... | |||
61,920 | DiscreteSchedule::get_sigmas(unsigned int) | 7CodeWizard[P]stablediffusion/denoiser.hpp | std::vector<float> get_sigmas(uint32_t n) {
std::vector<float> result;
int t_max = TIMESTEPS - 1;
if (n == 0) {
return result;
} else if (n == 1) {
result.push_back(t_to_sigma((float)t_max));
result.push_back(0);
return result;
}
... | O3 | cpp | DiscreteSchedule::get_sigmas(unsigned int):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x28, %rsp
movq %rdi, %rbx
xorps %xmm0, %xmm0
movups %xmm0, (%rdi)
movq $0x0, 0x10(%rdi)
testl %edx, %edx
je 0x3a48d
movl %edx, %r15d
movq %rsi, %r14
cmpl $0x1, %edx
jne 0x3a388
movss 0x2ee4(%r14), %xmm1
... | _ZN16DiscreteSchedule10get_sigmasEj:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 28h
mov rbx, rdi
xorps xmm0, xmm0
movups xmmword ptr [rdi], xmm0
mov qword ptr [rdi+10h], 0
test edx, edx
jz loc_3A48D
mov r15d, edx
mov r14, rsi
cmp edx, 1
jnz sh... | DiscreteSchedule * DiscreteSchedule::get_sigmas(DiscreteSchedule *this, long long a2, int a3)
{
float v5; // xmm0_4
_DWORD *v6; // rsi
int i; // ebp
__m128 v8; // xmm0
int v9; // r13d
int v10; // eax
float v11; // xmm1_4
float v12; // xmm0_4
float *v13; // rsi
float v15; // [rsp+4h] [rbp-54h] BYREF
... | |||
61,921 | nlohmann::json_abi_v3_11_3::detail::lexer<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::vecto... | monkey531[P]llama/common/./json.hpp | bool scan_comment()
{
switch (get())
{
// single-line comments skip input until a newline or EOF is read
case '/':
{
while (true)
{
switch (get())
{
case '\n':
... | O1 | cpp | nlohmann::json_abi_v3_11_3::detail::lexer<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::vecto... | _ZN8nlohmann16json_abi_v3_11_36detail5lexerINS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEENS1_22iterator_input_adapterIN9__gnu_cxx17__normal_iteratorIPKcSB_EEEEE12scan_commentEv:
push rbp
push rbx
push rax
mov rbx, r... | char nlohmann::json_abi_v3_11_3::detail::lexer<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,std::vector,std::string,bool,long,unsigned long,double,std::allocator,nlohmann::json_abi_v3_11_3::adl_serializer,std::vector<unsigned char>,void>,nlohmann::json_abi_v3_11_3::detail::iterator_in... | scan_comment:
PUSH RBP
PUSH RBX
PUSH RAX
MOV RBX,RDI
CALL 0x00119de6
CMP EAX,0x2f
JZ 0x00131f43
CMP EAX,0x2a
JNZ 0x00131f60
LAB_00131f17:
MOV RDI,RBX
CALL 0x00119de6
LEA ECX,[RAX + 0x1]
CMP ECX,0x2
JC 0x00131f69
CMP EAX,0x2a
JNZ 0x00131f17
MOV RDI,RBX
CALL 0x00119de6
CMP EAX,0x2f
JZ 0x00131f5c
MOV RDI,RBX
CALL 0x001328... |
/* nlohmann::json_abi_v3_11_3::detail::lexer<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,
std::vector, std::__cxx11::string, bool, long, unsigned long, double, std::allocator,
nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned
char... | |
61,922 | nlohmann::json_abi_v3_11_3::detail::invalid_iterator nlohmann::json_abi_v3_11_3::detail::invalid_iterator::create<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... | monkey531[P]llama/common/json.hpp | static invalid_iterator create(int id_, const std::string& what_arg, BasicJsonContext context)
{
const std::string w = concat(exception::name("invalid_iterator", id_), exception::diagnostics(context), what_arg);
return {id_, w.c_str()};
} | O3 | cpp | nlohmann::json_abi_v3_11_3::detail::invalid_iterator nlohmann::json_abi_v3_11_3::detail::invalid_iterator::create<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... | _ZN8nlohmann16json_abi_v3_11_36detail16invalid_iterator6createIPNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEETnNSt9enable_ifIXsr21is_basic_json_contextIT_EE5valueEiE4typeELi0EEES2_iRKSC_SJ_:
push rbp
push r15
push r14
p... | nlohmann::json_abi_v3_11_3::detail::exception * ZN8nlohmann16json_abi_v3_11_36detail16invalid_iterator6createIPNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEETnNSt9enable_ifIXsr21is_basic_json_contextIT_EE5valueEiE4typeELi0EEES2_i... | _ZN8nlohmann16json_abi_v3_11_36detail16invalid_iterator6createIPNS0_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
P... |
exception *
_ZN8nlohmann16json_abi_v3_11_36detail16invalid_iterator6createIPNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEETnNSt9enable_ifIXsr21is_basic_json_contextIT_EE5valueEiE4typeELi0EEES2_iRKSC_SJ_
(exception *par... | |
61,923 | ft_init_nlq_search | eloqsql/storage/myisam/ft_nlq_search.c | FT_INFO *ft_init_nlq_search(MI_INFO *info, uint keynr, uchar *query,
uint query_len, uint flags, uchar *record)
{
TREE wtree;
ALL_IN_ONE aio;
FT_DOC *dptr;
FT_INFO *dlist=NULL;
my_off_t saved_lastpos=info->lastpos;
struct st_mysql_ftparser *parser;
MYSQL_FTPARSER_PARAM *ftparser_pa... | O3 | c | ft_init_nlq_search:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x5b8, %rsp # imm = 0x5B8
movq %r9, -0x50(%rbp)
movl %r8d, -0x2c(%rbp)
movl %ecx, %r12d
movq %rdx, %r15
movq %rdi, %rbx
movq 0x170(%rdi), %r14
callq 0x859b8
testl %eax, %eax
js 0x7482c
movl %eax, %r13d... | ft_init_nlq_search:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 5B8h
mov [rbp+var_50], r9
mov [rbp+var_2C], r8d
mov r12d, ecx
mov r15, rdx
mov rbx, rdi
mov r14, [rdi+170h]
call _mi_check_index
test eax, eax
js loc_7482C
mov ... | long long ft_init_nlq_search(
long long *a1,
long long a2,
long long a3,
unsigned int a4,
int a5,
long long a6,
double a7)
{
long long v9; // r14
int v10; // eax
unsigned int v11; // r13d
long long v12; // r14
long long v13; // rax
long long v14; // r... | ft_init_nlq_search:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x5b8
MOV qword ptr [RBP + -0x50],R9
MOV dword ptr [RBP + -0x2c],R8D
MOV R12D,ECX
MOV R15,RDX
MOV RBX,RDI
MOV R14,qword ptr [RDI + 0x170]
CALL 0x001859b8
TEST EAX,EAX
JS 0x0017482c
MOV R13D,EAX
MOV qword ptr [RBP + -0x48],R14
... |
int8 *
ft_init_nlq_search(long *param_1,int8 param_2,int8 param_3,int4 param_4,
uint param_5,int8 param_6)
{
int8 uVar1;
uint uVar2;
int iVar3;
long lVar4;
int8 *puVar5;
int8 *puVar6;
ulong uVar7;
ulong uVar8;
int1 local_5d8 [568];
int1 local_3a0 [96];
long *local_340;
uint l... | |
61,924 | ma_alloc_dynamic | eloqsql/libmariadb/libmariadb/ma_array.c | unsigned char *ma_alloc_dynamic(DYNAMIC_ARRAY *array)
{
if (array->elements == array->max_element)
{
char *new_ptr;
if (!(new_ptr=(char*) realloc(array->buffer,(array->max_element+
array->alloc_increment)*
array->size_of_element)))
return 0;
array->buffer=new_ptr;
array->ma... | O3 | c | ma_alloc_dynamic:
pushq %rbp
movq %rsp, %rbp
pushq %rbx
pushq %rax
movq %rdi, %rbx
movl 0x8(%rdi), %eax
movq (%rdi), %rdi
cmpl 0xc(%rbx), %eax
jne 0x34a71
addl 0x10(%rbx), %eax
imull 0x14(%rbx), %eax
movq %rax, %rsi
callq 0x13730
testq %rax, %rax
je 0x34a85
movq %rax, %rdi
movq %rax, (%rbx)
movl 0x8(%rbx), %eax
movl 0x... | ma_alloc_dynamic:
push rbp
mov rbp, rsp
push rbx
push rax
mov rbx, rdi
mov eax, [rdi+8]
mov rdi, [rdi]
cmp eax, [rbx+0Ch]
jnz short loc_34A71
add eax, [rbx+10h]
imul eax, [rbx+14h]
mov rsi, rax
call _realloc
test rax, rax
jz short loc_34A85
mov rdi, rax
mov ... | long long ma_alloc_dynamic(long long a1)
{
int v2; // eax
long long v3; // rdi
long long v4; // rax
v2 = *(_DWORD *)(a1 + 8);
v3 = *(_QWORD *)a1;
if ( v2 == *(_DWORD *)(a1 + 12) )
{
v4 = realloc(v3, (unsigned int)(*(_DWORD *)(a1 + 20) * (*(_DWORD *)(a1 + 16) + v2)));
if ( !v4 )
return 0LL;... | ma_alloc_dynamic:
PUSH RBP
MOV RBP,RSP
PUSH RBX
PUSH RAX
MOV RBX,RDI
MOV EAX,dword ptr [RDI + 0x8]
MOV RDI,qword ptr [RDI]
CMP EAX,dword ptr [RBX + 0xc]
JNZ 0x00134a71
ADD EAX,dword ptr [RBX + 0x10]
IMUL EAX,dword ptr [RBX + 0x14]
MOV RSI,RAX
CALL 0x00113730
TEST RAX,RAX
JZ 0x00134a85
MOV RDI,RAX
MOV qword ptr [RBX],RA... |
long ma_alloc_dynamic(int8 *param_1)
{
int iVar1;
void *__ptr;
iVar1 = *(int *)(param_1 + 1);
__ptr = (void *)*param_1;
if (iVar1 == *(int *)((long)param_1 + 0xc)) {
__ptr = realloc(__ptr,(ulong)(uint)((iVar1 + *(int *)(param_1 + 2)) *
*(int *)((long)param_1 + 0... | |
61,925 | ResultCaptureNode::prep(std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::any, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> co... | The-Pocket[P]PocketFlow-CPP/main.cpp | int prep(Context& ctx) override {
// Get value from context, provide default if missing
auto it = ctx.find("currentValue");
if (it != ctx.end()) {
try {
return std::any_cast<int>(it->second);
} catch(const std::bad_any_cast& ) {
// Ha... | O1 | cpp | ResultCaptureNode::prep(std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::any, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> co... | _ZN17ResultCaptureNode4prepERSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt3anySt4lessIS6_ESaISt4pairIKS6_S7_EEE:
push r15
push r14
push rbx
sub rsp, 20h
mov r14, rsi
lea rbx, [rsp+38h+var_28]
mov [rbx-10h], rbx
lea rsi, aCurrentvalue; "currentValue"
lea rdx, aCurrentvalu... | long long ResultCaptureNode::prep(long long a1, long long a2)
{
long long v2; // r15
unsigned int v3; // ebx
unsigned int *v4; // rax
void *v6[2]; // [rsp+0h] [rbp-38h] BYREF
_QWORD v7[5]; // [rsp+10h] [rbp-28h] BYREF
v6[0] = v7;
std::string::_M_construct<char const*>(v6, "currentValue", (long long)"");... | prep:
PUSH R15
PUSH R14
PUSH RBX
SUB RSP,0x20
MOV R14,RSI
LEA RBX,[RSP + 0x10]
MOV qword ptr [RBX + -0x10],RBX
LAB_001106d3:
LEA RSI,[0x111130]
LEA RDX,[0x11113c]
MOV RDI,RSP
CALL 0x001090e4
LAB_001106e9:
MOV RSI,RSP
MOV RDI,R14
CALL 0x00110f22
MOV R15,RAX
MOV RDI,qword ptr [RSP]
CMP RDI,RBX
JZ 0x0011070d
MOV RSI,qword... |
/* ResultCaptureNode::prep(std::map<std::__cxx11::string, std::any, std::less<std::__cxx11::string
>, std::allocator<std::pair<std::__cxx11::string const, std::any> > >&) */
int4 __thiscall ResultCaptureNode::prep(ResultCaptureNode *this,map *param_1)
{
map *pmVar1;
int4 *puVar2;
int4 uVar3;
int1 auVar4 [... | |
61,926 | ResultCaptureNode::prep(std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::any, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> co... | The-Pocket[P]PocketFlow-CPP/main.cpp | int prep(Context& ctx) override {
// Get value from context, provide default if missing
auto it = ctx.find("currentValue");
if (it != ctx.end()) {
try {
return std::any_cast<int>(it->second);
} catch(const std::bad_any_cast& ) {
// Ha... | O2 | cpp | ResultCaptureNode::prep(std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::any, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> co... | _ZN17ResultCaptureNode4prepERSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt3anySt4lessIS6_ESaISt4pairIKS6_S7_EEE:
push r15
push r14
push rbx
sub rsp, 30h
mov r14, rsi
lea rsi, aCurrentvalue; "currentValue"
lea rdi, [rsp+48h+var_38]
lea rdx, [rsp+48h+var_39]
call _ZNSt7__cx... | long long ResultCaptureNode::prep(long long a1, long long a2)
{
long long v2; // r15
unsigned int v3; // ebx
_QWORD v5[7]; // [rsp+10h] [rbp-38h] BYREF
std::string::basic_string<std::allocator<char>>(v5, (long long)"currentValue");
v2 = std::_Rb_tree<std::string,std::pair<std::string const,std::any>,std::_S... | prep:
PUSH R15
PUSH R14
PUSH RBX
SUB RSP,0x30
MOV R14,RSI
LAB_0010d204:
LEA RSI,[0x10e114]
LEA RDI,[RSP + 0x10]
LEA RDX,[RSP + 0xf]
CALL 0x001061be
LAB_0010d21a:
LEA RSI,[RSP + 0x10]
MOV RDI,R14
CALL 0x0010d8cc
MOV R15,RAX
LEA RDI,[RSP + 0x10]
CALL 0x001050e0
ADD R14,0x8
MOV EBX,0xfffffc19
CMP R15,R14
JZ 0x0010d250
ADD... |
/* ResultCaptureNode::prep(std::map<std::__cxx11::string, std::any, std::less<std::__cxx11::string
>, std::allocator<std::pair<std::__cxx11::string const, std::any> > >&) */
int __thiscall ResultCaptureNode::prep(ResultCaptureNode *this,map *param_1)
{
int iVar1;
map *pmVar2;
allocator local_39;
string lo... | |
61,927 | ResultCaptureNode::prep(std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::any, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> co... | The-Pocket[P]PocketFlow-CPP/main.cpp | int prep(Context& ctx) override {
// Get value from context, provide default if missing
auto it = ctx.find("currentValue");
if (it != ctx.end()) {
try {
return std::any_cast<int>(it->second);
} catch(const std::bad_any_cast& ) {
// Ha... | O3 | cpp | ResultCaptureNode::prep(std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::any, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>>, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> co... | _ZN17ResultCaptureNode4prepERSt3mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt3anySt4lessIS6_ESaISt4pairIKS6_S7_EEE:
push r15
push r14
push rbx
sub rsp, 20h
mov r14, rsi
lea rbx, [rsp+38h+var_28]
mov [rbx-10h], rbx
lea rsi, aCurrentvalue; "currentValue"
lea rdx, aCurrentvalu... | long long ResultCaptureNode::prep(long long a1, long long a2)
{
long long v2; // r15
unsigned int v3; // ebx
unsigned int *v4; // rax
void *v6[2]; // [rsp+0h] [rbp-38h] BYREF
_QWORD v7[5]; // [rsp+10h] [rbp-28h] BYREF
v6[0] = v7;
std::string::_M_construct<char const*>((long long)v6, "currentValue", (lon... | prep:
PUSH R15
PUSH R14
PUSH RBX
SUB RSP,0x20
MOV R14,RSI
LEA RBX,[RSP + 0x10]
MOV qword ptr [RBX + -0x10],RBX
LAB_001105f1:
LEA RSI,[0x111130]
LEA RDX,[0x11113c]
MOV RDI,RSP
CALL 0x00109030
LAB_00110607:
MOV RSI,RSP
MOV RDI,R14
CALL 0x00110e88
MOV R15,RAX
MOV RDI,qword ptr [RSP]
CMP RDI,RBX
JZ 0x0011062b
MOV RSI,qword... |
/* ResultCaptureNode::prep(std::map<std::__cxx11::string, std::any, std::less<std::__cxx11::string
>, std::allocator<std::pair<std::__cxx11::string const, std::any> > >&) */
int4 __thiscall ResultCaptureNode::prep(ResultCaptureNode *this,map *param_1)
{
map *pmVar1;
int4 *puVar2;
int4 uVar3;
int1 auVar4 [... | |
61,928 | google::protobuf::io::CopyingInputStreamAdaptor::CopyingInputStreamAdaptor(google::protobuf::io::CopyingInputStream*, int) | aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/io/zero_copy_stream_impl_lite.cc | CopyingInputStreamAdaptor::CopyingInputStreamAdaptor(
CopyingInputStream* copying_stream, int block_size)
: copying_stream_(copying_stream),
owns_copying_stream_(false),
failed_(false),
position_(0),
buffer_size_(block_size > 0 ? block_size : kDefaultBlockSize),
buffer_used_(0),
... | O3 | cpp | google::protobuf::io::CopyingInputStreamAdaptor::CopyingInputStreamAdaptor(google::protobuf::io::CopyingInputStream*, int):
leaq 0x17f003(%rip), %rax # 0x27b878
movq %rax, (%rdi)
movq %rsi, 0x8(%rdi)
movw $0x0, 0x10(%rdi)
testl %edx, %edx
movl $0x2000, %eax # imm = 0x2000
cmovgl %edx, %eax
xorps %xmm0, %xm... | _ZN6google8protobuf2io25CopyingInputStreamAdaptorC2EPNS1_18CopyingInputStreamEi:
lea rax, off_27B878
mov [rdi], rax
mov [rdi+8], rsi
mov word ptr [rdi+10h], 0
test edx, edx
mov eax, 2000h
cmovg eax, edx
xorps xmm0, xmm0
movups xmmword ptr [rdi+18h], xmm0
mov [rdi+28h], eax
mov qword ... | long long google::protobuf::io::CopyingInputStreamAdaptor::CopyingInputStreamAdaptor(
google::protobuf::io::CopyingInputStreamAdaptor *this,
google::protobuf::io::CopyingInputStream *a2,
int a3)
{
long long result; // rax
*(_QWORD *)this = off_27B878;
*((_QWORD *)this + 1) = a2;
*((_WO... | CopyingInputStreamAdaptor:
LEA RAX,[0x37b878]
MOV qword ptr [RDI],RAX
MOV qword ptr [RDI + 0x8],RSI
MOV word ptr [RDI + 0x10],0x0
TEST EDX,EDX
MOV EAX,0x2000
CMOVG EAX,EDX
XORPS XMM0,XMM0
MOVUPS xmmword ptr [RDI + 0x18],XMM0
MOV dword ptr [RDI + 0x28],EAX
MOV qword ptr [RDI + 0x2c],0x0
RET
|
/* google::protobuf::io::CopyingInputStreamAdaptor::CopyingInputStreamAdaptor(google::protobuf::io::CopyingInputStream*,
int) */
void __thiscall
google::protobuf::io::CopyingInputStreamAdaptor::CopyingInputStreamAdaptor
(CopyingInputStreamAdaptor *this,CopyingInputStream *param_1,int param_2)
{
int iV... | |
61,929 | handler::disable_pushed_rowid_filter() | eloqsql/sql/handler.h | virtual void disable_pushed_rowid_filter()
{
DBUG_ASSERT(pushed_rowid_filter != NULL &&
save_pushed_rowid_filter == NULL);
save_pushed_rowid_filter= pushed_rowid_filter;
if (rowid_filter_is_active)
save_rowid_filter_is_active= rowid_filter_is_active;
pushed_rowid_filter= NULL;
rowid_... | O0 | c | handler::disable_pushed_rowid_filter():
pushq %rbp
movq %rsp, %rbp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x10(%rbp)
jmp 0x9102
movq -0x10(%rbp), %rax
movq 0x430(%rax), %rcx
movq %rcx, 0x440(%rax)
testb $0x1, 0x438(%rax)
je 0x9130
movq -0x10(%rbp), %rax
movb 0x438(%rax), %cl
andb $0x1, %cl
movb %cl, 0x... | _ZN7handler27disable_pushed_rowid_filterEv:
push rbp
mov rbp, rsp
mov [rbp+var_8], rdi
mov rax, [rbp+var_8]
mov [rbp+var_10], rax
jmp short $+2
loc_9102:
mov rax, [rbp+var_10]
mov rcx, [rax+430h]
mov [rax+440h], rcx
test byte ptr [rax+438h], 1
jz short loc_9130
mov rax, [r... | handler * handler::disable_pushed_rowid_filter(handler *this)
{
handler *result; // rax
*((_QWORD *)this + 136) = *((_QWORD *)this + 134);
if ( (*((_BYTE *)this + 1080) & 1) != 0 )
*((_BYTE *)this + 1096) = *((_BYTE *)this + 1080) & 1;
result = this;
*((_QWORD *)this + 134) = 0LL;
*((_BYTE *)this + 108... | disable_pushed_rowid_filter:
PUSH RBP
MOV RBP,RSP
MOV qword ptr [RBP + -0x8],RDI
MOV RAX,qword ptr [RBP + -0x8]
MOV qword ptr [RBP + -0x10],RAX
JMP 0x00109102
LAB_00109102:
MOV RAX,qword ptr [RBP + -0x10]
MOV RCX,qword ptr [RAX + 0x430]
MOV qword ptr [RAX + 0x440],RCX
TEST byte ptr [RAX + 0x438],0x1
JZ 0x00109130
MOV R... |
/* handler::disable_pushed_rowid_filter() */
void __thiscall handler::disable_pushed_rowid_filter(handler *this)
{
*(int8 *)(this + 0x440) = *(int8 *)(this + 0x430);
if (((byte)this[0x438] & 1) != 0) {
this[0x448] = (handler)((byte)this[0x438] & 1);
}
*(int8 *)(this + 0x430) = 0;
this[0x438] = (handler... | |
61,930 | LexGetStringConstant | navaro[P]qoraal-tictactoe/build_O3/_deps/qoraal_engine-src/src/tool/lex.c | enum LexToken LexGetStringConstant(struct LexState *Lexer, struct Value *Value, char EndChar)
{
char *AccBuf = NULL; /* Accumulated buffer for the final merged string */
size_t AccAllocated = 0; /* How many bytes we've allocated for AccBuf so far */
size_t AccUsed = 0; /* How man... | O3 | c | LexGetStringConstant:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x38, %rsp
movq %rdi, %r14
movq (%rdi), %rbx
movq 0x8(%rdi), %r15
cmpq %r15, %rbx
je 0x89cf
movl %edx, %r12d
movq %rsi, -0x58(%rbp)
xorl %r13d, %r13d
movq $0x0, -0x48(%rbp)
xorl %edi, %edi
movq %r13, -0x30(%rbp... | LexGetStringConstant:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 38h
mov r14, rdi
mov rbx, [rdi]
mov r15, [rdi+8]
cmp rbx, r15
jz loc_89CF
mov r12d, edx
mov [rbp+var_58], rsi
xor r13d, r13d
mov [rbp+var_48], 0
xor edi, e... | long long LexGetStringConstant(long long a1, long long a2, char a3, signed long long a4)
{
char *v5; // rbx
char *v6; // r15
long long v8; // r13
long long v9; // rdi
BOOL v10; // eax
char *v11; // r13
char *v12; // rdx
long long v13; // rax
char *v14; // r15
long long v15; // rbx
char *v16; // r... | LexGetStringConstant:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x38
MOV R14,RDI
MOV RBX,qword ptr [RDI]
MOV R15,qword ptr [RDI + 0x8]
CMP RBX,R15
JZ 0x001089cf
MOV R12D,EDX
MOV qword ptr [RBP + -0x58],RSI
XOR R13D,R13D
MOV qword ptr [RBP + -0x48],0x0
XOR EDI,EDI
LAB_001087ce:
MOV qword ... |
int8 LexGetStringConstant(long *param_1,int8 param_2,byte param_3)
{
byte *pbVar1;
void *pvVar2;
int1 uVar3;
int iVar4;
int1 *puVar5;
ulong uVar6;
void *__dest;
ushort **ppuVar7;
byte bVar8;
long lVar9;
ulong uVar10;
byte *pbVar11;
byte *pbVar12;
byte *pbVar13;
size_t __n;
bool bVar14;... | |
61,931 | nlohmann::json_abi_v3_11_3::detail::iteration_proxy_value<nlohmann::json_abi_v3_11_3::detail::iter_impl<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::all... | monkey531[P]llama/common/json.hpp | ~iteration_proxy_value() = default; | O1 | cpp | nlohmann::json_abi_v3_11_3::detail::iteration_proxy_value<nlohmann::json_abi_v3_11_3::detail::iter_impl<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::all... | _ZN8nlohmann16json_abi_v3_11_36detail21iteration_proxy_valueINS1_9iter_implIKNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEEEEED2Ev:
push rbx
mov rbx, rdi
mov rdi, [rdi+50h]; void *
lea rax, [rbx+60h]
cmp rdi, r... | void nlohmann::json_abi_v3_11_3::detail::iteration_proxy_value<nlohmann::json_abi_v3_11_3::detail::iter_impl<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,std::vector,std::string,bool,long,unsigned long,double,std::allocator,nlohmann::json_abi_v3_11_3::adl_serializer,std::vector<unsign... | ~iteration_proxy_value:
PUSH RBX
MOV RBX,RDI
MOV RDI,qword ptr [RDI + 0x50]
LEA RAX,[RBX + 0x60]
CMP RDI,RAX
JZ 0x001afce4
MOV RSI,qword ptr [RAX]
INC RSI
CALL 0x0011b910
LAB_001afce4:
MOV RDI,qword ptr [RBX + 0x30]
ADD RBX,0x40
CMP RDI,RBX
JZ 0x001afcfd
MOV RSI,qword ptr [RBX]
INC RSI
POP RBX
JMP 0x0011b910
LAB_001afc... |
/* nlohmann::json_abi_v3_11_3::detail::iteration_proxy_value<nlohmann::json_abi_v3_11_3::detail::iter_impl<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,
std::vector, std::__cxx11::string, bool, long, unsigned long, double, std::allocator,
nlohmann::json_abi_v3_11_3::adl_serializ... | |
61,932 | my_charpos_utf16 | eloqsql/strings/ctype-ucs2.c | static size_t
my_charpos_utf16(CHARSET_INFO *cs,
const char *b, const char *e, size_t pos)
{
const char *b0= b;
uint charlen;
for ( ; pos; b+= charlen, pos--)
{
if (!(charlen= my_ismbchar(cs, b, e)))
return (e + 2 - b0); /* Error, return pos outside the string */
}
return (size... | O3 | c | my_charpos_utf16:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movq %rsi, %rbx
movq %rsi, %r12
testq %rcx, %rcx
je 0x4f4c9
movq %rcx, %r15
movq %rdx, %r14
movq %rdi, %r13
movq %rbx, %r12
movq 0xb8(%r13), %rax
movq %r13, %rdi
movq %r12, %rsi
movq %r14, %rdx
callq *0xc0(%ra... | my_charpos_utf16:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
push rax
mov rbx, rsi
mov r12, rsi
test rcx, rcx
jz short loc_4F4C9
mov r15, rcx
mov r14, rdx
mov r13, rdi
mov r12, rbx
loc_4F49B:
mov rax, [r13+0B8h]
mov rdi, r13
mov ... | long long my_charpos_utf16(long long a1, long long a2, long long a3, long long a4)
{
long long v4; // r12
long long v5; // r15
int v7; // eax
v4 = a2;
if ( a4 )
{
v5 = a4;
v4 = a2;
while ( 1 )
{
v7 = (*(long long ( **)(long long, long long, long long))(*(_QWORD *)(a1 + 184) + 192LL))... | my_charpos_utf16:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV RBX,RSI
MOV R12,RSI
TEST RCX,RCX
JZ 0x0014f4c9
MOV R15,RCX
MOV R14,RDX
MOV R13,RDI
MOV R12,RBX
LAB_0014f49b:
MOV RAX,qword ptr [R13 + 0xb8]
MOV RDI,R13
MOV RSI,R12
MOV RDX,R14
CALL qword ptr [RAX + 0xc0]
CMP EAX,0x1
JLE 0x0... |
long my_charpos_utf16(long param_1,long param_2,long param_3,long param_4)
{
uint uVar1;
long lVar2;
lVar2 = param_2;
if (param_4 != 0) {
do {
uVar1 = (**(code **)(*(long *)(param_1 + 0xb8) + 0xc0))(param_1,lVar2,param_3);
if ((int)uVar1 < 2) {
lVar2 = param_3 + 2;
break;
... | |
61,933 | Generator::gen_stmt(NodeStmt const*) | BhuvanGudi[P]LexiParse/src/generation.hpp | void gen_stmt(const NodeStmt* stmt)
{
struct StmtVisitor {
Generator& gen;
void operator()(const NodeStmtExit* stmt_exit) const
{
gen.m_output << " ;; exit\n";
gen.gen_expr(stmt_exit->expr);
gen.m_output << " mov rax,... | O0 | cpp | Generator::gen_stmt(NodeStmt const*):
pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x18(%rbp)
movq -0x10(%rbp), %rsi
leaq -0x18(%rbp), %rdi
callq 0x11100
addq $0x20, %rsp
popq %rbp
retq
nopl (%rax,%rax)
| _ZN9Generator8gen_stmtEPK8NodeStmt:
push rbp
mov rbp, rsp
sub rsp, 20h
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov rax, [rbp+var_8]
mov [rbp+var_18], rax
mov rsi, [rbp+var_10]
lea rdi, [rbp+var_18]
call _ZSt5visitIRZN9Generator8gen_stmtEPK8NodeStmtE11StmtVisitorJRKSt7variantIJP1... | long long Generator::gen_stmt(long long a1, long long a2)
{
_QWORD v3[3]; // [rsp+8h] [rbp-18h] BYREF
v3[2] = a1;
v3[1] = a2;
v3[0] = a1;
return std::visit<Generator::gen_stmt(NodeStmt const*)::StmtVisitor &,std::variant<NodeStmtExit *,NodeStmtLet *,NodeScope *,NodeStmtIf *,NodeStmtAssign *> const&>(
... | gen_stmt:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x20
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV RAX,qword ptr [RBP + -0x8]
MOV qword ptr [RBP + -0x18],RAX
MOV RSI,qword ptr [RBP + -0x10]
LEA RDI,[RBP + -0x18]
CALL 0x00111100
ADD RSP,0x20
POP RBP
RET
|
/* Generator::gen_stmt(NodeStmt const*) */
void __thiscall Generator::gen_stmt(Generator *this,NodeStmt *param_1)
{
Generator *local_20;
NodeStmt *local_18;
Generator *local_10;
local_20 = this;
local_18 = param_1;
local_10 = this;
std::
visit<Generator::gen_stmt(NodeStmt_const*)::StmtVisitor&,std... | |
61,934 | get_bool_argument | eloqsql/mysys/my_getopt.c | static my_bool get_bool_argument(const struct my_option *opts,
const char *argument)
{
DBUG_ENTER("get_bool_argument");
if (!my_strcasecmp(&my_charset_latin1, argument, "true") ||
!my_strcasecmp(&my_charset_latin1, argument, "on") ||
!my_strcasecmp(&my_charset_latin1, a... | O0 | c | get_bool_argument:
pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
leaq 0x252319(%rip), %rax # 0x287ae0
movq 0xc0(%rax), %rax
movq 0x40(%rax), %rax
movq -0x18(%rbp), %rsi
leaq 0x252303(%rip), %rdi # 0x287ae0
leaq 0x53fe0(%rip), %rdx # 0x897c4
callq *%rax
cmpl $0x0, %e... | get_bool_argument:
push rbp
mov rbp, rsp
sub rsp, 20h
mov [rbp+var_10], rdi
mov [rbp+var_18], rsi
lea rax, my_charset_latin1
mov rax, [rax+0C0h]
mov rax, [rax+40h]
mov rsi, [rbp+var_18]
lea rdi, my_charset_latin1
lea rdx, aTrue; "true"
call rax
cmp eax, 0
jz short ... | char get_bool_argument(const char **a1, const char *a2)
{
if ( !(*(unsigned int ( **)(void *, const char *, const char *))(*((_QWORD *)&my_charset_latin1 + 24) + 64LL))(
&my_charset_latin1,
a2,
"true")
|| !(*(unsigned int ( **)(void *, const char *, char *))(*((_QWORD *)&my_charset_... | get_bool_argument:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x20
MOV qword ptr [RBP + -0x10],RDI
MOV qword ptr [RBP + -0x18],RSI
LEA RAX,[0x387ae0]
MOV RAX,qword ptr [RAX + 0xc0]
MOV RAX,qword ptr [RAX + 0x40]
MOV RSI,qword ptr [RBP + -0x18]
LEA RDI,[0x387ae0]
LEA RDX,[0x1897c4]
CALL RAX
CMP EAX,0x0
JZ 0x00135841
LEA RAX,[0x387ae0... |
int1 get_bool_argument(int8 *param_1,int8 param_2)
{
int iVar1;
iVar1 = (**(code **)(PTR_my_collation_8bit_simple_ci_handler_00387ba0 + 0x40))
(&my_charset_latin1,param_2,&DAT_001897c4);
if (((iVar1 == 0) ||
(iVar1 = (**(code **)(PTR_my_collation_8bit_simple_ci_handler_00387ba0 + 0x... | |
61,935 | FTB_WORD_cmp_list | eloqsql/storage/myisam/ft_boolean_search.c | static int FTB_WORD_cmp_list(CHARSET_INFO *cs, FTB_WORD **a, FTB_WORD **b)
{
/* ORDER BY word, ndepth */
int i= ha_compare_text(cs, (uchar*) (*a)->word + 1, (*a)->len - 1,
(uchar*) (*b)->word + 1, (*b)->len - 1, 0);
if (!i)
i= CMP_NUM((*a)->ndepth, (*b)->ndepth);
return i;
} | O3 | c | FTB_WORD_cmp_list:
pushq %rbp
movq %rsp, %rbp
pushq %r14
pushq %rbx
movq %rdx, %rbx
movq %rsi, %r14
movq (%rsi), %rsi
movl 0x48(%rsi), %edx
addq $0x4e, %rsi
decl %edx
movq (%rbx), %rcx
movl 0x48(%rcx), %r8d
addq $0x4e, %rcx
decl %r8d
xorl %r9d, %r9d
callq 0xbdd70
testl %eax, %eax
jne 0x8cb36
movq (%r14), %rax
movl 0x44... | FTB_WORD_cmp_list:
push rbp
mov rbp, rsp
push r14
push rbx
mov rbx, rdx
mov r14, rsi
mov rsi, [rsi]
mov edx, [rsi+48h]
add rsi, 4Eh ; 'N'
dec edx
mov rcx, [rbx]
mov r8d, [rcx+48h]
add rcx, 4Eh ; 'N'
dec r8d
xor r9d, r9d
call ha_compare_text
test eax, eax
jn... | long long FTB_WORD_cmp_list(long long a1, long long a2, long long a3)
{
long long result; // rax
unsigned int v5; // eax
bool v6; // cf
BOOL v7; // edx
result = ha_compare_text(
a1,
*(_QWORD *)a2 + 78LL,
(unsigned int)(*(_DWORD *)(*(_QWORD *)a2 + 72LL) - 1),
... | FTB_WORD_cmp_list:
PUSH RBP
MOV RBP,RSP
PUSH R14
PUSH RBX
MOV RBX,RDX
MOV R14,RSI
MOV RSI,qword ptr [RSI]
MOV EDX,dword ptr [RSI + 0x48]
ADD RSI,0x4e
DEC EDX
MOV RCX,qword ptr [RBX]
MOV R8D,dword ptr [RCX + 0x48]
ADD RCX,0x4e
DEC R8D
XOR R9D,R9D
CALL 0x001bdd70
TEST EAX,EAX
JNZ 0x0018cb36
MOV RAX,qword ptr [R14]
MOV EA... |
ulong FTB_WORD_cmp_list(int8 param_1,long *param_2,long *param_3)
{
ulong uVar1;
uVar1 = ha_compare_text(param_1,*param_2 + 0x4e,*(int *)(*param_2 + 0x48) + -1,*param_3 + 0x4e,
*(int *)(*param_3 + 0x48) + -1,0);
if ((int)uVar1 == 0) {
uVar1 = 0xffffffff;
if (*(uint *)(*param... | |
61,936 | trnman_recreate_trn_from_recovery | eloqsql/storage/maria/trnman.c | TRN *trnman_recreate_trn_from_recovery(uint16 shortid, TrID longid)
{
TrID old_trid_generator= global_trid_generator;
TRN *trn;
DBUG_ASSERT(maria_in_recovery && !maria_multi_threaded);
global_trid_generator= longid-1; /* force a correct trid in the new trn */
if (unlikely((trn= trnman_new_trn(NULL)) == NULL))... | O3 | c | trnman_recreate_trn_from_recovery:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %rbx
pushq %rax
movq %rsi, %r14
movl %edi, %ebx
movq 0x3dbe56(%rip), %r15 # 0x407870
leaq -0x1(%rsi), %rax
movq %rax, 0x3dbe4b(%rip) # 0x407870
xorl %edi, %edi
callq 0x5f8f8
testq %rax, %rax
je 0x2ba60
cmpq %r14, %r15
cmovaq... | trnman_recreate_trn_from_recovery:
push rbp
mov rbp, rsp
push r15
push r14
push rbx
push rax
mov r14, rsi
mov ebx, edi
mov r15, cs:global_trid_generator
lea rax, [rsi-1]
mov cs:global_trid_generator, rax
xor edi, edi
call trnman_new_trn
test rax, rax
jz short loc_2B... | long long trnman_recreate_trn_from_recovery(unsigned __int16 a1, unsigned long long a2)
{
long long v2; // r14
unsigned long long v3; // r15
long long result; // rax
long long v5; // rcx
v2 = a2;
v3 = global_trid_generator;
global_trid_generator = a2 - 1;
result = trnman_new_trn(0LL);
if ( result )
... | trnman_recreate_trn_from_recovery:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH RBX
PUSH RAX
MOV R14,RSI
MOV EBX,EDI
MOV R15,qword ptr [0x00507870]
LEA RAX,[RSI + -0x1]
MOV qword ptr [0x00507870],RAX
XOR EDI,EDI
CALL 0x0015f8f8
TEST RAX,RAX
JZ 0x0012ba60
CMP R15,R14
CMOVA R14,R15
MOV qword ptr [0x00507870],R14
MOV RCX,q... |
void trnman_recreate_trn_from_recovery(ushort param_1,ulong param_2)
{
long lVar1;
ulong uVar2;
long lVar3;
uVar2 = global_trid_generator;
global_trid_generator = param_2 - 1;
lVar3 = trnman_new_trn(0);
lVar1 = short_trid_to_active_trn;
if (lVar3 != 0) {
global_trid_generator = param_2;
if ... | |
61,937 | LefDefParser::lefwDensityCheckWindow(double, double) | Efficient-TDP/thirdparty/Limbo/limbo/thirdparty/lefdef/5.8/lef/lef/lefwWriter.cpp | int
lefwDensityCheckWindow(double checkWindowLength,
double checkWindowWidth)
{
lefw54Num = LEFW_DENSITYCHECKWINDOW;
if (!lefwFile)
return LEFW_UNINITIALIZED;
if (versionNum < 5.4)
return LEFW_WRONG_VERSION;
if (lefwWriteEncrypt)
encPrint(lefwFile, (cha... | O0 | cpp | LefDefParser::lefwDensityCheckWindow(double, double):
subq $0x18, %rsp
movsd %xmm0, 0x8(%rsp)
movsd %xmm1, (%rsp)
movl $0x7c, 0x1c933(%rip) # 0x32d4c
leaq 0x1c9e0(%rip), %rax # 0x32e00
cmpq $0x0, (%rax)
jne 0x16433
movl $0x1, 0x14(%rsp)
jmp 0x164bd
movsd 0x12dc5(%rip), %xmm0 # 0x29200
ucomisd 0x1c8fd(%rip), %... | _ZN12LefDefParser22lefwDensityCheckWindowEdd:
sub rsp, 18h
movsd [rsp+18h+var_10], xmm0
movsd [rsp+18h+var_18], xmm1
mov cs:_ZN12LefDefParserL9lefw54NumE, 7Ch ; '|'; LefDefParser::lefw54Num
lea rax, _ZN12LefDefParser8lefwFileE; LefDefParser::lefwFile
cmp qword ptr [rax], 0
jnz short loc_16433
mo... | long long LefDefParser::lefwDensityCheckWindow(
LefDefParser *this,
double a2,
double a3,
long long a4,
int a5,
int a6,
int a7,
int a8)
{
LefDefParser::lefw54Num = 124;
if ( *(_QWORD *)&LefDefParser::lefwFile )
{
if ( *(double *)&LefDefParser::v... | lefwDensityCheckWindow:
SUB RSP,0x18
MOVSD qword ptr [RSP + 0x8],XMM0
MOVSD qword ptr [RSP],XMM1
MOV dword ptr [0x00132d4c],0x7c
LEA RAX,[0x132e00]
CMP qword ptr [RAX],0x0
JNZ 0x00116433
MOV dword ptr [RSP + 0x14],0x1
JMP 0x001164bd
LAB_00116433:
MOVSD XMM0,qword ptr [0x00129200]
UCOMISD XMM0,qword ptr [0x00132d40]
JBE... |
/* LefDefParser::lefwDensityCheckWindow(double, double) */
int4 LefDefParser::lefwDensityCheckWindow(double param_1,double param_2)
{
int4 local_4;
lefw54Num = 0x7c;
if (lefwFile == (_IO_FILE *)0x0) {
local_4 = 1;
}
else if (DAT_00129200 <= versionNum) {
if (lefwWriteEncrypt == 0) {
fprint... | |
61,938 | LefDefParser::lefwDensityCheckWindow(double, double) | Efficient-TDP/thirdparty/Limbo/limbo/thirdparty/lefdef/5.8/lef/lef/lefwWriter.cpp | int
lefwDensityCheckWindow(double checkWindowLength,
double checkWindowWidth)
{
lefw54Num = LEFW_DENSITYCHECKWINDOW;
if (!lefwFile)
return LEFW_UNINITIALIZED;
if (versionNum < 5.4)
return LEFW_WRONG_VERSION;
if (lefwWriteEncrypt)
encPrint(lefwFile, (cha... | O3 | cpp | LefDefParser::lefwDensityCheckWindow(double, double):
movl $0x7c, 0x176d9(%rip) # 0x24d4c
leaq 0x17786(%rip), %rax # 0x24e00
movq (%rax), %rdi
testq %rdi, %rdi
je 0xd6b3
movl $0x5, %eax
movsd 0xba89(%rip), %xmm2 # 0x19118
ucomisd 0x176a9(%rip), %xmm2 # 0x24d40
ja 0xd6d6
pushq %rax
cmpb $0x1, 0x17a4b(%rip)... | _ZN12LefDefParser22lefwDensityCheckWindowEdd:
mov cs:_ZN12LefDefParserL9lefw54NumE, 7Ch ; '|'; LefDefParser::lefw54Num
lea rax, _ZN12LefDefParser8lefwFileE; LefDefParser::lefwFile
mov rdi, [rax]
test rdi, rdi
jz short loc_D6B3
mov eax, 5
movsd xmm2, cs:dbl_19118
ucomisd xmm2, cs:_ZN12LefDefPar... | long long LefDefParser::lefwDensityCheckWindow(
LefDefParser *this,
double a2,
double a3,
long long a4,
int a5,
int a6,
int a7,
int a8)
{
long long result; // rax
LefDefParser::lefw54Num = 124;
if ( !*(_QWORD *)&LefDefParser::lefwFile )
return ... | lefwDensityCheckWindow:
MOV dword ptr [0x00124d4c],0x7c
LEA RAX,[0x124e00]
MOV RDI,qword ptr [RAX]
TEST RDI,RDI
JZ 0x0010d6b3
MOV EAX,0x5
MOVSD XMM2,qword ptr [0x00119118]
UCOMISD XMM2,qword ptr [0x00124d40]
JA 0x0010d6d6
PUSH RAX
CMP byte ptr [0x001250ec],0x1
JNZ 0x0010d6b9
LEA RSI,[0x11afec]
MOV AL,0x2
CALL 0x00118c3... |
/* LefDefParser::lefwDensityCheckWindow(double, double) */
int8 LefDefParser::lefwDensityCheckWindow(double param_1,double param_2)
{
int8 uVar1;
lefw54Num = 0x7c;
if (lefwFile != (_IO_FILE *)0x0) {
uVar1 = 5;
if (DAT_00119118 <= versionNum) {
if (lefwWriteEncrypt == '\x01') {
encPrint... | |
61,939 | js_parse_init | bluesky950520[P]quickjs/quickjs.c | static void js_parse_init(JSContext *ctx, JSParseState *s,
const char *input, size_t input_len,
const char *filename)
{
memset(s, 0, sizeof(*s));
s->ctx = ctx;
s->filename = filename;
s->line_num = 1;
s->col_num = 1;
s->buf_start = s->buf_ptr =... | O0 | c | js_parse_init:
subq $0x38, %rsp
movq %rdi, 0x30(%rsp)
movq %rsi, 0x28(%rsp)
movq %rdx, 0x20(%rsp)
movq %rcx, 0x18(%rsp)
movq %r8, 0x10(%rsp)
movq 0x28(%rsp), %rdi
xorl %esi, %esi
movl $0xa0, %edx
callq 0xe340
movq 0x30(%rsp), %rcx
movq 0x28(%rsp), %rax
movq %rcx, (%rax)
movq 0x10(%rsp), %rcx
movq 0x28(%rsp), %rax
movq ... | js_parse_init:
sub rsp, 38h
mov [rsp+38h+var_8], rdi
mov [rsp+38h+var_10], rsi
mov [rsp+38h+var_18], rdx
mov [rsp+38h+var_20], rcx
mov [rsp+38h+var_28], r8
mov rdi, [rsp+38h+var_10]
xor esi, esi
mov edx, 0A0h
call _memset
mov rcx, [rsp+38h+var_8]
mov rax, [rsp+38h+var_10]
... | long long js_parse_init(long long a1, long long a2, long long a3, long long a4, long long a5)
{
long long result; // rax
long long v6; // [rsp+8h] [rbp-30h]
memset(a2, 0LL, 160LL);
*(_QWORD *)a2 = a1;
*(_QWORD *)(a2 + 24) = a5;
*(_DWORD *)(a2 + 16) = 1;
*(_DWORD *)(a2 + 20) = 1;
*(_QWORD *)(a2 + 112) ... | js_parse_init:
SUB RSP,0x38
MOV qword ptr [RSP + 0x30],RDI
MOV qword ptr [RSP + 0x28],RSI
MOV qword ptr [RSP + 0x20],RDX
MOV qword ptr [RSP + 0x18],RCX
MOV qword ptr [RSP + 0x10],R8
MOV RDI,qword ptr [RSP + 0x28]
XOR ESI,ESI
MOV EDX,0xa0
CALL 0x0010e340
MOV RCX,qword ptr [RSP + 0x30]
MOV RAX,qword ptr [RSP + 0x28]
MOV ... |
void js_parse_init(int8 param_1,int8 *param_2,int8 param_3,ulong param_4,
int8 param_5)
{
long lVar1;
int iVar2;
memset(param_2,0,0xa0);
*param_2 = param_1;
param_2[3] = param_5;
*(int4 *)(param_2 + 2) = 1;
*(int4 *)((long)param_2 + 0x14) = 1;
param_2[0xe] = param_3;
param_2[0xd... | |
61,940 | service_thread_complete | navaro[P]qoraal-tictactoe/build_O3/_deps/qoraal-src/src/svc/svc_services.c | static void
_service_thread_complete(SVC_THREADS_T * service_thread, void* arg)
{
SVC_SERVICE_T* pservice = (SVC_SERVICE_T*) arg ;
os_mutex_lock (&_svc_service_mutex) ;
pservice->status = SVC_SERVICE_STATUS_STOPPED ;
if (pservice->cb) pservice->cb (pservice->service, pservice->cb_parm) ;
pservice->... | O3 | c | service_thread_complete:
pushq %rbp
movq %rsp, %rbp
pushq %r14
pushq %rbx
movq %rsi, %rbx
leaq 0x27416(%rip), %rdi # 0x3eb38
callq 0x14ff0
movl $0x0, 0x54(%rbx)
leaq 0x28(%rbx), %r14
movq 0x28(%rbx), %rax
testq %rax, %rax
je 0x17744
movl 0x5c(%rbx), %edi
movq 0x30(%rbx), %rsi
callq *%rax
xorps %xmm0, %xmm0
movups %... | _service_thread_complete:
push rbp
mov rbp, rsp
push r14
push rbx
mov rbx, rsi
lea rdi, _svc_service_mutex
call os_mutex_lock
mov dword ptr [rbx+54h], 0
lea r14, [rbx+28h]
mov rax, [rbx+28h]
test rax, rax
jz short loc_17744
mov edi, [rbx+5Ch]
mov rsi, [rbx+30h]
call ... | long long service_thread_complete(long long a1, long long a2)
{
void ( *v2)(_QWORD, _QWORD); // rax
os_mutex_lock((long long *)&svc_service_mutex);
*(_DWORD *)(a2 + 84) = 0;
v2 = *(void ( **)(_QWORD, _QWORD))(a2 + 40);
if ( v2 )
v2(*(unsigned int *)(a2 + 92), *(_QWORD *)(a2 + 48));
*(_OWORD *)(a2 + 40... | _service_thread_complete:
PUSH RBP
MOV RBP,RSP
PUSH R14
PUSH RBX
MOV RBX,RSI
LEA RDI,[0x13eb38]
CALL 0x00114ff0
MOV dword ptr [RBX + 0x54],0x0
LEA R14,[RBX + 0x28]
MOV RAX,qword ptr [RBX + 0x28]
TEST RAX,RAX
JZ 0x00117744
MOV EDI,dword ptr [RBX + 0x5c]
MOV RSI,qword ptr [RBX + 0x30]
CALL RAX
LAB_00117744:
XORPS XMM0,XM... |
void _service_thread_complete(int8 param_1,long param_2)
{
os_mutex_lock(&_svc_service_mutex);
*(int4 *)(param_2 + 0x54) = 0;
if (*(code **)(param_2 + 0x28) != (code *)0x0) {
(**(code **)(param_2 + 0x28))(*(int4 *)(param_2 + 0x5c),*(int8 *)(param_2 + 0x30));
}
*(int8 *)(param_2 + 0x28) = 0;
*(int8 *)(... | |
61,941 | maria_ft_get_word | eloqsql/storage/maria/ma_ft_parser.c | uchar maria_ft_get_word(CHARSET_INFO *cs, const uchar **start,
const uchar *end,
FT_WORD *word, MYSQL_FTPARSER_BOOLEAN_INFO *param)
{
const uchar *doc= *start;
int ctype;
uint mwc, length;
int mbl;
param->yesno=(FTB_YES==' ') ? 1 : (param->quot != 0);
param->... | O3 | c | maria_ft_get_word:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x18, %rsp
movq %r8, %rbx
movq %rcx, -0x40(%rbp)
movq %rdx, %r13
movq %rdi, %r14
leaq 0x32b21e(%rip), %rax # 0x38d3c8
movq (%rax), %rax
cmpb $0x20, (%rax)
movl $0x1, %eax
je 0x621c1
xorl %eax, %eax
cmpq $0x0, 0... | maria_ft_get_word:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 18h
mov rbx, r8
mov [rbp+var_40], rcx
mov r13, rdx
mov r14, rdi
lea rax, ft_boolean_syntax
mov rax, [rax]
cmp byte ptr [rax], 20h ; ' '
mov eax, 1
jz short loc_62... | long long maria_ft_get_word(long long a1, _BYTE **a2, unsigned long long a3, long long a4, unsigned int *a5)
{
BOOL v7; // eax
_BYTE *v8; // r15
int v9; // eax
int v10; // ecx
char *v11; // rdx
long long v12; // rsi
long long v13; // rcx
unsigned int v14; // r12d
int v15; // eax
long long v16; // r... | maria_ft_get_word:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x18
MOV RBX,R8
MOV qword ptr [RBP + -0x40],RCX
MOV R13,RDX
MOV R14,RDI
LEA RAX,[0x48d3c8]
MOV RAX,qword ptr [RAX]
CMP byte ptr [RAX],0x20
MOV EAX,0x1
JZ 0x001621c1
XOR EAX,EAX
CMP qword ptr [RBX + 0x10],0x0
SETNZ AL
LAB_001621... |
uint maria_ft_get_word(long param_1,long *param_2,byte *param_3,int *param_4,uint *param_5)
{
byte bVar1;
long lVar2;
int *puVar3;
uint uVar4;
uint uVar5;
int iVar6;
ulong uVar7;
byte *pbVar8;
char cVar9;
byte local_34 [4];
uVar4 = 1;
if (*ft_boolean_syntax != ' ') {
uVar4 = (uint)(*(lo... | |
61,942 | MatrixSubtract | csit-sgu[P]mit-game-2025_1/Libraries/raylib/src/raymath.h | RMAPI Matrix MatrixSubtract(Matrix left, Matrix right)
{
Matrix result = { 0 };
result.m0 = left.m0 - right.m0;
result.m1 = left.m1 - right.m1;
result.m2 = left.m2 - right.m2;
result.m3 = left.m3 - right.m3;
result.m4 = left.m4 - right.m4;
result.m5 = left.m5 - right.m5;
result.m6 = lef... | O0 | c | MatrixSubtract:
pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movq %rdi, -0x10(%rbp)
movq %rdi, %rax
movq %rax, -0x8(%rbp)
leaq 0x50(%rbp), %rax
movq %rax, -0x18(%rbp)
leaq 0x10(%rbp), %rax
movq %rax, -0x20(%rbp)
xorl %esi, %esi
movl $0x40, %edx
callq 0xa2d0
movq -0x20(%rbp), %rdx
movq -0x18(%rbp), %rcx
movq -0x10(%rbp),... | MatrixSubtract:
push rbp
mov rbp, rsp
sub rsp, 20h
mov [rbp+var_10], rdi
mov rax, rdi
mov [rbp+var_8], rax
lea rax, [rbp+arg_40]
mov [rbp+var_18], rax
lea rax, [rbp+arg_0]
mov [rbp+var_20], rax
xor esi, esi
mov edx, 40h ; '@'
call _memset
mov rdx, [rbp+var_20]
mov ... | float * MatrixSubtract(
float *a1,
long long a2,
long long a3,
long long a4,
long long a5,
long long a6,
double a7,
double a8,
double a9,
double a10,
double a11,
double a12,
double a13,
double a14,
do... | MatrixSubtract:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x20
MOV qword ptr [RBP + -0x10],RDI
MOV RAX,RDI
MOV qword ptr [RBP + -0x8],RAX
LEA RAX,[RBP + 0x50]
MOV qword ptr [RBP + -0x18],RAX
LEA RAX,[RBP + 0x10]
MOV qword ptr [RBP + -0x20],RAX
XOR ESI,ESI
MOV EDX,0x40
CALL 0x0010a2d0
MOV RDX,qword ptr [RBP + -0x20]
MOV RCX,qword pt... |
float * MatrixSubtract(float *param_1)
{
float fStack0000000000000008;
float fStack000000000000000c;
float fStack0000000000000010;
float fStack0000000000000014;
float fStack0000000000000018;
float fStack000000000000001c;
float fStack0000000000000020;
float fStack0000000000000024;
float fStack0000000... | |
61,943 | wild_compare | eloqsql/mysys/mf_wcomp.c | int wild_compare(register const char *str, register const char *wildstr,
pbool str_is_pattern)
{
char cmp;
DBUG_ENTER("wild_compare");
while (*wildstr)
{
while (*wildstr && *wildstr != wild_many && *wildstr != wild_one)
{
if (*wildstr == wild_prefix && wildstr[1])
{
wildst... | O3 | c | wild_compare:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movq %rdi, %rbx
movb (%rsi), %dil
testb %dil, %dil
je 0x98227
movq %rsi, %r14
leaq 0x34d0d9(%rip), %rax # 0x3e5218
movb (%rax), %cl
leaq 0x34d0d1(%rip), %rax # 0x3e5219
movb (%rax), %sil
leaq 0x3d056f(%rip),... | wild_compare:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
push rax
mov rbx, rdi
mov dil, [rsi]
test dil, dil
jz loc_98227
mov r14, rsi
lea rax, wild_many
mov cl, [rax]
lea rax, wild_one
mov sil, [rax]
lea rax, wild_prefix
mov al... | long long wild_compare(char *a1, _BYTE *a2, char a3)
{
char v4; // di
_BYTE *v5; // r14
unsigned int v6; // r15d
_BYTE *v7; // r8
bool v8; // r9
char *v9; // r8
char *v10; // rdi
bool v11; // zf
char v12; // r13
bool v13; // di
char *v14; // rdi
char v15; // di
unsigned int v16; // r12d
cha... | wild_compare:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV RBX,RDI
MOV DIL,byte ptr [RSI]
TEST DIL,DIL
JZ 0x00198227
MOV R14,RSI
LEA RAX,[0x4e5218]
MOV CL,byte ptr [RAX]
LEA RAX,[0x4e5219]
MOV SIL,byte ptr [RAX]
LEA RAX,[0x5686c1]
MOV AL,byte ptr [RAX]
MOV R15D,0x1
LAB_0019815a:
CMP DI... |
/* WARNING: Type propagation algorithm not settling */
bool wild_compare(char *param_1,char *param_2,char param_3)
{
char *pcVar1;
char *pcVar2;
char cVar3;
int iVar4;
char cVar5;
char *pcVar6;
bool bVar7;
cVar5 = *param_2;
joined_r0x0019812f:
if (cVar5 == '\0') {
LAB_0019822a:
return *param... | |
61,944 | my_collation_get_by_name | eloqsql/mysys/charset.c | CHARSET_INFO *
my_collation_get_by_name(MY_CHARSET_LOADER *loader,
const char *name, myf flags)
{
uint cs_number;
CHARSET_INFO *cs;
my_pthread_once(&charsets_initialized, init_available_charsets);
cs_number= get_collation_number(name,flags);
my_charset_loader_init_mysys(loader);
cs... | O3 | c | my_collation_get_by_name:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %rbx
subq $0x218, %rsp # imm = 0x218
movq %rdx, %r14
movq %rsi, %rbx
movq %rdi, %r15
movq %fs:0x28, %rax
movq %rax, -0x20(%rbp)
leaq 0xb754bb(%rip), %rdi # 0xc09670
leaq -0x7e1(%rip), %rsi # 0x939db
callq 0x29220
movq %r... | my_collation_get_by_name:
push rbp
mov rbp, rsp
push r15
push r14
push rbx
sub rsp, 218h
mov r14, rdx
mov rbx, rsi
mov r15, rdi
mov rax, fs:28h
mov [rbp+var_20], rax
lea rdi, charsets_initialized
lea rsi, init_available_charsets
call _pthread_once
mov rdi, rbx
mov ... | long long my_collation_get_by_name(long long a1, long long a2, long long a3)
{
unsigned int collation_number; // eax
long long internal_charset; // r15
int v6; // r8d
int v7; // r9d
_BYTE v9[528]; // [rsp+0h] [rbp-230h] BYREF
unsigned long long v10; // [rsp+210h] [rbp-20h]
v10 = __readfsqword(0x28u);
... | my_collation_get_by_name:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH RBX
SUB RSP,0x218
MOV R14,RDX
MOV RBX,RSI
MOV R15,RDI
MOV RAX,qword ptr FS:[0x28]
MOV qword ptr [RBP + -0x20],RAX
LEA RDI,[0xd09670]
LEA RSI,[0x1939db]
CALL 0x00129220
MOV RDI,RBX
MOV RSI,R14
CALL 0x0019392f
MOV byte ptr [R15],0x0
LEA RCX,[0x19320e]
... |
long my_collation_get_by_name(int1 *param_1,int8 param_2,ulong param_3)
{
int iVar1;
long lVar2;
int8 *puVar3;
long in_FS_OFFSET;
int1 local_238 [528];
long local_28;
local_28 = *(long *)(in_FS_OFFSET + 0x28);
pthread_once(&charsets_initialized,init_available_charsets);
iVar1 = get_collation_numb... | |
61,945 | mysql_local_infile_read | eloqsql/libmariadb/libmariadb/ma_loaddata.c | static
int mysql_local_infile_read(void *ptr, char * buf, unsigned int buf_len)
{
MYSQL_INFILE_INFO *info = (MYSQL_INFILE_INFO *)ptr;
size_t count;
count= ma_read((void *)buf, 1, (size_t)buf_len, info->fp);
if (count == (size_t)-1)
{
info->error_no = errno;
snprintf((char *)info->error_msg, sizeof(i... | O3 | c | mysql_local_infile_read:
pushq %rbp
movq %rsp, %rbp
pushq %r14
pushq %rbx
subq $0x10, %rsp
movq %rsi, %rax
movq %rdi, %rbx
movl %edx, %edx
movq (%rdi), %rcx
movl $0x1, %esi
movq %rax, %rdi
callq 0x31a22
movq %rax, %r14
cmpq $-0x1, %rax
jne 0x2b6cb
callq 0x17050
movl (%rax), %eax
movl %eax, 0x8(%rbx)
leaq 0x208c0(%rip),... | mysql_local_infile_read:
push rbp
mov rbp, rsp
push r14
push rbx
sub rsp, 10h
mov rax, rsi
mov rbx, rdi
mov edx, edx
mov rcx, [rdi]
mov esi, 1
mov rdi, rax
call ma_read
mov r14, rax
cmp rax, 0FFFFFFFFFFFFFFFFh
jnz short loc_2B6CB
call ___errno_location
mov ... | long long mysql_local_infile_read(long long a1, long long a2, unsigned int a3)
{
long long v3; // r14
int v4; // eax
v3 = ma_read(a2, 1LL, a3, *(_QWORD *)a1);
if ( v3 == -1 )
{
v4 = *(_DWORD *)__errno_location(a2);
*(_DWORD *)(a1 + 8) = v4;
__snprintf_chk(a1 + 12, 513LL, 1LL, 513LL, mariadb_clie... | mysql_local_infile_read:
PUSH RBP
MOV RBP,RSP
PUSH R14
PUSH RBX
SUB RSP,0x10
MOV RAX,RSI
MOV RBX,RDI
MOV EDX,EDX
MOV RCX,qword ptr [RDI]
MOV ESI,0x1
MOV RDI,RAX
CALL 0x00131a22
MOV R14,RAX
CMP RAX,-0x1
JNZ 0x0012b6cb
CALL 0x00117050
MOV EAX,dword ptr [RAX]
MOV dword ptr [RBX + 0x8],EAX
LEA RCX,[0x14bf60]
MOV R8,qword p... |
ulong mysql_local_infile_read(int8 *param_1,int8 param_2,int4 param_3)
{
int iVar1;
ulong uVar2;
int *piVar3;
uVar2 = ma_read(param_2,1,param_3,*param_1);
if (uVar2 == 0xffffffffffffffff) {
piVar3 = __errno_location();
iVar1 = *piVar3;
*(int *)(param_1 + 1) = iVar1;
__snprintf_chk((long)p... | |
61,946 | ma_tls_init | eloqsql/libmariadb/libmariadb/secure/openssl.c | void *ma_tls_init(MYSQL *mysql)
{
SSL *ssl= NULL;
SSL_CTX *ctx= NULL;
long default_options= SSL_OP_ALL |
SSL_OP_NO_SSLv2 |
SSL_OP_NO_SSLv3;
long options= 0;
pthread_mutex_lock(&LOCK_openssl_config);
#if OPENSSL_VERSION_NUMBER >= 0x10100000L
if (!(ctx= SSL_C... | O0 | c | ma_tls_init:
pushq %rbp
movq %rsp, %rbp
subq $0x40, %rsp
movq %rdi, -0x10(%rbp)
movq $0x0, -0x18(%rbp)
movq $0x0, -0x20(%rbp)
movl $0x82000850, %eax # imm = 0x82000850
movq %rax, -0x28(%rbp)
movq $0x0, -0x30(%rbp)
leaq 0x2c57c(%rip), %rdi # 0x67070
callq 0x13670
callq 0x131f0
movq %rax, %rdi
callq 0x13640
mov... | ma_tls_init:
push rbp
mov rbp, rsp
sub rsp, 40h
mov [rbp+var_10], rdi
mov [rbp+var_18], 0
mov [rbp+var_20], 0
mov eax, 82000850h
mov [rbp+var_28], rax
mov [rbp+var_30], 0
lea rdi, LOCK_openssl_config
call _pthread_mutex_lock
call _TLS_client_method
mov rdi, rax
call _... | long long ma_tls_init(long long a1)
{
long long v1; // rax
long long v3; // [rsp+10h] [rbp-30h]
long long v4; // [rsp+20h] [rbp-20h]
long long v5; // [rsp+28h] [rbp-18h]
v5 = 0LL;
v3 = 0LL;
pthread_mutex_lock(&LOCK_openssl_config);
v1 = TLS_client_method();
v4 = SSL_CTX_new(v1);
if ( !v4 )
got... | ma_tls_init:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x40
MOV qword ptr [RBP + -0x10],RDI
MOV qword ptr [RBP + -0x18],0x0
MOV qword ptr [RBP + -0x20],0x0
MOV EAX,0x82000850
MOV qword ptr [RBP + -0x28],RAX
MOV qword ptr [RBP + -0x30],0x0
LEA RDI,[0x167070]
CALL 0x00113670
CALL 0x001131f0
MOV RDI,RAX
CALL 0x00113640
MOV qword ptr [... |
SSL * ma_tls_init(void *param_1)
{
int iVar1;
SSL_METHOD *meth;
SSL_CTX *ctx;
long local_48;
long local_38;
SSL *local_20;
local_20 = (SSL *)0x0;
local_38 = 0;
pthread_mutex_lock((pthread_mutex_t *)LOCK_openssl_config);
meth = (SSL_METHOD *)TLS_client_method();
ctx = SSL_CTX_new(meth);
if (... | |
61,947 | ma_tls_init | eloqsql/libmariadb/libmariadb/secure/openssl.c | void *ma_tls_init(MYSQL *mysql)
{
SSL *ssl= NULL;
SSL_CTX *ctx= NULL;
long default_options= SSL_OP_ALL |
SSL_OP_NO_SSLv2 |
SSL_OP_NO_SSLv3;
long options= 0;
pthread_mutex_lock(&LOCK_openssl_config);
#if OPENSSL_VERSION_NUMBER >= 0x10100000L
if (!(ctx= SSL_C... | O3 | c | ma_tls_init:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x18, %rsp
movq %rdi, %r14
leaq 0x24f9f(%rip), %rdi # 0x4fb80
callq 0x136b0
callq 0x13200
movq %rax, %rdi
callq 0x13690
testq %rax, %rax
je 0x2acd6
movq %rax, %rbx
movq 0x480(%r14), %rax
testq %rax, %rax
je 0x2acb0
... | ma_tls_init:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 18h
mov r14, rdi
lea rdi, LOCK_openssl_config
call _pthread_mutex_lock
call _TLS_client_method
mov rdi, rax
call _SSL_CTX_new
test rax, rax
jz loc_2ACD6
mov rbx, rax
mov ... | long long ma_tls_init(_QWORD *a1)
{
long long v1; // rax
long long v2; // rax
long long v3; // rbx
long long v4; // rax
long long v5; // r15
long long v6; // r12
long long v7; // r13
long long v8; // r12
long long v9; // rsi
long long v10; // rax
_BYTE *v11; // r15
_BYTE *v12; // r12
_BYTE *v... | ma_tls_init:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x18
MOV R14,RDI
LEA RDI,[0x14fb80]
CALL 0x001136b0
CALL 0x00113200
MOV RDI,RAX
CALL 0x00113690
TEST RAX,RAX
JZ 0x0012acd6
MOV RBX,RAX
MOV RAX,qword ptr [R14 + 0x480]
TEST RAX,RAX
JZ 0x0012acb0
MOV R15,qword ptr [RAX + 0xc0]
TEST R15... |
SSL * ma_tls_init(void *param_1)
{
long lVar1;
char *file;
int iVar2;
SSL_METHOD *meth;
SSL_CTX *ctx;
char *pcVar3;
char *pcVar4;
X509_STORE *ctx_00;
FILE *fp;
SSL *ssl;
ulong uVar5;
uint uVar6;
char *pcVar7;
uint uVar8;
SSL *ssl_00;
EVP_PKEY *local_40;
void *local_38;
pthread_m... | |
61,948 | JS_MarkContext | bluesky950520[P]quickjs/quickjs.c | static void JS_MarkContext(JSRuntime *rt, JSContext *ctx,
JS_MarkFunc *mark_func)
{
int i;
struct list_head *el;
/* modules are not seen by the GC, so we directly mark the objects
referenced by each module */
list_for_each(el, &ctx->loaded_modules) {
JSModuleDe... | O0 | c | JS_MarkContext:
subq $0x38, %rsp
movq %rdi, 0x30(%rsp)
movq %rsi, 0x28(%rsp)
movq %rdx, 0x20(%rsp)
movq 0x28(%rsp), %rax
movq 0x1e8(%rax), %rax
movq %rax, 0x10(%rsp)
movq 0x10(%rsp), %rax
movq 0x28(%rsp), %rcx
addq $0x1e0, %rcx # imm = 0x1E0
cmpq %rcx, %rax
je 0x65b2c
movq 0x10(%rsp), %rax
addq $-0x8, %rax
m... | JS_MarkContext:
sub rsp, 38h
mov [rsp+38h+var_8], rdi
mov [rsp+38h+var_10], rsi
mov [rsp+38h+var_18], rdx
mov rax, [rsp+38h+var_10]
mov rax, [rax+1E8h]
mov [rsp+38h+var_28], rax
loc_65AE4:
mov rax, [rsp+38h+var_28]
mov rcx, [rsp+38h+var_10]
add rcx, 1E0h
cmp rax, rcx
jz ... | long long JS_MarkContext(long long a1, _QWORD *a2, long long ( *a3)(long long, long long))
{
long long *v3; // rax
long long result; // rax
_QWORD *i; // [rsp+10h] [rbp-28h]
int j; // [rsp+1Ch] [rbp-1Ch]
int k; // [rsp+1Ch] [rbp-1Ch]
for ( i = (_QWORD *)a2[61]; i != a2 + 60; i = (_QWORD *)i[1] )
js_ma... | JS_MarkContext:
SUB RSP,0x38
MOV qword ptr [RSP + 0x30],RDI
MOV qword ptr [RSP + 0x28],RSI
MOV qword ptr [RSP + 0x20],RDX
MOV RAX,qword ptr [RSP + 0x28]
MOV RAX,qword ptr [RAX + 0x1e8]
MOV qword ptr [RSP + 0x10],RAX
LAB_00165ae4:
MOV RAX,qword ptr [RSP + 0x10]
MOV RCX,qword ptr [RSP + 0x28]
ADD RCX,0x1e0
CMP RAX,RCX
JZ... |
void JS_MarkContext(long param_1,long param_2,code *param_3)
{
int8 *puVar1;
long local_28;
int local_1c;
for (local_28 = *(long *)(param_2 + 0x1e8); local_28 != param_2 + 0x1e0;
local_28 = *(long *)(local_28 + 8)) {
js_mark_module_def(param_1,local_28 + -8,param_3);
}
JS_MarkValue(param_1,*(... | |
61,949 | evmone::Result evmone::instr::core::create_eof_impl<(evmone::Opcode)236>(evmone::StackTop, long, evmone::ExecutionState&, unsigned char const*&) | corpus-core[P]colibri-stateless/build_O3/_deps/evmone_external-src/lib/evmone/instructions_calls.cpp | Result create_eof_impl(
StackTop stack, int64_t gas_left, ExecutionState& state, code_iterator& pos) noexcept
{
static_assert(Op == OP_EOFCREATE || Op == OP_TXCREATE);
if (state.in_static_mode())
return {EVMC_STATIC_MODE_VIOLATION, gas_left};
const auto initcode_hash =
(Op == OP_TXCREA... | O3 | cpp | evmone::Result evmone::instr::core::create_eof_impl<(evmone::Opcode)236>(evmone::StackTop, long, evmone::ExecutionState&, unsigned char const*&):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x1b8, %rsp # imm = 0x1B8
movq %rsi, %rbx
movq 0x20(%rdx), %rax
movl $0xb, %ebp
testb $0x1,... | _ZN6evmone5instr4core15create_eof_implILNS_6OpcodeE236EEENS_6ResultENS_8StackTopElRNS_14ExecutionStateERPKh:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 1B8h
mov rbx, rsi
mov rax, [rdx+20h]
mov ebp, 0Bh
test byte ptr [rax+4], 1
jnz loc_4A9E7
mov r13, rcx
m... | long long evmone::instr::core::create_eof_impl<(evmone::Opcode)236>(
const __m128i *a1,
evmone *a2,
long long a3,
long long *a4,
long long a5,
long long a6)
{
unsigned int v7; // ebp
__m128i v10; // xmm2
__m128i v11; // xmm4
unsigned long long v12; // r12
long ... | create_eof_impl<(evmone::Opcode)236>:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x1b8
MOV RBX,RSI
MOV RAX,qword ptr [RDX + 0x20]
MOV EBP,0xb
TEST byte ptr [RAX + 0x4],0x1
JNZ 0x0014a9e7
MOV R13,RCX
MOV R15,RDX
MOV R14,RDI
MOVUPS XMM2,xmmword ptr [RDI]
MOVUPS XMM4,xmmword ptr [RDI + 0x10]
MOV R12,qwo... |
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */
/* evmone::Result evmone::instr::core::create_eof_impl<(evmone::Opcode)236>(evmone::StackTop, long,
evmone::ExecutionState&, unsigned char const*&) */
int1 [16]
evmone::instr::core::create_eof_impl<(evmone::Opcode)236>
... | |
61,950 | dtoa_alloc | eloqsql/libmariadb/libmariadb/ma_dtoa.c | static char *dtoa_alloc(int i, Stack_alloc *alloc)
{
char *rv;
int aligned_size= MY_ALIGN(i, SIZEOF_CHARP);
if (alloc->free + aligned_size <= alloc->end)
{
rv= alloc->free;
alloc->free+= aligned_size;
}
else
rv= malloc(i);
return rv;
} | O0 | c | dtoa_alloc:
pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movl %edi, -0x4(%rbp)
movq %rsi, -0x10(%rbp)
movl -0x4(%rbp), %eax
addl $0x8, %eax
subl $0x1, %eax
andl $-0x8, %eax
movl %eax, -0x1c(%rbp)
movq -0x10(%rbp), %rax
movq 0x8(%rax), %rax
movslq -0x1c(%rbp), %rcx
addq %rcx, %rax
movq -0x10(%rbp), %rcx
cmpq 0x10(%rcx), ... | dtoa_alloc:
push rbp
mov rbp, rsp
sub rsp, 20h
mov [rbp+var_4], edi
mov [rbp+var_10], rsi
mov eax, [rbp+var_4]
add eax, 8
sub eax, 1
and eax, 0FFFFFFF8h
mov [rbp+var_1C], eax
mov rax, [rbp+var_10]
mov rax, [rax+8]
movsxd rcx, [rbp+var_1C]
add rax, rcx
mov rcx, [rb... | long long dtoa_alloc(int a1, long long a2)
{
signed int v3; // [rsp+4h] [rbp-1Ch]
long long v4; // [rsp+8h] [rbp-18h]
v3 = (a1 + 7) & 0xFFFFFFF8;
if ( (unsigned long long)(v3 + *(_QWORD *)(a2 + 8)) > *(_QWORD *)(a2 + 16) )
return malloc(a1);
v4 = *(_QWORD *)(a2 + 8);
*(_QWORD *)(a2 + 8) = v3 + v4;
r... | dtoa_alloc:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x20
MOV dword ptr [RBP + -0x4],EDI
MOV qword ptr [RBP + -0x10],RSI
MOV EAX,dword ptr [RBP + -0x4]
ADD EAX,0x8
SUB EAX,0x1
AND EAX,0xfffffff8
MOV dword ptr [RBP + -0x1c],EAX
MOV RAX,qword ptr [RBP + -0x10]
MOV RAX,qword ptr [RAX + 0x8]
MOVSXD RCX,dword ptr [RBP + -0x1c]
ADD RAX,... |
void * dtoa_alloc(int param_1,long param_2)
{
uint uVar1;
int8 local_20;
uVar1 = param_1 + 7U & 0xfffffff8;
if (*(ulong *)(param_2 + 0x10) < (ulong)(*(long *)(param_2 + 8) + (long)(int)uVar1)) {
local_20 = malloc((long)param_1);
}
else {
local_20 = *(void **)(param_2 + 8);
*(long *)(param_2... | |
61,951 | google::protobuf::(anonymous namespace)::EnumValueToPascalCase(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&) | aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/descriptor.cc | std::string EnumValueToPascalCase(const std::string& input) {
bool next_upper = true;
std::string result;
result.reserve(input.size());
for (char character : input) {
if (character == '_') {
next_upper = true;
} else {
if (next_upper) {
result.push_back(ToUpper(character));
} ... | O0 | cpp | google::protobuf::(anonymous namespace)::EnumValueToPascalCase(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&):
subq $0x68, %rsp
movq %rdi, 0x18(%rsp)
movq %rdi, %rax
movq %rax, 0x10(%rsp)
movq %rdi, 0x60(%rsp)
movq %rsi, 0x58(%rsp)
movb $0x1, 0x57(%rsp)
movb $0x0, 0x56(%rsp)
call... | _ZN6google8protobuf12_GLOBAL__N_121EnumValueToPascalCaseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE:
sub rsp, 68h
mov [rsp+68h+var_50], rdi
mov rax, rdi
mov [rsp+68h+var_58], rax
mov [rsp+68h+var_8], rdi
mov [rsp+68h+var_10], rsi
mov [rsp+68h+var_11], 1
mov [rsp+68h+var_12], ... | long long google::protobuf::`anonymous namespace'::EnumValueToPascalCase(long long a1, long long a2)
{
long long v2; // rax
char v4; // [rsp+Eh] [rbp-5Ah]
char v5; // [rsp+Fh] [rbp-59h]
char v6; // [rsp+27h] [rbp-41h]
char v7[8]; // [rsp+28h] [rbp-40h] BYREF
_QWORD v8[4]; // [rsp+30h] [rbp-38h] BYREF
cha... | empty:
SUB RSP,0x28
MOV qword ptr [RSP + 0x20],RDI
MOV RDI,qword ptr [RSP + 0x20]
MOV qword ptr [RSP + 0x8],RDI
CALL 0x002704b0
MOV RDI,qword ptr [RSP + 0x8]
MOV qword ptr [RSP + 0x18],RAX
CALL 0x002704e0
MOV qword ptr [RSP + 0x10],RAX
LEA RDI,[RSP + 0x18]
LEA RSI,[RSP + 0x10]
CALL 0x00270470
AND AL,0x1
ADD RSP,0x28
RE... |
/* std::vector<std::unique_ptr<google::protobuf::compiler::objectivec::ExtensionGenerator,
std::default_delete<google::protobuf::compiler::objectivec::ExtensionGenerator> >,
std::allocator<std::unique_ptr<google::protobuf::compiler::objectivec::ExtensionGenerator,
std::default_delete<google::protobuf::compile... | |
61,952 | stbi_is_16_bit_from_memory | monkey531[P]llama/examples/llava/../../common/stb_image.h | STBIDEF int stbi_is_16_bit_from_memory(stbi_uc const *buffer, int len)
{
stbi__context s;
stbi__start_mem(&s,buffer,len);
return stbi__is_16_main(&s);
} | O3 | c | stbi_is_16_bit_from_memory:
subq $0xe8, %rsp
leaq 0x8(%rsp), %rax
movq $0x0, 0x10(%rax)
xorl %ecx, %ecx
movl %ecx, 0x30(%rax)
movl %ecx, 0xb8(%rax)
movq %rdi, 0xd0(%rax)
movq %rdi, 0xc0(%rax)
movslq %esi, %rcx
addq %rdi, %rcx
movq %rcx, 0xd8(%rax)
movq %rcx, 0xc8(%rax)
movq %rax, %rdi
callq 0x2acb4
addq $0xe8, %rsp
ret... | stbi_is_16_bit_from_memory:
sub rsp, 0E8h
lea rax, [rsp+0E8h+var_E0]
mov qword ptr [rax+10h], 0
xor ecx, ecx
mov [rax+30h], ecx
mov [rax+0B8h], ecx
mov [rax+0D0h], rdi
mov [rax+0C0h], rdi
movsxd rcx, esi
add rcx, rdi
mov [rax+0D8h], rcx
mov [rax+0C8h], rcx
mov rdi, rax
c... | _BOOL8 stbi_is_16_bit_from_memory(long long a1, int a2)
{
_BYTE v3[16]; // [rsp+8h] [rbp-E0h] BYREF
long long v4; // [rsp+18h] [rbp-D0h]
int v5; // [rsp+38h] [rbp-B0h]
int v6; // [rsp+C0h] [rbp-28h]
long long v7; // [rsp+C8h] [rbp-20h]
long long v8; // [rsp+D0h] [rbp-18h]
long long v9; // [rsp+D8h] [rbp-... | stbi_is_16_bit_from_memory:
SUB RSP,0xe8
LEA RAX,[RSP + 0x8]
MOV qword ptr [RAX + 0x10],0x0
XOR ECX,ECX
MOV dword ptr [RAX + 0x30],ECX
MOV dword ptr [RAX + 0xb8],ECX
MOV qword ptr [RAX + 0xd0],RDI
MOV qword ptr [RAX + 0xc0],RDI
MOVSXD RCX,ESI
ADD RCX,RDI
MOV qword ptr [RAX + 0xd8],RCX
MOV qword ptr [RAX + 0xc8],RCX
MOV... |
void stbi_is_16_bit_from_memory(long param_1,int param_2)
{
stbi__context local_e0 [16];
int8 local_d0;
int4 local_b0;
int4 local_28;
long local_20;
long local_18;
long local_10;
long local_8;
local_d0 = 0;
local_b0 = 0;
local_28 = 0;
local_18 = param_2 + param_1;
local_20 = param_1;
lo... | |
61,953 | ankerl::nanobench::Bench& ankerl::nanobench::Bench::run<int BenchVector<main::Payload16B>(ankerl::nanobench::Bench&, bool)::'lambda0'()>(int BenchVector<main::Payload16B>(ankerl::nanobench::Bench&, bool)::'lambda0'()&&) | BadAccessGuards/build_O0/_deps/nanobench-src/src/include/nanobench.h | Bench& Bench::run(Op&& op) {
// It is important that this method is kept short so the compiler can do better optimizations/ inlining of op()
detail::IterationLogic iterationLogic(*this);
auto& pc = detail::performanceCounters();
while (auto n = iterationLogic.numIters()) {
pc.beginMeasure();
... | O0 | c | ankerl::nanobench::Bench& ankerl::nanobench::Bench::run<int BenchVector<main::Payload16B>(ankerl::nanobench::Bench&, bool)::'lambda0'()>(int BenchVector<main::Payload16B>(ankerl::nanobench::Bench&, bool)::'lambda0'()&&):
pushq %rbp
movq %rsp, %rbp
subq $0x70, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(... | _ZN6ankerl9nanobench5Bench3runIZ11BenchVectorImEiRS1_bEUlvE4_EES4_OT_:
push rbp
mov rbp, rsp
sub rsp, 70h
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov rsi, [rbp+var_8]; ankerl::nanobench::Bench *
mov [rbp+var_60], rsi
lea rdi, [rbp+var_18]; this
call _ZN6ankerl9nanobench6detail14Iter... | ankerl::nanobench::Bench * ankerl::nanobench::Bench::run<int BenchVector<unsigned long>(ankerl::nanobench::Bench&,bool)::{lambda(void)#6}>(
ankerl::nanobench::Bench *a1,
std::chrono::_V2::steady_clock *a2)
{
std::chrono::_V2::steady_clock *v2; // rdi
unsigned long long v4; // rax
long long v5; // ... | run<BenchVector<unsigned_long>(ankerl::nanobench::Bench&,bool)::{lambda()#6}>:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x70
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV RSI,qword ptr [RBP + -0x8]
MOV qword ptr [RBP + -0x60],RSI
LEA RDI,[RBP + -0x18]
CALL 0x00114c50
LAB_00111a71:
CALL 0x00113ec0
MOV qword ptr... |
/* ankerl::nanobench::Bench& ankerl::nanobench::Bench::run<BenchVector<unsigned
long>(ankerl::nanobench::Bench&, bool)::{lambda()#6}>(BenchVector<unsigned
long>(ankerl::nanobench::Bench&, bool)::{lambda()#6}&&) */
Bench * __thiscall
ankerl::nanobench::Bench::
run<BenchVector<unsigned_long>(ankerl::nanobench::Be... | |
61,954 | Catch::Generators::GeneratorTracker::acquire(Catch::TestCaseTracking::TrackerContext&, Catch::TestCaseTracking::NameAndLocationRef const&) | AlayaLite/build_O3/_deps/libcoro-src/test/catch_amalgamated.cpp | static GeneratorTracker* acquire( TrackerContext& ctx, TestCaseTracking::NameAndLocationRef const& nameAndLocation ) {
GeneratorTracker* tracker;
ITracker& currentTracker = ctx.currentTracker();
// Under specific circumstances, the generator we want
// to... | O3 | cpp | Catch::Generators::GeneratorTracker::acquire(Catch::TestCaseTracking::TrackerContext&, Catch::TestCaseTracking::NameAndLocationRef const&):
pushq %r14
pushq %rbx
pushq %rax
movq %rsi, %rbx
movq 0x8(%rdi), %r14
leaq 0x8(%r14), %rdi
callq 0x7f937
testb %al, %al
je 0x78839
movq 0x38(%r14), %rdi
movq %rbx, %rsi
callq 0x624... | _ZN5Catch10Generators16GeneratorTracker7acquireERNS_16TestCaseTracking14TrackerContextERKNS2_18NameAndLocationRefE:
push r14
push rbx
push rax
mov rbx, rsi
mov r14, [rdi+8]
lea rdi, [r14+8]
call _ZN5Catch16TestCaseTrackingeqERKNS0_15NameAndLocationERKNS0_18NameAndLocationRefE; Catch::TestCaseTra... | long long Catch::Generators::GeneratorTracker::acquire(long long a1, long long a2)
{
long long v2; // r14
long long Child; // rbx
long long i; // rax
v2 = *(_QWORD *)(a1 + 8);
if ( (unsigned __int8)Catch::TestCaseTracking::operator==(v2 + 8, a2) )
{
Child = Catch::TestCaseTracking::ITracker::findChild... | acquire:
PUSH R14
PUSH RBX
PUSH RAX
MOV RBX,RSI
MOV R14,qword ptr [RDI + 0x8]
LEA RDI,[R14 + 0x8]
CALL 0x0017f937
TEST AL,AL
JZ 0x00178839
MOV RDI,qword ptr [R14 + 0x38]
MOV RSI,RBX
CALL 0x00162454
MOV RBX,RAX
JMP 0x0017884c
LAB_00178839:
MOV RDI,R14
MOV RSI,RBX
CALL 0x00162454
MOV RBX,RAX
TEST RAX,RAX
JZ 0x00178884
LA... |
/* Catch::Generators::GeneratorTracker::acquire(Catch::TestCaseTracking::TrackerContext&,
Catch::TestCaseTracking::NameAndLocationRef const&) */
long * Catch::Generators::GeneratorTracker::acquire
(TrackerContext *param_1,NameAndLocationRef *param_2)
{
ITracker *this;
char cVar1;
long *plVa... | |
61,955 | mysql_stmt_send_long_data_start | eloqsql/libmariadb/libmariadb/mariadb_async.c | int STDCALL
mysql_stmt_send_long_data_start(my_bool *ret, MYSQL_STMT *stmt,
unsigned int param_number,
const char *data, unsigned long length)
{
MK_ASYNC_START_BODY(
mysql_stmt_send_long_data,
stmt->mysql,
{
WIN_SET_NONBLOCKING(stmt->mysql)
p... | O0 | c | mysql_stmt_send_long_data_start:
pushq %rbp
movq %rsp, %rbp
subq $0x60, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movl %edx, -0x1c(%rbp)
movq %rcx, -0x28(%rbp)
movq %r8, -0x30(%rbp)
movq -0x18(%rbp), %rax
cmpq $0x0, 0x38(%rax)
jne 0x6339e
movq -0x18(%rbp), %rdi
movl -0x1c(%rbp), %esi
movq -0x28(%rbp), %rdx
mov... | mysql_stmt_send_long_data_start:
push rbp
mov rbp, rsp
sub rsp, 60h
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 rax, [rbp+var_18]
cmp qword ptr [rax+38h], 0
jnz short loc_6339E
mov rdi, [rbp+var_18]
mov ... | long long mysql_stmt_send_long_data_start(char *a1, long long a2, unsigned int a3, long long a4, long long a5)
{
long long v6; // [rsp+0h] [rbp-60h] BYREF
unsigned int v7; // [rsp+8h] [rbp-58h]
long long v8; // [rsp+10h] [rbp-50h]
long long v9; // [rsp+18h] [rbp-48h]
_BYTE *v10; // [rsp+20h] [rbp-40h]
int ... | mysql_stmt_send_long_data_start:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x60
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 RAX,qword ptr [RBP + -0x18]
CMP qword ptr [RAX + 0x38],0x0
JNZ 0x0016339e
MOV RDI,qword pt... |
int4
mysql_stmt_send_long_data_start
(int1 *param_1,long param_2,int4 param_3,int8 param_4,int8 param_5
)
{
int1 uVar1;
long local_68;
int4 local_60;
int8 local_58;
int8 local_50;
int4 *local_48;
int local_3c;
int8 local_38;
int8 local_30;
int4 local_24;
long local_20;
int1... | |
61,956 | testing::Matcher<std::basic_string_view<char, std::char_traits<char>> const&>::~Matcher() | AlayaLite/build_O3/_deps/googletest-src/googletest/include/gtest/gtest-matchers.h | class GTEST_API_ Matcher<const internal::StringView&>
: public internal::MatcherBase<const internal::StringView&> {
public:
Matcher() = default;
explicit Matcher(const MatcherInterface<const internal::StringView&>* impl)
: internal::MatcherBase<const internal::StringView&>(impl) {}
template <typename... | O3 | c | testing::Matcher<std::basic_string_view<char, std::char_traits<char>> const&>::~Matcher():
pushq %rbx
movq %rdi, %rbx
callq 0x7b3ee
movl $0x18, %esi
movq %rbx, %rdi
popq %rbx
jmp 0x11120
nop
| _ZN7testing7MatcherIRKSt17basic_string_viewIcSt11char_traitsIcEEED0Ev:
push rbx
mov rbx, rdi
call _ZN7testing8internal11MatcherBaseIRKSt17basic_string_viewIcSt11char_traitsIcEEED2Ev; testing::internal::MatcherBase<std::string_view const&>::~MatcherBase()
mov esi, 18h; unsigned __int64
mov rdi, rbx; vo... | void testing::Matcher<std::string_view const&>::~Matcher(void *a1)
{
testing::internal::MatcherBase<std::string_view const&>::~MatcherBase(a1);
operator delete(a1, 0x18uLL);
}
| ~Matcher:
PUSH RBX
MOV RBX,RDI
CALL 0x0017b3ee
MOV ESI,0x18
MOV RDI,RBX
POP RBX
JMP 0x00111120
|
/* testing::Matcher<std::basic_string_view<char, std::char_traits<char> > const&>::~Matcher() */
void __thiscall
testing::Matcher<std::basic_string_view<char,std::char_traits<char>>const&>::~Matcher
(Matcher<std::basic_string_view<char,std::char_traits<char>>const&> *this)
{
internal::MatcherBase<std::ba... | |
61,957 | MyCTX::init(evp_cipher_st const*, int, unsigned char const*, unsigned int, unsigned char const*, unsigned int) | eloqsql/mysys_ssl/my_crypt.cc | virtual int init(const EVP_CIPHER *cipher, int encrypt, const uchar *key,
uint klen, const uchar *iv, uint ivlen)
{
compile_time_assert(MY_AES_CTX_SIZE >= sizeof(MyCTX));
if (unlikely(!cipher))
return MY_AES_BAD_KEYSIZE;
if (EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, encrypt) ... | O3 | cpp | MyCTX::init(evp_cipher_st const*, int, unsigned char const*, unsigned int, unsigned char const*, unsigned int):
testq %rsi, %rsi
je 0x2fb8f
pushq %rbp
movq %rsp, %rbp
pushq %rbx
pushq %rax
movl %edx, %eax
movq 0xc8(%rdi), %rdi
xorl %ebx, %ebx
xorl %edx, %edx
movq %r9, %r8
movl %eax, %r9d
callq 0x2a770
cmpl $0x1, %eax
p... | _ZN5MyCTX4initEPK13evp_cipher_stiPKhjS4_j:
test rsi, rsi
jz short loc_2FB8F
push rbp
mov rbp, rsp
push rbx
push rax
mov eax, edx
mov rdi, [rdi+0C8h]
xor ebx, ebx
xor edx, edx
mov r8, r9
mov r9d, eax
call _EVP_CipherInit_ex
cmp eax, 1
push 0FFFFFFFFFFFFFF9Bh
pop ... | long long MyCTX::init(long long a1, long long a2, unsigned int a3, long long a4, long long a5, long long a6)
{
long long v6; // rax
bool v7; // zf
long long result; // rax
if ( !a2 )
return -102LL;
v7 = (unsigned int)EVP_CipherInit_ex(*(_QWORD *)(a1 + 200), a2, 0LL, a4, a6, a3, v6) == 1;
result = -101... | init:
TEST RSI,RSI
JZ 0x0012fb8f
PUSH RBP
MOV RBP,RSP
PUSH RBX
PUSH RAX
MOV EAX,EDX
MOV RDI,qword ptr [RDI + 0xc8]
XOR EBX,EBX
XOR EDX,EDX
MOV R8,R9
MOV R9D,EAX
CALL 0x0012a770
CMP EAX,0x1
PUSH -0x65
POP RAX
CMOVZ EAX,EBX
ADD RSP,0x8
POP RBX
POP RBP
RET
LAB_0012fb8f:
PUSH -0x66
POP RAX
RET
|
/* MyCTX::init(evp_cipher_st const*, int, unsigned char const*, unsigned int, unsigned char const*,
unsigned int) */
int8
MyCTX::init(evp_cipher_st *param_1,int param_2,uchar *param_3,uint param_4,uchar *param_5,
uint param_6)
{
int iVar1;
int8 uVar2;
int4 in_register_0000000c;
int4 in_register... | |
61,958 | nlohmann::json_abi_v3_11_3::detail::iteration_proxy_value<nlohmann::json_abi_v3_11_3::detail::iter_impl<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::all... | llama.cpp/common/json.hpp | const string_type& key() const
{
JSON_ASSERT(anchor.m_object != nullptr);
switch (anchor.m_object->type())
{
// use integer array index as key
case value_t::array:
{
if (array_index != array_index_last)
{
... | O3 | cpp | nlohmann::json_abi_v3_11_3::detail::iteration_proxy_value<nlohmann::json_abi_v3_11_3::detail::iter_impl<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::all... | _ZNK8nlohmann16json_abi_v3_11_36detail21iteration_proxy_valueINS1_9iter_implIKNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEEEEE3keyEv:
push rbx
mov rax, [rdi]
test rax, rax
jz short loc_72AF6
mov rbx, rdi
movzx... | long long nlohmann::json_abi_v3_11_3::detail::iteration_proxy_value<nlohmann::json_abi_v3_11_3::detail::iter_impl<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,std::vector,std::string,bool,long,unsigned long,double,std::allocator,nlohmann::json_abi_v3_11_3::adl_serializer,std::vector<u... | key:
PUSH RBX
MOV RAX,qword ptr [RDI]
TEST RAX,RAX
JZ 0x00172af6
MOV RBX,RDI
MOVZX EAX,byte ptr [RAX]
CMP EAX,0x1
JZ 0x00172ae4
CMP EAX,0x2
JNZ 0x00172aed
MOV RSI,qword ptr [RBX + 0x20]
CMP RSI,qword ptr [RBX + 0x28]
JZ 0x00172ade
LEA RDI,[RBX + 0x30]
CALL 0x0017a0ed
MOV RAX,qword ptr [RBX + 0x20]
MOV qword ptr [RBX + ... |
/* nlohmann::json_abi_v3_11_3::detail::iteration_proxy_value<nlohmann::json_abi_v3_11_3::detail::iter_impl<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,
std::vector, std::__cxx11::string, bool, long, unsigned long, double, std::allocator,
nlohmann::json_abi_v3_11_3::adl_serializ... | |
61,959 | minja::Value::call(std::shared_ptr<minja::Context> const&, minja::ArgumentsValue&) const | llama.cpp/common/minja/minja.hpp | Value call(const std::shared_ptr<Context> & context, ArgumentsValue & args) const {
if (!callable_) throw std::runtime_error("Value is not callable: " + dump());
return (*callable_)(context, args);
} | O3 | cpp | minja::Value::call(std::shared_ptr<minja::Context> const&, minja::ArgumentsValue&) const:
pushq %rbp
pushq %r14
pushq %rbx
subq $0x40, %rsp
movq %rsi, %r14
movq 0x30(%rsi), %rsi
testq %rsi, %rsi
je 0x8149d
cmpq $0x0, 0x10(%rsi)
je 0x814f8
movq %rdi, %rbx
callq *0x18(%rsi)
movq %rbx, %rax
addq $0x40, %rsp
popq %rbx
popq... | _ZNK5minja5Value4callERKSt10shared_ptrINS_7ContextEERNS_14ArgumentsValueE:
push rbp
push r14
push rbx
sub rsp, 40h
mov r14, rsi
mov rsi, [rsi+30h]
test rsi, rsi
jz short loc_8149D
cmp qword ptr [rsi+10h], 0
jz short loc_814F8
mov rbx, rdi
call qword ptr [rsi+18h]
mov rax... | long long minja::Value::call(long long a1, long long a2)
{
long long v3; // rsi
void *exception; // rbx
_BYTE v6[16]; // [rsp+0h] [rbp-58h] BYREF
_QWORD v7[2]; // [rsp+20h] [rbp-38h] BYREF
v3 = *(_QWORD *)(a2 + 48);
if ( !v3 )
{
exception = __cxa_allocate_exception(0x10uLL);
minja::Value::dump[a... | call:
PUSH RBP
PUSH R14
PUSH RBX
SUB RSP,0x40
MOV R14,RSI
MOV RSI,qword ptr [RSI + 0x30]
TEST RSI,RSI
JZ 0x0018149d
CMP qword ptr [RSI + 0x10],0x0
JZ 0x001814f8
MOV RBX,RDI
CALL qword ptr [RSI + 0x18]
MOV RAX,RBX
ADD RSP,0x40
POP RBX
POP R14
POP RBP
RET
LAB_0018149d:
MOV EDI,0x10
CALL 0x0011c460
MOV RBX,RAX
LAB_001814a... |
/* minja::Value::call(std::shared_ptr<minja::Context> const&, minja::ArgumentsValue&) const */
shared_ptr * minja::Value::call(shared_ptr *param_1,ArgumentsValue *param_2)
{
long lVar1;
runtime_error *this;
int1 auStack_58 [32];
string local_38 [32];
lVar1 = *(long *)(param_2 + 0x30);
if (lVar1 == 0) ... | |
61,960 | ma_pack_rec_unpack | eloqsql/storage/maria/ma_packrec.c | int _ma_pack_rec_unpack(register MARIA_HA *info, MARIA_BIT_BUFF *bit_buff,
register uchar *to, uchar *from, ulong reclength)
{
uchar *end_field;
reg3 MARIA_COLUMNDEF *end;
MARIA_COLUMNDEF *current_field;
MARIA_SHARE *share= info->s;
DBUG_ENTER("_ma_pack_rec_unpack");
if (info->s->ba... | O0 | c | ma_pack_rec_unpack:
pushq %rbp
movq %rsp, %rbp
subq $0x50, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq %rcx, -0x28(%rbp)
movq %r8, -0x30(%rbp)
movq -0x10(%rbp), %rax
movq (%rax), %rax
movq %rax, -0x50(%rbp)
movq -0x10(%rbp), %rax
movq (%rax), %rax
cmpl $0x0, 0x3fc(%rax)
je 0x47771
mov... | _ma_pack_rec_unpack:
push rbp
mov rbp, rsp
sub rsp, 50h
mov [rbp+var_10], rdi
mov [rbp+var_18], rsi
mov [rbp+var_20], rdx
mov [rbp+var_28], rcx
mov [rbp+var_30], r8
mov rax, [rbp+var_10]
mov rax, [rax]
mov [rbp+var_50], rax
mov rax, [rbp+var_10]
mov rax, [rax]
cmp ... | long long ma_pack_rec_unpack(_DWORD *a1, long long a2, long long a3, long long a4, unsigned int a5)
{
long long v5; // rdx
long long v6; // r8
int v7; // r9d
long long v8; // rcx
long long v10; // [rsp+0h] [rbp-50h]
unsigned long long v11; // [rsp+8h] [rbp-48h]
unsigned long long v12; // [rsp+10h] [rbp-4... | _ma_pack_rec_unpack:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x50
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],R8
MOV RAX,qword ptr [RBP + -0x10]
MOV RAX,qword ptr [RAX]
MOV qword ptr [RBP + -0x50],RAX
MOV RAX,qword ptr ... |
int4 _ma_pack_rec_unpack(long *param_1,long param_2,void *param_3,void *param_4,int param_5)
{
long lVar1;
ulong uVar2;
void *pvVar3;
int8 local_50;
int8 local_30;
int8 local_28;
int4 local_c;
lVar1 = *param_1;
local_30 = param_4;
local_28 = param_3;
if (*(int *)(*param_1 + 0x3fc) != 0) {
... | |
61,961 | Catch::Config::~Config() | AlayaLite/build_O3/_deps/libcoro-src/test/catch_amalgamated.cpp | Config::~Config() = default; | O3 | cpp | Catch::Config::~Config():
pushq %r14
pushq %rbx
pushq %rax
movq %rdi, %rbx
leaq 0xe1208(%rip), %rax # 0x12d310
addq $0x10, %rax
movq %rax, (%rdi)
leaq 0x130(%rdi), %r14
addq $0x148, %rdi # imm = 0x148
callq 0x783e8
movq %r14, %rdi
callq 0x7b962
leaq 0x118(%rbx), %rdi
callq 0x76ef0
leaq 0x100(%rbx), %rdi
... | _ZN5Catch6ConfigD2Ev:
push r14
push rbx
push rax
mov rbx, rdi
lea rax, _ZTVN5Catch6ConfigE; `vtable for'Catch::Config
add rax, 10h
mov [rdi], rax
lea r14, [rdi+130h]
add rdi, 148h
call _ZNSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS5_EED2Ev; std::vector<std::str... | void Catch::Config::~Config(Catch::Config *this)
{
char *v2; // rdi
char *v3; // rdi
_QWORD *v4; // rdi
_QWORD *v5; // rbx
*(_QWORD *)this = &`vtable for'Catch::Config + 2;
std::vector<std::string>::~vector((char *)this + 328);
std::vector<Catch::TestSpec::Filter>::~vector((char *)this + 304);
std::ve... | ~Config:
PUSH R14
PUSH RBX
PUSH RAX
MOV RBX,RDI
LEA RAX,[0x22d310]
ADD RAX,0x10
MOV qword ptr [RDI],RAX
LEA R14,[RDI + 0x130]
ADD RDI,0x148
CALL 0x001783e8
MOV RDI,R14
CALL 0x0017b962
LEA RDI,[RBX + 0x118]
CALL 0x00176ef0
LEA RDI,[RBX + 0x100]
CALL 0x001783e8
LEA RDI,[RBX + 0xe8]
CALL 0x001783e8
LEA RDI,[RBX + 0xd0]
CA... |
/* Catch::Config::~Config() */
void __thiscall Catch::Config::~Config(Config *this)
{
*(int ***)this = &PTR__Config_0022d320;
std::vector<std::__cxx11::string,std::allocator<std::__cxx11::string>>::~vector
((vector<std::__cxx11::string,std::allocator<std::__cxx11::string>> *)(this + 0x148));
std::v... | |
61,962 | my_hash_next | eloqsql/mysys/hash.c | uchar* my_hash_next(const HASH *hash, const uchar *key, size_t length,
HASH_SEARCH_STATE *current_record)
{
HASH_LINK *pos;
uint idx;
if (*current_record != NO_RECORD)
{
HASH_LINK *data=dynamic_element(&hash->array,0,HASH_LINK*);
for (idx=data[*current_record].next; idx != NO_RECORD... | O3 | c | my_hash_next:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x18, %rsp
movq %rdx, -0x38(%rbp)
movl (%rcx), %ebx
movl $0xffffffff, %eax # imm = 0xFFFFFFFF
cmpq %rax, %rbx
je 0x24f37
movq %rsi, %r15
movq %rdi, %r12
movq %rcx, -0x30(%rbp)
movq 0x28(%rdi), %r13
shlq $0x4, %rb... | my_hash_next:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 18h
mov [rbp+var_38], rdx
mov ebx, [rcx]
mov eax, 0FFFFFFFFh
cmp rbx, rax
jz short loc_24F37
mov r15, rsi
mov r12, rdi
mov [rbp+var_30], rcx
mov r13, [rdi+28h]
shl ... | long long my_hash_next(_QWORD *a1, long long a2, long long a3, _DWORD *a4)
{
long long v4; // rbx
long long v5; // r13
unsigned int *v6; // rbx
long long v7; // r14
v4 = (unsigned int)*a4;
if ( v4 != 0xFFFFFFFFLL )
{
v5 = a1[5];
v6 = (unsigned int *)(v5 + 16 * v4);
while ( 1 )
{
v7... | my_hash_next:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x18
MOV qword ptr [RBP + -0x38],RDX
MOV EBX,dword ptr [RCX]
MOV EAX,0xffffffff
CMP RBX,RAX
JZ 0x00124f37
MOV R15,RSI
MOV R12,RDI
MOV qword ptr [RBP + -0x30],RCX
MOV R13,qword ptr [RDI + 0x28]
SHL RBX,0x4
ADD RBX,R13
LAB_00124ef0:
M... |
int8 my_hash_next(long param_1,int8 param_2,int8 param_3,uint *param_4)
{
uint uVar1;
long lVar2;
int iVar3;
long lVar4;
int8 uVar5;
uint *puVar6;
if ((ulong)*param_4 == 0xffffffff) {
LAB_00124f37:
uVar5 = 0;
}
else {
lVar2 = *(long *)(param_1 + 0x28);
puVar6 = (uint *)((ulong)*param_... | |
61,963 | put_lvalue | bluesky950520[P]quickjs/quickjs.c | static void put_lvalue(JSParseState *s, int opcode, int scope,
JSAtom name, int label, PutLValueEnum special,
BOOL is_let)
{
switch(opcode) {
case OP_get_field:
case OP_scope_get_private_field:
/* depth = 1 */
switch(special) {
case PUT_L... | O2 | c | put_lvalue:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movl %r9d, %r12d
movl %ecx, %ebp
movl %edx, 0x4(%rsp)
movl %esi, %r15d
movq %rdi, %rbx
movl 0x40(%rsp), %r14d
cmpl $0x3c, %esi
je 0x5ace3
cmpl $0xbd, %r15d
je 0x5acb2
cmpl $0x47, %r15d
je 0x5acfb
cmpl $0x4a, %r15d
je 0x5acc9
cmpl $... | put_lvalue:
push rbp
push r15
push r14
push r13
push r12
push rbx
push rax
mov r12d, r9d
mov ebp, ecx
mov [rsp+38h+var_34], edx
mov r15d, esi
mov rbx, rdi
mov r14d, [rsp+38h+arg_0]
cmp esi, 3Ch ; '<'
jz short loc_5ACE3
cmp r15d, 0BDh
jz short loc_5ACB2
cmp ... | long long put_lvalue(long long *a1, int a2, __int16 a3, unsigned int a4, int a5, int a6, int a7)
{
char v9; // al
char v10; // al
char v12; // si
long long result; // rax
switch ( a2 )
{
case 60:
JS_FreeAtom(*a1, a4);
emit_label((long long)a1, a5);
break;
case 189:
LABEL_7:
... | put_lvalue:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV R12D,R9D
MOV EBP,ECX
MOV dword ptr [RSP + 0x4],EDX
MOV R15D,ESI
MOV RBX,RDI
MOV R14D,dword ptr [RSP + 0x40]
CMP ESI,0x3c
JZ 0x0015ace3
CMP R15D,0xbd
JZ 0x0015acb2
CMP R15D,0x47
JZ 0x0015acfb
CMP R15D,0x4a
JZ 0x0015acc9
CMP R15D,0xb7
JZ 0x001... |
void put_lvalue(int8 *param_1,int param_2,int2 param_3,int4 param_4,
int4 param_5,uint param_6,int param_7)
{
if (param_2 != 0x3c) {
if (param_2 != 0xbd) {
if (param_2 == 0x47) goto LAB_0015acfb;
if (param_2 == 0x4a) {
/* WARNING: Could not recover jumptable at 0x0... | |
61,964 | ma_ck_write_btree_with_log | eloqsql/storage/maria/ma_write.c | static my_bool _ma_ck_write_btree_with_log(MARIA_HA *info, MARIA_KEY *key,
my_off_t *root, uint32 comp_flag)
{
MARIA_SHARE *share= info->s;
LSN lsn= LSN_IMPOSSIBLE;
int error;
my_off_t new_root= *root;
uchar key_buff[MARIA_MAX_KEY_BUFF];
MARIA_KEY org_key; /* Set/u... | O0 | c | ma_ck_write_btree_with_log:
pushq %rbp
movq %rsp, %rbp
subq $0xa50, %rsp # imm = 0xA50
movq %fs:0x28, %rax
movq %rax, -0x8(%rbp)
movq %rdi, -0x9e8(%rbp)
movq %rsi, -0x9f0(%rbp)
movq %rdx, -0x9f8(%rbp)
movl %ecx, -0x9fc(%rbp)
movq -0x9e8(%rbp), %rax
movq (%rax), %rax
movq %rax, -0xa08(%rbp)
movq $0x0, -0xa10(... | _ma_ck_write_btree_with_log:
push rbp
mov rbp, rsp
sub rsp, 0A50h
mov rax, fs:28h
mov [rbp+var_8], rax
mov [rbp+var_9E8], rdi
mov [rbp+var_9F0], rsi
mov [rbp+var_9F8], rdx
mov [rbp+var_9FC], ecx
mov rax, [rbp+var_9E8]
mov rax, [rax]
mov [rbp+var_A08], rax
mov [rbp+var_... | bool ma_ck_write_btree_with_log(_QWORD *a1, float **a2, long long *a3, int a4)
{
bool v4; // al
float **v5; // rax
char v7; // [rsp+Fh] [rbp-A41h]
float *v8; // [rsp+10h] [rbp-A40h]
float *v9; // [rsp+18h] [rbp-A38h]
float *v10; // [rsp+20h] [rbp-A30h]
float *v11; // [rsp+28h] [rbp-A28h]
long long v12;... | _ma_ck_write_btree_with_log:
PUSH RBP
MOV RBP,RSP
SUB RSP,0xa50
MOV RAX,qword ptr FS:[0x28]
MOV qword ptr [RBP + -0x8],RAX
MOV qword ptr [RBP + -0x9e8],RDI
MOV qword ptr [RBP + -0x9f0],RSI
MOV qword ptr [RBP + -0x9f8],RDX
MOV dword ptr [RBP + -0x9fc],ECX
MOV RAX,qword ptr [RBP + -0x9e8]
MOV RAX,qword ptr [RAX]
MOV qwor... |
int8
_ma_ck_write_btree_with_log(long *param_1,long *param_2,int8 *param_3,int4 param_4)
{
char cVar1;
char cVar2;
long in_FS_OFFSET;
long local_a48;
long local_a40;
long local_a38;
long local_a30;
int8 local_a28;
int local_a1c;
int8 local_a18;
long local_a10;
int4 local_a04;
int8 *local_a00... | |
61,965 | moodycamel::ConcurrentQueue<emittra::Emittra::QueuedEvent, moodycamel::ConcurrentQueueDefaultTraits>::ConcurrentQueue(unsigned long) | angrymouse[P]emittra/include/concurrentqueue.h | explicit ConcurrentQueue(size_t capacity = 32 * BLOCK_SIZE)
: producerListTail(nullptr),
producerCount(0),
initialBlockPoolIndex(0),
nextExplicitConsumerId(0),
globalExplicitConsumerOffset(0)
{
implicitProducerHashResizeInProgress.clear(std::memory_order_relaxed);
populate_initial_implicit_producer_hash(... | O2 | c | moodycamel::ConcurrentQueue<emittra::Emittra::QueuedEvent, moodycamel::ConcurrentQueueDefaultTraits>::ConcurrentQueue(unsigned long):
pushq %r14
pushq %rbx
pushq %rax
movq %rdi, %rbx
andq $0x0, (%rdi)
andl $0x0, 0x8(%rdi)
movq %rsi, %r14
andq $0x0, 0x10(%rdi)
andq $0x0, 0x28(%rdi)
addq $0x58, %rdi
callq 0x6860
andq $0x... | _ZN10moodycamel15ConcurrentQueueIN7emittra7Emittra11QueuedEventENS_28ConcurrentQueueDefaultTraitsEEC2Em:
push r14
push rbx
push rax
mov rbx, rdi
and qword ptr [rdi], 0
and dword ptr [rdi+8], 0
mov r14, rsi
and qword ptr [rdi+10h], 0
and qword ptr [rdi+28h], 0
add rdi, 58h ; 'X'
call... | long long moodycamel::ConcurrentQueue<emittra::Emittra::QueuedEvent,moodycamel::ConcurrentQueueDefaultTraits>::ConcurrentQueue(
long long a1,
unsigned long long a2)
{
*(_QWORD *)a1 = 0LL;
*(_DWORD *)(a1 + 8) = 0;
*(_QWORD *)(a1 + 16) = 0LL;
*(_QWORD *)(a1 + 40) = 0LL;
std::array<moodycamel::C... | ConcurrentQueue:
PUSH R14
PUSH RBX
PUSH RAX
MOV RBX,RDI
AND qword ptr [RDI],0x0
AND dword ptr [RDI + 0x8],0x0
MOV R14,RSI
AND qword ptr [RDI + 0x10],0x0
AND qword ptr [RDI + 0x28],0x0
ADD RDI,0x58
CALL 0x00106860
AND qword ptr [RBX + 0x25c],0x0
MOV byte ptr [RBX + 0x258],0x0
MOV RDI,RBX
CALL 0x00106876
MOV RSI,R14
SHR ... |
/* moodycamel::ConcurrentQueue<emittra::Emittra::QueuedEvent,
moodycamel::ConcurrentQueueDefaultTraits>::ConcurrentQueue(unsigned long) */
void __thiscall
moodycamel::ConcurrentQueue<emittra::Emittra::QueuedEvent,moodycamel::ConcurrentQueueDefaultTraits>
::ConcurrentQueue(ConcurrentQueue<emittra::Emittra::QueuedEv... | |
61,966 | nlohmann::json_abi_v3_11_3::basic_json<std::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 char>>, void>::basic_json<nlohma... | llama.cpp/common/json.hpp | basic_json(const JsonRef& ref) : basic_json(ref.moved_or_copied()) {} | O3 | cpp | nlohmann::json_abi_v3_11_3::basic_json<std::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 char>>, void>::basic_json<nlohma... | _ZN8nlohmann16json_abi_v3_11_310basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvEC2INS0_6detail8json_refISD_EETnNSt9enable_ifIXsr6detail11conjunctionINSF_11is_json_refIT_EESt7is_sameINSK_10value_typeESD_EEE5valueEiE4typeELi0EEERKSK_:
push r14
push ... | long long ZN8nlohmann16json_abi_v3_11_310basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvEC2INS0_6detail8json_refISD_EETnNSt9enable_ifIXsr6detail11conjunctionINSF_11is_json_refIT_EESt7is_sameINSK_10value_typeESD_EEE5valueEiE4typeELi0EEERKSK_(
... | _ZN8nlohmann16json_abi_v3_11_310basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvEC2INS0_6detail8json_refISD_EETnNSt9enable_ifIXsr6detail11conjunctionINSF_11is_json_refIT_EESt7is_sameINSK_10value_typeESD_EEE5valueEiE4typeELi0EEERKSK_:
PUSH R14
PUSH RBX... |
void _ZN8nlohmann16json_abi_v3_11_310basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvEC2INS0_6detail8json_refISD_EETnNSt9enable_ifIXsr6detail11conjunctionINSF_11is_json_refIT_EESt7is_sameINSK_10value_typeESD_EEE5valueEiE4typeELi0EEERKSK_
... | |
61,967 | test_log::build_graph(ggml_context*) | llama.cpp/tests/test-backend-ops.cpp | ggml_tensor * build_graph(ggml_context * ctx) override {
ggml_tensor * a = ggml_new_tensor(ctx, type, 4, ne.data());
ggml_set_param(ctx, a);
ggml_set_name(a, "a");
ggml_tensor * out = ggml_log(ctx, a);
ggml_set_name(out, "out");
return out;
} | O3 | cpp | test_log::build_graph(ggml_context*):
pushq %r15
pushq %r14
pushq %rbx
movq %rsi, %rbx
movq %rdi, %r14
movl 0x38(%rdi), %esi
leaq 0x40(%rdi), %rcx
movq %rbx, %rdi
movl $0x4, %edx
callq 0x1cbe0
movq %rax, %r15
movq %r14, %rdi
movq %rbx, %rsi
callq 0x2cc20
movq %rbx, %rdi
movq %r15, %rsi
callq 0x1ccb0
leaq 0x20ffb(%rip),... | _ZN8test_log11build_graphEP12ggml_context:
push r15
push r14
push rbx
mov rbx, rsi
mov r14, rdi
mov esi, [rdi+38h]
lea rcx, [rdi+40h]
mov rdi, rbx
mov edx, 4
call _ggml_new_tensor
mov r15, rax
mov rdi, r14
mov rsi, rbx
call _ZN9test_case12add_sentinelEP12ggml_context; ... | long long test_log::build_graph(long long a1, long long a2)
{
long long v2; // r15
long long v3; // rbx
v2 = ggml_new_tensor(a2, *(unsigned int *)(a1 + 56), 4LL);
test_case::add_sentinel(a1, a2);
ggml_set_param(a2, v2);
ggml_set_name(v2, "a");
v3 = ggml_log(a2, v2);
ggml_set_name(v3, "out");
return ... | build_graph:
PUSH R15
PUSH R14
PUSH RBX
MOV RBX,RSI
MOV R14,RDI
MOV ESI,dword ptr [RDI + 0x38]
LEA RCX,[RDI + 0x40]
MOV RDI,RBX
MOV EDX,0x4
CALL 0x0011cbe0
MOV R15,RAX
MOV RDI,R14
MOV RSI,RBX
CALL 0x0012cc20
MOV RDI,RBX
MOV RSI,R15
CALL 0x0011ccb0
LEA RSI,[0x1690c4]
MOV RDI,R15
CALL 0x0011c690
MOV RDI,RBX
MOV RSI,R15
C... |
/* test_log::build_graph(ggml_context*) */
int8 __thiscall test_log::build_graph(test_log *this,ggml_context *param_1)
{
int8 uVar1;
uVar1 = ggml_new_tensor(param_1,*(int4 *)(this + 0x38),4,this + 0x40);
test_case::add_sentinel((test_case *)this,param_1);
ggml_set_param(param_1,uVar1);
ggml_set_name(uVa... | |
61,968 | minja::UnaryOpExpr::UnaryOpExpr(minja::Location const&, std::shared_ptr<minja::Expression>&&, minja::UnaryOpExpr::Op) | monkey531[P]llama/common/minja.hpp | UnaryOpExpr(const Location & location, std::shared_ptr<Expression> && e, Op o)
: Expression(location), expr(std::move(e)), op(o) {} | O2 | cpp | minja::UnaryOpExpr::UnaryOpExpr(minja::Location const&, std::shared_ptr<minja::Expression>&&, minja::UnaryOpExpr::Op):
pushq %r15
pushq %r14
pushq %rbx
movl %ecx, %ebx
movq %rdx, %r14
movq %rdi, %r15
callq 0x633da
leaq 0x98fb7(%rip), %rax # 0xfc368
addq $0x10, %rax
movq %rax, (%r15)
andq $0x0, 0x28(%r15)
movups (%r... | _ZN5minja11UnaryOpExprC2ERKNS_8LocationEOSt10shared_ptrINS_10ExpressionEENS0_2OpE:
push r15
push r14
push rbx
mov ebx, ecx
mov r14, rdx
mov r15, rdi
call _ZN5minja10ExpressionC2ERKNS_8LocationE; minja::Expression::Expression(minja::Location const&)
lea rax, _ZTVN5minja11UnaryOpExprE; `vtable... | long long * minja::UnaryOpExpr::UnaryOpExpr(long long a1, long long a2, __int128 *a3, int a4)
{
long long *result; // rax
__int128 v7; // xmm0
minja::Expression::Expression();
result = &`vtable for'minja::UnaryOpExpr + 2;
*(_QWORD *)a1 = &`vtable for'minja::UnaryOpExpr + 2;
*(_QWORD *)(a1 + 40) = 0LL;
v7... | UnaryOpExpr:
PUSH R15
PUSH R14
PUSH RBX
MOV EBX,ECX
MOV R14,RDX
MOV R15,RDI
CALL 0x001633da
LEA RAX,[0x1fc368]
ADD RAX,0x10
MOV qword ptr [R15],RAX
AND qword ptr [R15 + 0x28],0x0
MOVUPS XMM0,xmmword ptr [R14]
AND qword ptr [R14 + 0x8],0x0
MOVUPS xmmword ptr [R15 + 0x20],XMM0
AND qword ptr [R14],0x0
MOV dword ptr [R15 +... |
/* minja::UnaryOpExpr::UnaryOpExpr(minja::Location const&, std::shared_ptr<minja::Expression>&&,
minja::UnaryOpExpr::Op) */
void __thiscall
minja::UnaryOpExpr::UnaryOpExpr
(UnaryOpExpr *this,Location *param_1,int8 *param_2,int4 param_4)
{
int8 uVar1;
Expression::Expression((Expression *)this,para... | |
61,969 | testing::internal::PrintTo(char const*, std::ostream*) | giladroyz[P]FindPeaks/build_O3/_deps/googletest-src/googletest/src/gtest-printers.cc | void PrintTo(const char* s, ostream* os) { PrintCStringTo(s, os); } | O3 | cpp | testing::internal::PrintTo(char const*, std::ostream*):
pushq %r14
pushq %rbx
pushq %rax
movq %rsi, %rbx
testq %rdi, %rdi
je 0x179c5
movq %rdi, %r14
movq %rbx, %rdi
movq %r14, %rsi
callq 0x83b0
leaq 0x2cdc9(%rip), %rsi # 0x44764
movl $0xd, %edx
movq %rax, %rdi
callq 0x85b0
movq %r14, %rdi
callq 0x8200
movq %r14, %r... | _ZN7testing8internal7PrintToEPKcPSo:
push r14
push rbx
push rax
mov rbx, rsi
test rdi, rdi
jz short loc_179C5
mov r14, rdi
mov rdi, rbx
mov rsi, r14
call __ZNSo9_M_insertIPKvEERSoT_; std::ostream::_M_insert<void const*>(void const*)
lea rsi, aPointingTo; " pointing to "
mov e... | long long testing::internal::PrintTo(testing::internal *this, const char *a2, std::ostream *a3)
{
long long v3; // rax
long long v4; // rax
long long v5; // rcx
if ( !this )
return std::__ostream_insert<char,std::char_traits<char>>(a2, "NULL", 4LL);
v3 = std::ostream::_M_insert<void const*>(a2, this, a3... | PrintTo:
PUSH R14
PUSH RBX
PUSH RAX
MOV RBX,RSI
TEST RDI,RDI
JZ 0x001179c5
MOV R14,RDI
MOV RDI,RBX
MOV RSI,R14
CALL 0x001083b0
LEA RSI,[0x144764]
MOV EDX,0xd
MOV RDI,RAX
CALL 0x001085b0
MOV RDI,R14
CALL 0x00108200
MOV RDI,R14
MOV RSI,RAX
MOV RDX,RBX
ADD RSP,0x8
POP RBX
POP R14
JMP 0x00117d45
LAB_001179c5:
LEA RSI,[0x14... |
/* testing::internal::PrintTo(char const*, std::ostream*) */
void testing::internal::PrintTo(char *param_1,ostream *param_2)
{
ostream *poVar1;
size_t sVar2;
if (param_1 != (char *)0x0) {
poVar1 = std::ostream::_M_insert<void_const*>(param_2);
std::__ostream_insert<char,std::char_traits<char>>(poVar... | |
61,970 | ma_check_bitmap_data | eloqsql/storage/maria/ma_bitmap.c | my_bool _ma_check_bitmap_data(MARIA_HA *info, enum en_page_type page_type,
uint empty_space, uint bitmap_pattern)
{
uint bits;
switch (page_type) {
case UNALLOCATED_PAGE:
case MAX_PAGE_TYPE:
bits= 0;
break;
case HEAD_PAGE:
bits= _ma_free_size_to_head_pattern(&info->s-... | O3 | c | ma_check_bitmap_data:
pushq %rbp
movq %rsp, %rbp
cmpl $0x3, %esi
je 0x56bca
xorl %eax, %eax
cmpl $0x2, %esi
je 0x56ba5
cmpl $0x1, %esi
jne 0x56bcf
movq (%rdi), %rsi
movl $0x4, %eax
cmpl %edx, 0xb24(%rsi)
ja 0x56bcf
movl $0x3, %eax
cmpl %edx, 0xb20(%rsi)
ja 0x56bcf
movl $0x2, %eax
cmpl %edx, 0xb1c(%rsi)
ja 0x56bcf
xorl ... | _ma_check_bitmap_data:
push rbp
mov rbp, rsp
cmp esi, 3
jz short loc_56BCA
xor eax, eax
cmp esi, 2
jz short loc_56BA5
cmp esi, 1
jnz short loc_56BCF
mov rsi, [rdi]
mov eax, 4
cmp [rsi+0B24h], edx
ja short loc_56BCF
mov eax, 3
cmp [rsi+0B20h], edx
ja sho... | bool ma_check_bitmap_data(long long *a1, int a2, unsigned int a3, int a4)
{
int v4; // eax
_DWORD *v5; // rsi
long long v6; // rsi
if ( a2 == 3 )
{
v4 = 7;
}
else
{
v4 = 0;
if ( a2 == 2 )
{
v6 = *a1;
if ( *(_DWORD *)(*a1 + 2840) > a3 )
{
v4 = 7;
if ( *... | _ma_check_bitmap_data:
PUSH RBP
MOV RBP,RSP
CMP ESI,0x3
JZ 0x00156bca
XOR EAX,EAX
CMP ESI,0x2
JZ 0x00156ba5
CMP ESI,0x1
JNZ 0x00156bcf
MOV RSI,qword ptr [RDI]
MOV EAX,0x4
CMP dword ptr [RSI + 0xb24],EDX
JA 0x00156bcf
MOV EAX,0x3
CMP dword ptr [RSI + 0xb20],EDX
JA 0x00156bcf
MOV EAX,0x2
CMP dword ptr [RSI + 0xb1c],EDX
J... |
bool _ma_check_bitmap_data(long *param_1,int param_2,uint param_3,uint param_4)
{
long lVar1;
uint uVar2;
if (param_2 == 3) {
uVar2 = 7;
}
else {
uVar2 = 0;
if (param_2 == 2) {
lVar1 = *param_1;
if ((param_3 < *(uint *)(lVar1 + 0xb18)) && (uVar2 = 7, *(uint *)(lVar1 + 0xb30) <= pa... | |
61,971 | pfs_new_thread_v1 | eloqsql/storage/perfschema/pfs.cc | PSI_thread*
pfs_new_thread_v1(PSI_thread_key key, const void *identity, ulonglong processlist_id)
{
PFS_thread *pfs;
PFS_thread_class *klass= find_thread_class(key);
if (likely(klass != NULL))
{
pfs= create_thread(klass, identity, processlist_id);
if (pfs != NULL)
{
PFS_thread *parent= my_thr... | O0 | cpp | pfs_new_thread_v1:
pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movl %edi, -0x4(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movl -0x4(%rbp), %edi
callq 0x4e590
movq %rax, -0x28(%rbp)
cmpq $0x0, -0x28(%rbp)
setne %al
andb $0x1, %al
movzbl %al, %eax
cmpl $0x0, %eax
je 0x2de87
movq -0x28(%rbp), %rdi
movq -0x10(%rbp... | pfs_new_thread_v1:
push rbp
mov rbp, rsp
sub rsp, 30h
mov [rbp+var_4], edi
mov [rbp+var_10], rsi
mov [rbp+var_18], rdx
mov edi, [rbp+var_4]; unsigned int
call _Z17find_thread_classj; find_thread_class(uint)
mov [rbp+var_28], rax
cmp [rbp+var_28], 0
setnz al
and al, 1
movzx ... | long long pfs_new_thread_v1(unsigned int a1, long long a2)
{
long long THR_PFS; // [rsp+0h] [rbp-30h]
long long thread_class; // [rsp+8h] [rbp-28h]
long long thread; // [rsp+10h] [rbp-20h]
thread_class = find_thread_class(a1);
if ( !thread_class )
return 0LL;
thread = create_thread(thread_class, a2);
... | pfs_new_thread_v1:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x30
MOV dword ptr [RBP + -0x4],EDI
MOV qword ptr [RBP + -0x10],RSI
MOV qword ptr [RBP + -0x18],RDX
MOV EDI,dword ptr [RBP + -0x4]
CALL 0x0014e590
MOV qword ptr [RBP + -0x28],RAX
CMP qword ptr [RBP + -0x28],0x0
SETNZ AL
AND AL,0x1
MOVZX EAX,AL
CMP EAX,0x0
JZ 0x0012de87
MO... |
long pfs_new_thread_v1(uint param_1,void *param_2,ulonglong param_3)
{
PFS_thread_class *pPVar1;
long lVar2;
long local_28;
pPVar1 = (PFS_thread_class *)find_thread_class(param_1);
if (pPVar1 == (PFS_thread_class *)0x0) {
local_28 = 0;
}
else {
local_28 = create_thread(pPVar1,param_2,param_3)... | |
61,972 | process_str_arg | eloqsql/strings/my_vsnprintf.c | static char *process_str_arg(CHARSET_INFO *cs, char *to, const char *end,
longlong length_arg, size_t width, char *par,
uint print_type, my_bool nice_cut)
{
int well_formed_error;
uint dots= 0;
size_t plen, left_len= (size_t) (end - to) + 1, slen=0;
my_b... | O3 | c | process_str_arg:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x48, %rsp
movq %r8, %r15
movq %rdi, -0x58(%rbp)
movq %rdx, -0x50(%rbp)
movq %rdx, %r14
movq %rsi, -0x38(%rbp)
subq %rsi, %r14
leaq 0x1(%r14), %rbx
movq %rcx, %r13
negq %r13
movq %rcx, -0x40(%rbp)
cmovsq %rcx, %r13
... | process_str_arg:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 48h
mov r15, r8
mov [rbp+var_58], rdi
mov [rbp+var_50], rdx
mov r14, rdx
mov [rbp+var_38], rsi
sub r14, rsi
lea rbx, [r14+1]
mov r13, rcx
neg r13
mov [rbp+var_40... | long long process_str_arg(
long long a1,
_BYTE *a2,
unsigned long long a3,
long long a4,
unsigned long long a5,
const char *a6,
char a7,
char a8)
{
unsigned long long v9; // r14
unsigned long long v10; // rbx
long long v11; // r13
const char *v12;... | process_str_arg:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x48
MOV R15,R8
MOV qword ptr [RBP + -0x58],RDI
MOV qword ptr [RBP + -0x50],RDX
MOV R14,RDX
MOV qword ptr [RBP + -0x38],RSI
SUB R14,RSI
LEA RBX,[R14 + 0x1]
MOV R13,RCX
NEG R13
MOV qword ptr [RBP + -0x40],RCX
CMOVS R13,RCX
TEST R9... |
int1 *
process_str_arg(long param_1,int1 *param_2,int1 *param_3,ulong param_4,ulong param_5,
char *param_6,uint param_7,char param_8)
{
char cVar1;
void *pvVar2;
uint uVar3;
uint uVar4;
size_t sVar5;
int1 *puVar6;
void *__s;
long lVar7;
char *__string;
long lVar8;
ulong uVar9;
c... | |
61,973 | common_context_params_to_llama(common_params const&) | monkey531[P]llama/common/common.cpp | struct llama_context_params common_context_params_to_llama(const common_params & params) {
auto cparams = llama_context_default_params();
cparams.n_ctx = params.n_ctx;
cparams.n_seq_max = params.n_parallel;
cparams.n_batch = params.n_batch;
cparams.n_ubatch = ... | O1 | cpp | common_context_params_to_llama(common_params const&):
pushq %r14
pushq %rbx
pushq %rax
movq %rsi, %r14
movq %rdi, %rbx
callq 0x1a0b0
movl 0x18(%r14), %eax
movl %eax, 0xc(%rbx)
movq 0x4(%r14), %rax
movq %rax, (%rbx)
movl 0xc(%r14), %eax
movl %eax, 0x8(%rbx)
movl 0x274(%r14), %eax
movl %eax, 0x10(%rbx)
movl 0x488(%r14), ... | _Z30common_context_params_to_llamaRK13common_params:
push r14
push rbx
push rax
mov r14, rsi
mov rbx, rdi
call _llama_context_default_params
mov eax, [r14+18h]
mov [rbx+0Ch], eax
mov rax, [r14+4]
mov [rbx], rax
mov eax, [r14+0Ch]
mov [rbx+8], eax
mov eax, [r14+274h]
mov ... | const common_params * common_context_params_to_llama(const common_params *a1, long long a2)
{
int v2; // eax
int v3; // ecx
llama_context_default_params(a1);
*((_DWORD *)a1 + 3) = *(_DWORD *)(a2 + 24);
*(_QWORD *)a1 = *(_QWORD *)(a2 + 4);
*((_DWORD *)a1 + 2) = *(_DWORD *)(a2 + 12);
v2 = *(_DWORD *)(a2 + ... | common_context_params_to_llama:
PUSH R14
PUSH RBX
PUSH RAX
MOV R14,RSI
MOV RBX,RDI
CALL 0x0011a0b0
MOV EAX,dword ptr [R14 + 0x18]
MOV dword ptr [RBX + 0xc],EAX
MOV RAX,qword ptr [R14 + 0x4]
MOV qword ptr [RBX],RAX
MOV EAX,dword ptr [R14 + 0xc]
MOV dword ptr [RBX + 0x8],EAX
MOV EAX,dword ptr [R14 + 0x274]
MOV dword ptr ... |
/* common_context_params_to_llama(common_params const&) */
common_params * common_context_params_to_llama(common_params *param_1)
{
int iVar1;
int8 uVar2;
int iVar3;
long in_RSI;
llama_context_default_params();
*(int4 *)(param_1 + 0xc) = *(int4 *)(in_RSI + 0x18);
*(int8 *)param_1 = *(int8 *)(in_RSI ... | |
61,974 | common_context_params_to_llama(common_params const&) | monkey531[P]llama/common/common.cpp | struct llama_context_params common_context_params_to_llama(const common_params & params) {
auto cparams = llama_context_default_params();
cparams.n_ctx = params.n_ctx;
cparams.n_seq_max = params.n_parallel;
cparams.n_batch = params.n_batch;
cparams.n_ubatch = ... | O2 | cpp | common_context_params_to_llama(common_params const&):
pushq %r14
pushq %rbx
pushq %rax
movq %rsi, %r14
movq %rdi, %rbx
callq 0x230a0
movl 0x18(%r14), %eax
movl %eax, 0xc(%rbx)
movq 0x4(%r14), %rax
movq %rax, (%rbx)
movl 0xc(%r14), %eax
movl %eax, 0x8(%rbx)
movl 0x274(%r14), %eax
movl %eax, 0x10(%rbx)
movl 0x488(%r14), ... | _Z30common_context_params_to_llamaRK13common_params:
push r14
push rbx
push rax
mov r14, rsi
mov rbx, rdi
call _llama_context_default_params
mov eax, [r14+18h]
mov [rbx+0Ch], eax
mov rax, [r14+4]
mov [rbx], rax
mov eax, [r14+0Ch]
mov [rbx+8], eax
mov eax, [r14+274h]
mov ... | const common_params * common_context_params_to_llama(const common_params *a1, long long a2)
{
int v2; // eax
int v3; // ecx
llama_context_default_params(a1);
*((_DWORD *)a1 + 3) = *(_DWORD *)(a2 + 24);
*(_QWORD *)a1 = *(_QWORD *)(a2 + 4);
*((_DWORD *)a1 + 2) = *(_DWORD *)(a2 + 12);
v2 = *(_DWORD *)(a2 + ... | common_context_params_to_llama:
PUSH R14
PUSH RBX
PUSH RAX
MOV R14,RSI
MOV RBX,RDI
CALL 0x001230a0
MOV EAX,dword ptr [R14 + 0x18]
MOV dword ptr [RBX + 0xc],EAX
MOV RAX,qword ptr [R14 + 0x4]
MOV qword ptr [RBX],RAX
MOV EAX,dword ptr [R14 + 0xc]
MOV dword ptr [RBX + 0x8],EAX
MOV EAX,dword ptr [R14 + 0x274]
MOV dword ptr ... |
/* common_context_params_to_llama(common_params const&) */
common_params * common_context_params_to_llama(common_params *param_1)
{
int iVar1;
int8 uVar2;
int iVar3;
long in_RSI;
llama_context_default_params();
*(int4 *)(param_1 + 0xc) = *(int4 *)(in_RSI + 0x18);
*(int8 *)param_1 = *(int8 *)(in_RSI ... | |
61,975 | multadd | eloqsql/strings/dtoa.c | static Bigint *multadd(Bigint *b, int m, int a, Stack_alloc *alloc)
{
int i, wds;
ULong *x;
ULLong carry, y;
Bigint *b1;
wds= b->wds;
x= b->p.x;
i= 0;
carry= a;
do
{
y= *x * (ULLong)m + carry;
carry= y >> 32;
*x++= (ULong)(y & FFFFFFFF);
}
while (++i < wds);
if (carry)
{
if ... | O3 | c | multadd:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movq %rcx, %r14
movq %rdi, %rbx
movslq 0x14(%rdi), %r12
movq (%rdi), %rax
movslq %edx, %r13
movslq %esi, %rcx
cmpl $0x2, %r12d
movl $0x1, %edx
cmovgel %r12d, %edx
xorl %esi, %esi
movl (%rax,%rsi,4), %edi
imulq %rcx, %r... | multadd:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
push rax
mov r14, rcx
mov rbx, rdi
movsxd r12, dword ptr [rdi+14h]
mov rax, [rdi]
movsxd r13, edx
movsxd rcx, esi
cmp r12d, 2
mov edx, 1
cmovge edx, r12d
xor esi, esi
loc_607FA:
mov edi, ... | unsigned long long multadd(unsigned long long a1, int a2, int a3, unsigned long long *a4)
{
unsigned long long v5; // rbx
long long v6; // r12
long long v7; // rax
unsigned long long v8; // r13
long long v9; // rcx
int v10; // edx
long long v11; // rsi
unsigned long long v12; // rdi
long long v13; //... | multadd:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV R14,RCX
MOV RBX,RDI
MOVSXD R12,dword ptr [RDI + 0x14]
MOV RAX,qword ptr [RDI]
MOVSXD R13,EDX
MOVSXD RCX,ESI
CMP R12D,0x2
MOV EDX,0x1
CMOVGE EDX,R12D
XOR ESI,ESI
LAB_001607fa:
MOV EDI,dword ptr [RAX + RSI*0x4]
IMUL RDI,RCX
ADD RDI,R1... |
long * multadd(long *param_1,int param_2,int param_3,int8 param_4)
{
int iVar1;
long lVar2;
long *plVar3;
int iVar4;
long lVar5;
ulong uVar6;
ulong uVar7;
iVar1 = *(int *)((long)param_1 + 0x14);
lVar2 = *param_1;
uVar7 = (ulong)param_3;
iVar4 = 1;
if (1 < iVar1) {
iVar4 = iVar1;
}
l... | |
61,976 | my_strtoull | eloqsql/libmariadb/libmariadb/ma_stmt_codec.c | static unsigned long long my_strtoull(const char *str, size_t len, const char **end, int *err)
{
unsigned long long val = 0;
const char *p = str;
const char *end_str = p + len;
for (; p < end_str; p++)
{
if (*p < '0' || *p > '9')
break;
if (val > ULONGLONG_MAX /10 || val*10 > ULONGLONG_MAX - (... | O0 | c | my_strtoull:
pushq %rbp
movq %rsp, %rbp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movq $0x0, -0x28(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0x30(%rbp)
movq -0x30(%rbp), %rax
addq -0x10(%rbp), %rax
movq %rax, -0x38(%rbp)
movq -0x30(%rbp), %rax
cmpq -0x38(%rbp), %rax
jae 0x... | my_strtoull:
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], 0
mov rax, [rbp+var_8]
mov [rbp+var_30], rax
mov rax, [rbp+var_30]
add rax, [rbp+var_10]
mov [rbp+var_38], rax
loc_941D0:
mov rax... | unsigned long long my_strtoull(char *a1, long long a2, char **a3, _DWORD *a4)
{
char *i; // [rsp+8h] [rbp-30h]
unsigned long long v6; // [rsp+10h] [rbp-28h]
v6 = 0LL;
for ( i = a1; i < &a1[a2] && *i >= 48 && *i <= 57; ++i )
{
if ( v6 > 0x1999999999999999LL || 10 * v6 > -1LL - (*i - 48) )
{
*a4... | my_strtoull:
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],0x0
MOV RAX,qword ptr [RBP + -0x8]
MOV qword ptr [RBP + -0x30],RAX
MOV RAX,qword ptr [RBP + -0x30]
ADD RAX,qword ptr [RBP + -0x10]
... |
ulong my_strtoull(char *param_1,long param_2,int8 *param_3,int4 *param_4)
{
ulong uVar1;
char *local_38;
ulong local_30;
local_30 = 0;
local_38 = param_1;
while( true ) {
if (((param_1 + param_2 <= local_38) || (*local_38 < '0')) || ('9' < *local_38))
goto LAB_0019425e;
if ((0x1999999999999... | |
61,977 | my_strtoull | eloqsql/libmariadb/libmariadb/ma_stmt_codec.c | static unsigned long long my_strtoull(const char *str, size_t len, const char **end, int *err)
{
unsigned long long val = 0;
const char *p = str;
const char *end_str = p + len;
for (; p < end_str; p++)
{
if (*p < '0' || *p > '9')
break;
if (val > ULONGLONG_MAX /10 || val*10 > ULONGLONG_MAX - (... | O3 | c | my_strtoull:
pushq %rbp
movq %rsp, %rbp
pushq %rbx
testq %rsi, %rsi
jle 0x81a95
addq %rdi, %rsi
xorl %r8d, %r8d
movabsq $0x1999999999999999, %r9 # imm = 0x1999999999999999
xorl %eax, %eax
movsbq (%rdi,%r8), %r10
leal -0x3a(%r10), %r11d
cmpb $-0xa, %r11b
jb 0x81a9f
cmpq %r9, %rax
ja 0x81a99
leaq (%rax,%rax), %r11
leaq (... | my_strtoull:
push rbp
mov rbp, rsp
push rbx
test rsi, rsi
jle short loc_81A95
add rsi, rdi
xor r8d, r8d
mov r9, 1999999999999999h
xor eax, eax
loc_81A50:
movsx r10, byte ptr [rdi+r8]
lea r11d, [r10-3Ah]
cmp r11b, 0F6h
jb short loc_81A9F
cmp rax, r9
ja short loc_8... | unsigned long long my_strtoull(long long a1, long long a2, _QWORD *a3, _DWORD *a4)
{
unsigned long long v4; // rsi
long long v5; // r8
unsigned long long result; // rax
long long v7; // r10
unsigned long long v8; // r10
if ( a2 <= 0 )
{
result = 0LL;
LABEL_11:
*a4 = 34;
goto LABEL_12;
}
... | my_strtoull:
PUSH RBP
MOV RBP,RSP
PUSH RBX
TEST RSI,RSI
JLE 0x00181a95
ADD RSI,RDI
XOR R8D,R8D
MOV R9,0x1999999999999999
XOR EAX,EAX
LAB_00181a50:
MOVSX R10,byte ptr [RDI + R8*0x1]
LEA R11D,[R10 + -0x3a]
CMP R11B,0xf6
JC 0x00181a9f
CMP RAX,R9
JA 0x00181a99
LEA R11,[RAX + RAX*0x1]
LEA R11,[R11 + R11*0x4]
MOV EBX,0x2f
SU... |
ulong my_strtoull(long param_1,long param_2,long *param_3,int4 *param_4)
{
long lVar1;
char cVar2;
ulong uVar3;
long lVar4;
if (param_2 < 1) {
uVar3 = 0;
LAB_00181aa7:
*param_4 = 0x22;
}
else {
lVar4 = 0;
uVar3 = 0;
do {
cVar2 = *(char *)(param_1 + lVar4);
if ((byte)(c... | |
61,978 | my_numcells_sjis | eloqsql/strings/ctype-sjis.c | static
size_t my_numcells_sjis(CHARSET_INFO *cs __attribute__((unused)),
const char *str, const char *str_end)
{
size_t clen;
const uchar *b= (const uchar *) str;
const uchar *e= (const uchar *) str_end;
for (clen= 0; b < e; )
{
if (*b >= 0xA1 && *b <= 0xDF)
{
clen++;
... | O3 | c | my_numcells_sjis:
cmpq %rdx, %rsi
jae 0xb6247
pushq %rbp
movq %rsp, %rbp
xorl %eax, %eax
movl $0x1, %ecx
movb (%rsi), %dil
leal 0x5f(%rdi), %r8d
shrb $0x7, %dil
movzbl %dil, %edi
incq %rdi
cmpb $0x3f, %r8b
cmovbq %rcx, %rdi
addq %rdi, %rax
addq %rdi, %rsi
cmpq %rdx, %rsi
jb 0xb6220
popq %rbp
retq
xorl %eax, %eax
retq
| my_numcells_sjis:
cmp rsi, rdx
jnb short loc_B6247
push rbp
mov rbp, rsp
xor eax, eax
mov ecx, 1
loc_B6220:
mov dil, [rsi]
lea r8d, [rdi+5Fh]
shr dil, 7
movzx edi, dil
inc rdi
cmp r8b, 3Fh ; '?'
cmovb rdi, rcx
add rax, rdi
add rsi, rdi
cmp rsi, rdx
jb shor... | long long my_numcells_sjis(long long a1, _BYTE *a2, unsigned long long a3)
{
long long result; // rax
long long v4; // rdi
if ( (unsigned long long)a2 >= a3 )
return 0LL;
result = 0LL;
do
{
v4 = (*a2 >> 7) + 1LL;
if ( (unsigned __int8)(*a2 + 95) < 0x3Fu )
v4 = 1LL;
result += v4;
... | my_numcells_sjis:
CMP RSI,RDX
JNC 0x001b6247
PUSH RBP
MOV RBP,RSP
XOR EAX,EAX
MOV ECX,0x1
LAB_001b6220:
MOV DIL,byte ptr [RSI]
LEA R8D,[RDI + 0x5f]
SHR DIL,0x7
MOVZX EDI,DIL
INC RDI
CMP R8B,0x3f
CMOVC RDI,RCX
ADD RAX,RDI
ADD RSI,RDI
CMP RSI,RDX
JC 0x001b6220
POP RBP
RET
LAB_001b6247:
XOR EAX,EAX
RET
|
long my_numcells_sjis(int8 param_1,byte *param_2,byte *param_3)
{
long lVar1;
long lVar2;
if (param_2 < param_3) {
lVar1 = 0;
do {
lVar2 = (ulong)(*param_2 >> 7) + 1;
if ((byte)(*param_2 + 0x5f) < 0x3f) {
lVar2 = 1;
}
lVar1 = lVar1 + lVar2;
param_2 = param_2 + lV... | |
61,979 | aria_read_index | eloqsql/storage/maria/ma_backup.c | int aria_read_index(File kfile, ARIA_TABLE_CAPABILITIES *cap, ulonglong block,
uchar *buffer)
{
MARIA_SHARE share;
int retry= 0;
DBUG_ENTER("aria_read_index");
share.keypage_header= cap->keypage_header;
share.block_size= cap->block_size;
do
{
int error;
size_t length;
if (... | O3 | c | aria_read_index:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0xc48, %rsp # imm = 0xC48
movq %rcx, %r14
movq %rdx, %rbx
movq %rsi, %r15
movl %edi, %r12d
movq %fs:0x28, %rax
movq %rax, -0x30(%rbp)
movl 0x14(%rsi), %r13d
movl %r13d, -0x524(%rbp)
movl 0x10(%rsi), %eax
... | aria_read_index:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 0C48h
mov r14, rcx
mov rbx, rdx
mov r15, rsi
mov r12d, edi
mov rax, fs:28h
mov [rbp+var_30], rax
mov r13d, [rsi+14h]
mov [rbp+var_524], r13d
mov eax, [rsi+10h]
mov ... | long long aria_read_index(unsigned int a1, long long a2, unsigned long long a3, long long a4)
{
long long v7; // r13
unsigned int v8; // eax
long long v9; // rax
long long v10; // rcx
unsigned long long v11; // rsi
long long result; // rax
unsigned int v13; // r8d
_BYTE v14[1860]; // [rsp+8h] [rbp-C68h... | aria_read_index:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0xc48
MOV R14,RCX
MOV RBX,RDX
MOV R15,RSI
MOV R12D,EDI
MOV RAX,qword ptr FS:[0x28]
MOV qword ptr [RBP + -0x30],RAX
MOV R13D,dword ptr [RSI + 0x14]
MOV dword ptr [RBP + -0x524],R13D
MOV EAX,dword ptr [RSI + 0x10]
MOV dword ptr [RB... |
int aria_read_index(int4 param_1,ulong *param_2,ulong param_3,long param_4)
{
ushort uVar1;
char cVar2;
uint uVar3;
int iVar4;
ulong uVar5;
int *piVar6;
ulong uVar7;
ulong uVar8;
long in_FS_OFFSET;
int1 local_c70 [1860];
uint local_52c;
uint local_4b4;
long local_38;
local_38 = *(long *... | |
61,980 | js_std_file_eof | bluesky950520[P]quickjs/quickjs-libc.c | static JSValue js_std_file_eof(JSContext *ctx, JSValue this_val,
int argc, JSValue *argv)
{
FILE *f = js_std_file_get(ctx, this_val);
if (!f)
return JS_EXCEPTION;
return JS_NewBool(ctx, feof(f));
} | O0 | c | js_std_file_eof:
subq $0x68, %rsp
movq %rsi, 0x28(%rsp)
movq %rdx, 0x30(%rsp)
movq %rdi, 0x20(%rsp)
movl %ecx, 0x1c(%rsp)
movq %r8, 0x10(%rsp)
movq 0x20(%rsp), %rdi
movq 0x28(%rsp), %rsi
movq 0x30(%rsp), %rdx
callq 0x127c0
movq %rax, 0x8(%rsp)
cmpq $0x0, 0x8(%rsp)
jne 0x11d30
movl $0x0, 0x38(%rsp)
movq $0x6, 0x40(%rsp)... | js_std_file_eof:
sub rsp, 68h
mov [rsp+68h+var_40], rsi
mov [rsp+68h+var_38], rdx
mov [rsp+68h+var_48], rdi
mov [rsp+68h+var_4C], ecx
mov [rsp+68h+var_58], r8
mov rdi, [rsp+68h+var_48]
mov rsi, [rsp+68h+var_40]
mov rdx, [rsp+68h+var_38]
call js_std_file_get
mov [rsp+68h+var_60... | long long js_std_file_eof(long long a1, long long a2, long long a3)
{
long long v4; // [rsp+8h] [rbp-60h]
long long v5; // [rsp+38h] [rbp-30h]
long long v6; // [rsp+58h] [rbp-10h]
v4 = js_std_file_get(a1, a2, a3);
if ( v4 )
{
LODWORD(v6) = feof(v4) != 0;
return v6;
}
else
{
LODWORD(v5) =... | js_std_file_eof:
SUB RSP,0x68
MOV qword ptr [RSP + 0x28],RSI
MOV qword ptr [RSP + 0x30],RDX
MOV qword ptr [RSP + 0x20],RDI
MOV dword ptr [RSP + 0x1c],ECX
MOV qword ptr [RSP + 0x10],R8
MOV RDI,qword ptr [RSP + 0x20]
MOV RSI,qword ptr [RSP + 0x28]
MOV RDX,qword ptr [RSP + 0x30]
CALL 0x001127c0
MOV qword ptr [RSP + 0x8],R... |
int1 [16] js_std_file_eof(int8 param_1,int8 param_2,int8 param_3)
{
int1 auVar1 [16];
int iVar2;
FILE *__stream;
int4 local_30;
int4 uStack_2c;
int8 local_28;
int4 uStack_c;
__stream = (FILE *)js_std_file_get(param_1,param_2,param_3);
if (__stream == (FILE *)0x0) {
local_30 = 0;
local_28... | |
61,981 | nlohmann::json_abi_v3_11_3::detail::iter_impl<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::v... | monkey531[P]llama/common/json.hpp | iter_impl& operator++()
{
JSON_ASSERT(m_object != nullptr);
switch (m_object->m_data.m_type)
{
case value_t::object:
{
std::advance(m_it.object_iterator, 1);
break;
}
case value_t::array:
{
... | O3 | cpp | nlohmann::json_abi_v3_11_3::detail::iter_impl<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::v... | _ZN8nlohmann16json_abi_v3_11_36detail9iter_implIKNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEEEppEv:
mov rax, [rdi]
test rax, rax
jz short loc_8C88D
movzx eax, byte ptr [rax]
cmp eax, 2
jz short loc_8C87E
... | long long nlohmann::json_abi_v3_11_3::detail::iter_impl<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,std::vector,std::string,bool,long,unsigned long,double,std::allocator,nlohmann::json_abi_v3_11_3::adl_serializer,std::vector<unsigned char>,void> const>::operator++(
unsigned _... | operator++:
MOV RAX,qword ptr [RDI]
TEST RAX,RAX
JZ 0x0018c88d
MOVZX EAX,byte ptr [RAX]
CMP EAX,0x2
JZ 0x0018c87e
CMP EAX,0x1
JNZ 0x0018c885
ADD qword ptr [RDI + 0x8],0x30
JMP 0x0018c889
LAB_0018c87e:
ADD qword ptr [RDI + 0x10],0x10
JMP 0x0018c889
LAB_0018c885:
INC qword ptr [RDI + 0x18]
LAB_0018c889:
MOV RAX,RDI
RET
L... |
/* nlohmann::json_abi_v3_11_3::detail::iter_impl<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,
std::vector, std::__cxx11::string, bool, long, unsigned long, double, std::allocator,
nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned
... | |
61,982 | minja::Value::at(unsigned long) | monkey531[P]llama/common/minja.hpp | Value& at(size_t index) {
if (is_null())
throw std::runtime_error("Undefined value or reference");
if (is_array()) return array_->at(index);
if (is_object()) return object_->at(index);
throw std::runtime_error("Value is not an array or object: " + dump());
} | O2 | cpp | minja::Value::at(unsigned long):
pushq %rbp
pushq %r14
pushq %rbx
subq $0x50, %rsp
movq %rsi, %rbx
movq %rdi, %r14
movq %rsi, 0x8(%rsp)
callq 0x634ea
testb %al, %al
jne 0x6adf7
movq 0x10(%r14), %rdi
testq %rdi, %rdi
je 0x6addb
movq %rbx, %rsi
addq $0x50, %rsp
popq %rbx
popq %r14
popq %rbp
jmp 0x6affc
movq 0x20(%r14), %... | _ZN5minja5Value2atEm:
push rbp
push r14
push rbx
sub rsp, 50h
mov rbx, rsi
mov r14, rdi
mov [rsp+68h+var_60], rsi
call _ZNK5minja5Value7is_nullEv; minja::Value::is_null(void)
test al, al
jnz short loc_6ADF7
mov rdi, [r14+10h]
test rdi, rdi
jz short loc_6ADDB
mov rsi, r... | long long minja::Value::at(minja::Value *this, long long a2)
{
long long v3; // rdi
long long v5; // rdi
std::runtime_error *exception; // rbx
void *v7; // rbx
long long v8; // [rsp+8h] [rbp-60h] BYREF
_BYTE v9[32]; // [rsp+10h] [rbp-58h] BYREF
_BYTE v10[56]; // [rsp+30h] [rbp-38h] BYREF
v8 = a2;
if... | at:
PUSH RBP
PUSH R14
PUSH RBX
SUB RSP,0x50
MOV RBX,RSI
MOV R14,RDI
MOV qword ptr [RSP + 0x8],RSI
CALL 0x001634ea
TEST AL,AL
JNZ 0x0016adf7
MOV RDI,qword ptr [R14 + 0x10]
TEST RDI,RDI
JZ 0x0016addb
MOV RSI,RBX
ADD RSP,0x50
POP RBX
POP R14
POP RBP
JMP 0x0016affc
LAB_0016addb:
MOV RDI,qword ptr [R14 + 0x20]
TEST RDI,RDI
... |
/* minja::Value::at(unsigned long) */
void __thiscall minja::Value::at(Value *this,ulong param_1)
{
char cVar1;
runtime_error *prVar2;
ulong local_60;
int1 local_58 [32];
string local_38 [32];
local_60 = param_1;
cVar1 = is_null(this);
if (cVar1 != '\0') {
prVar2 = (runtime_error *)__cxa_alloc... | |
61,983 | std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>& 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_a... | monkey531[P]llama/common/json.hpp | static ReferenceType get_ref_impl(ThisType& obj)
{
// delegate the call to get_ptr<>()
auto* ptr = obj.template get_ptr<typename std::add_pointer<ReferenceType>::type>();
if (JSON_HEDLEY_LIKELY(ptr != nullptr))
{
return *ptr;
}
JSON_THROW(type_error::cre... | O2 | cpp | std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>& 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_a... | _ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE12get_ref_implIRS9_SD_EET_RT0_:
push rbp; char
push r14; int
push rbx; int
sub rsp, 30h
mov r14, rdi
cmp byte ptr [rdi], 3
jnz short ... | long long nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,std::vector,std::string,bool,long,unsigned long,double,std::allocator,nlohmann::json_abi_v3_11_3::adl_serializer,std::vector<unsigned char>,void>::get_ref_impl<std::string&,nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi... | get_ref_impl<std::__cxx11::string&,nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,std::vector,std::__cxx11::string,bool,long,unsigned_long,double,std::allocator,nlohmann::json_abi_v3_11_3::adl_serializer,std::vector<unsigned_char,std::allocator<unsigned_char>>,void>>:
PUSH RBP
PUSH R14
P... |
/* std::__cxx11::string&
nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector,
std::__cxx11::string, bool, long, unsigned long, double, std::allocator,
nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned
char> >, void>::get_r... | |
61,984 | remove_io_thread | eloqsql/mysys/mf_iocache.c | void remove_io_thread(IO_CACHE *cache)
{
IO_CACHE_SHARE *cshare= cache->share;
uint total;
DBUG_ENTER("remove_io_thread");
/* If the writer goes, it needs to flush the write cache. */
if (cache == cshare->source_cache)
flush_io_cache(cache);
mysql_mutex_lock(&cshare->mutex);
DBUG_PRINT("io_cache_sha... | O3 | c | remove_io_thread:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %rbx
pushq %rax
movq %rdi, %r14
movq 0x98(%rdi), %rbx
cmpq %rdi, 0xc0(%rbx)
jne 0x9ac53
movq %r14, %rdi
movl $0x1, %esi
callq 0x9a355
cmpq $0x0, 0x40(%rbx)
jne 0x9ad63
movq %rbx, %rdi
callq 0x2a1f0
movl 0xdc(%rbx), %r15d
decl %r15d
movl %r15d, 0xd... | remove_io_thread:
push rbp
mov rbp, rsp
push r15
push r14
push rbx
push rax
mov r14, rdi
mov rbx, [rdi+98h]
cmp [rbx+0C0h], rdi
jnz short loc_9AC53
mov rdi, r14
mov esi, 1
call my_b_flush_io_cache
loc_9AC53:
cmp qword ptr [rbx+40h], 0
jnz loc_9AD63
mov rdi, rbx
... | long long remove_io_thread(long long *a1)
{
long long v1; // rbx
int v2; // r15d
long long v4; // rdi
long long v5; // rdi
long long v6; // rdi
long long result; // rax
long long v8; // rdi
long long v9; // rdi
long long v10; // rdi
v1 = a1[19];
if ( *(long long **)(v1 + 192) == a1 )
my_b_fl... | remove_io_thread:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH RBX
PUSH RAX
MOV R14,RDI
MOV RBX,qword ptr [RDI + 0x98]
CMP qword ptr [RBX + 0xc0],RDI
JNZ 0x0019ac53
MOV RDI,R14
MOV ESI,0x1
CALL 0x0019a355
LAB_0019ac53:
CMP qword ptr [RBX + 0x40],0x0
JNZ 0x0019ad63
MOV RDI,RBX
CALL 0x0012a1f0
LAB_0019ac66:
MOV R15D,dword... |
void remove_io_thread(long param_1)
{
int *piVar1;
pthread_mutex_t *__mutex;
int iVar2;
__mutex = *(pthread_mutex_t **)(param_1 + 0x98);
if (*(long *)((long)__mutex + 0xc0) == param_1) {
my_b_flush_io_cache(param_1,1);
}
if (*(long *)((long)__mutex + 0x40) == 0) {
pthread_mutex_lock(__mutex);... | |
61,985 | dtoa_alloc | eloqsql/strings/dtoa.c | static char *dtoa_alloc(int i, Stack_alloc *alloc)
{
char *rv;
int aligned_size= MY_ALIGN(i, SIZEOF_CHARP);
if (alloc->free + aligned_size <= alloc->end)
{
rv= alloc->free;
alloc->free+= aligned_size;
}
else
rv= malloc(i);
return rv;
} | O0 | c | dtoa_alloc:
pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movl %edi, -0x4(%rbp)
movq %rsi, -0x10(%rbp)
movl -0x4(%rbp), %eax
addl $0x8, %eax
subl $0x1, %eax
andl $-0x8, %eax
movl %eax, -0x1c(%rbp)
movq -0x10(%rbp), %rax
movq 0x8(%rax), %rax
movslq -0x1c(%rbp), %rcx
addq %rcx, %rax
movq -0x10(%rbp), %rcx
cmpq 0x10(%rcx), ... | dtoa_alloc:
push rbp
mov rbp, rsp
sub rsp, 20h
mov [rbp+var_4], edi
mov [rbp+var_10], rsi
mov eax, [rbp+var_4]
add eax, 8
sub eax, 1
and eax, 0FFFFFFF8h
mov [rbp+var_1C], eax
mov rax, [rbp+var_10]
mov rax, [rax+8]
movsxd rcx, [rbp+var_1C]
add rax, rcx
mov rcx, [rb... | long long dtoa_alloc(int a1, long long a2)
{
signed int v3; // [rsp+4h] [rbp-1Ch]
long long v4; // [rsp+8h] [rbp-18h]
v3 = (a1 + 7) & 0xFFFFFFF8;
if ( (unsigned long long)(v3 + *(_QWORD *)(a2 + 8)) > *(_QWORD *)(a2 + 16) )
return malloc(a1);
v4 = *(_QWORD *)(a2 + 8);
*(_QWORD *)(a2 + 8) = v3 + v4;
r... | dtoa_alloc:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x20
MOV dword ptr [RBP + -0x4],EDI
MOV qword ptr [RBP + -0x10],RSI
MOV EAX,dword ptr [RBP + -0x4]
ADD EAX,0x8
SUB EAX,0x1
AND EAX,0xfffffff8
MOV dword ptr [RBP + -0x1c],EAX
MOV RAX,qword ptr [RBP + -0x10]
MOV RAX,qword ptr [RAX + 0x8]
MOVSXD RCX,dword ptr [RBP + -0x1c]
ADD RAX,... |
void * dtoa_alloc(int param_1,long param_2)
{
uint uVar1;
int8 local_20;
uVar1 = param_1 + 7U & 0xfffffff8;
if (*(ulong *)(param_2 + 0x10) < (ulong)(*(long *)(param_2 + 8) + (long)(int)uVar1)) {
local_20 = malloc((long)param_1);
}
else {
local_20 = *(void **)(param_2 + 8);
*(long *)(param_2... | |
61,986 | pvio_socket_set_timeout | eloqsql/libmariadb/plugins/pvio/pvio_socket.c | my_bool pvio_socket_set_timeout(MARIADB_PVIO *pvio, enum enum_pvio_timeout type, int timeout)
{
struct st_pvio_socket *csock= NULL;
if (!pvio)
return 1;
csock= (struct st_pvio_socket *)pvio->data;
pvio->timeout[type]= (timeout > 0) ? timeout * 1000 : -1;
if (csock)
return pvio_socket_change_timeout(pv... | O3 | c | pvio_socket_set_timeout:
pushq %rbp
movq %rsp, %rbp
testq %rdi, %rdi
je 0x2e701
movl %edx, %eax
imull $0x3e8, %edx, %edx # imm = 0x3E8
testl %eax, %eax
movl $0xffffffff, %eax # imm = 0xFFFFFFFF
cmovgl %edx, %eax
movl %esi, %ecx
cmpq $0x0, (%rdi)
movl %eax, 0x24(%rdi,%rcx,4)
je 0x2e705
popq %rbp
jmp 0x2f358
m... | pvio_socket_set_timeout:
push rbp
mov rbp, rsp
test rdi, rdi
jz short loc_2E701
mov eax, edx
imul edx, 3E8h
test eax, eax
mov eax, 0FFFFFFFFh
cmovg eax, edx
mov ecx, esi
cmp qword ptr [rdi], 0
mov [rdi+rcx*4+24h], eax
jz short loc_2E705
pop rbp
jmp pvio_socket_cha... | char pvio_socket_set_timeout(_QWORD *a1, unsigned int a2, int a3)
{
int v4; // edx
bool v5; // cc
int v6; // eax
bool v7; // zf
if ( !a1 )
return 1;
v4 = 1000 * a3;
v5 = a3 <= 0;
v6 = -1;
if ( !v5 )
v6 = v4;
v7 = *a1 == 0LL;
*((_DWORD *)a1 + a2 + 9) = v6;
if ( v7 )
return 0;
else... | pvio_socket_set_timeout:
PUSH RBP
MOV RBP,RSP
TEST RDI,RDI
JZ 0x0012e701
MOV EAX,EDX
IMUL EDX,EDX,0x3e8
TEST EAX,EAX
MOV EAX,0xffffffff
CMOVG EAX,EDX
MOV ECX,ESI
CMP qword ptr [RDI],0x0
MOV dword ptr [RDI + RCX*0x4 + 0x24],EAX
JZ 0x0012e705
POP RBP
JMP 0x0012f358
LAB_0012e701:
MOV AL,0x1
JMP 0x0012e707
LAB_0012e705:
XO... |
int8 pvio_socket_set_timeout(long *param_1,uint param_2,int param_3)
{
long lVar1;
int iVar2;
int8 uVar3;
if (param_1 == (long *)0x0) {
uVar3 = 1;
}
else {
iVar2 = -1;
if (0 < param_3) {
iVar2 = param_3 * 1000;
}
lVar1 = *param_1;
*(int *)((long)param_1 + (ulong)param_2 * ... | |
61,987 | ssz_fixed_length | corpus-core[P]colibri-stateless/src/util/ssz.c | size_t ssz_fixed_length(const ssz_def_t* def) {
if (ssz_is_dynamic(def))
return 4;
switch (def->type) {
case SSZ_TYPE_UINT:
return def->def.uint.len;
case SSZ_TYPE_BOOLEAN:
return 1;
case SSZ_TYPE_CONTAINER: {
size_t len = 0;
for (int i = 0; i < def->def.container.len; i++)
... | O2 | c | ssz_fixed_length:
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
movq %rdi, %r14
pushq $0x1
popq %r15
pushq $0x4
popq %r12
xorl %ebx, %ebx
leaq 0x33520(%rip), %r13 # 0x7f188
movq %r14, %rdi
callq 0x4bbf0
testb %al, %al
jne 0x4bc96
movl 0x8(%r14), %eax
cmpq $0x5, %rax
ja 0x4bcd7
movslq (%r13,%rax,4), %rax
ad... | ssz_fixed_length:
push r15
push r14
push r13
push r12
push rbx
mov r14, rdi
push 1
pop r15
push 4
pop r12
xor ebx, ebx
lea r13, jpt_4BC86
loc_4BC68:
mov rdi, r14
call ssz_is_dynamic
test al, al
jnz short loc_4BC96
mov eax, [r14+8]
cmp rax, 5; switch 6 cases... | long long ssz_fixed_length(_DWORD *a1)
{
long long v2; // r15
long long v3; // rbx
long long v4; // rax
long long v5; // r12
long long v6; // r13
v2 = 1LL;
v3 = 0LL;
while ( 2 )
{
if ( (unsigned __int8)ssz_is_dynamic((long long)a1) )
{
v3 = 4LL;
}
else
{
switch ( a1[2... | ssz_fixed_length:
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
MOV R14,RDI
PUSH 0x1
POP R15
PUSH 0x4
POP R12
XOR EBX,EBX
LEA R13,[0x17f188]
LAB_0014bc68:
MOV RDI,R14
CALL 0x0014bbf0
TEST AL,AL
JNZ 0x0014bc96
MOV EAX,dword ptr [R14 + 0x8]
CMP RAX,0x5
JA 0x0014bcd7
MOVSXD RAX,dword ptr [R13 + RAX*0x4]
ADD RAX,R13
switchD... |
long ssz_fixed_length(long param_1)
{
uint *puVar1;
uint uVar2;
char cVar3;
long lVar4;
ulong uVar5;
long lVar6;
long lVar7;
lVar7 = 1;
do {
cVar3 = ssz_is_dynamic(param_1);
uVar5 = 4;
if (cVar3 != '\0') goto switchD_0014bc86_caseD_4;
uVar5 = 0;
switch(*(int4 *)(param_1 + 8)) ... | |
61,988 | LefDefParser::lefiLayer::parseLEF58Layer() | Efficient-TDP/thirdparty/Limbo/limbo/thirdparty/lefdef/5.8/lef/lef/lefiLayer.cpp | void
lefiLayer::parseLEF58Layer()
{
int i;
if (lefData->versionNum < 5.7)
return;
for (i = 0; i < numProps_; i++) {
if (strlen(names_[i]) == 10) {
if (strcmp(names_[i], "LEF58_TYPE") == 0)
parseLayerType(i);
}
}
} | O0 | cpp | LefDefParser::lefiLayer::parseLEF58Layer():
subq $0x18, %rsp
movq %rdi, 0x10(%rsp)
movq 0x10(%rsp), %rax
movq %rax, (%rsp)
leaq 0x80827(%rip), %rax # 0xc5750
movq (%rax), %rax
movsd 0x5dd1c(%rip), %xmm0 # 0xa2c50
ucomisd 0xb8(%rax), %xmm0
jbe 0x44f40
jmp 0x44fba
movl $0x0, 0xc(%rsp)
movq (%rsp), %rcx
movl 0xc(%r... | _ZN12LefDefParser9lefiLayer15parseLEF58LayerEv:
sub rsp, 18h
mov [rsp+18h+var_8], rdi
mov rax, [rsp+18h+var_8]
mov [rsp+18h+var_18], rax
lea rax, _ZN12LefDefParser7lefDataE; LefDefParser::lefData
mov rax, [rax]
movsd xmm0, cs:qword_A2C50
ucomisd xmm0, qword ptr [rax+0B8h]
jbe short loc_44F... | long long LefDefParser::lefiLayer::parseLEF58Layer(LefDefParser::lefiLayer *this)
{
long long result; // rax
long long v2; // rdx
int i; // [rsp+Ch] [rbp-Ch]
result = LefDefParser::lefData;
if ( *(double *)(LefDefParser::lefData + 184LL) >= 5.7 )
{
for ( i = 0; ; ++i )
{
result = (unsigned i... | parseLEF58Layer:
SUB RSP,0x18
MOV qword ptr [RSP + 0x10],RDI
MOV RAX,qword ptr [RSP + 0x10]
MOV qword ptr [RSP],RAX
LEA RAX,[0x1c5750]
MOV RAX,qword ptr [RAX]
MOVSD XMM0,qword ptr [0x001a2c50]
UCOMISD XMM0,qword ptr [RAX + 0xb8]
JBE 0x00144f40
JMP 0x00144fba
LAB_00144f40:
MOV dword ptr [RSP + 0xc],0x0
LAB_00144f48:
MOV... |
/* LefDefParser::lefiLayer::parseLEF58Layer() */
void __thiscall LefDefParser::lefiLayer::parseLEF58Layer(lefiLayer *this)
{
int iVar1;
size_t sVar2;
int local_c;
if (DAT_001a2c50 < *(double *)(lefData + 0xb8) || DAT_001a2c50 == *(double *)(lefData + 0xb8)) {
for (local_c = 0; local_c < *(int *)(this ... | |
61,989 | update_stats_free | seiftnesse[P]memoryallocator/src/custom_alloc_stats.c | void update_stats_free(size_t size) {
// Prevent underflow - don't subtract more than what we have
if (size > allocation_stats.total_allocated) {
HEAP_LOG("Warning: Freeing more memory than allocated: %zu > %zu\n",
size, allocation_stats.total_allocated);
allocation_stats.total_... | O1 | c | update_stats_free:
movq 0x4104fb6(%rip), %rax # 0x4109140
movq %rax, %rcx
subq %rdi, %rcx
jae 0x41a6
addq %rax, 0x4104faf(%rip) # 0x4109148
movq $0x0, 0x4104f9c(%rip) # 0x4109140
jmp 0x41b4
movq %rcx, 0x4104f93(%rip) # 0x4109140
addq %rdi, 0x4104f94(%rip) # 0x4109148
movq 0x4104f95(%rip), %rax # 0x4109150
tes... | update_stats_free:
mov rax, cs:allocation_stats
mov rcx, rax
sub rcx, rdi
jnb short loc_41A6
add cs:qword_4109148, rax
mov cs:allocation_stats, 0
jmp short loc_41B4
loc_41A6:
mov cs:allocation_stats, rcx
add cs:qword_4109148, rdi
loc_41B4:
mov rax, cs:qword_4109150
test rax, r... | long long update_stats_free(unsigned long long a1)
{
long long result; // rax
if ( allocation_stats >= a1 )
{
allocation_stats -= a1;
qword_4109148 += a1;
}
else
{
qword_4109148 += allocation_stats;
allocation_stats = 0LL;
}
result = qword_4109150;
if ( qword_4109150 )
return --q... | update_stats_free:
MOV RAX,qword ptr [0x04209140]
MOV RCX,RAX
SUB RCX,RDI
JNC 0x001041a6
ADD qword ptr [0x04209148],RAX
MOV qword ptr [0x04209140],0x0
JMP 0x001041b4
LAB_001041a6:
MOV qword ptr [0x04209140],RCX
ADD qword ptr [0x04209148],RDI
LAB_001041b4:
MOV RAX,qword ptr [0x04209150]
TEST RAX,RAX
JZ 0x001041ca
DEC RA... |
void update_stats_free(ulong param_1)
{
if (allocation_stats < param_1) {
DAT_04209148 = DAT_04209148 + allocation_stats;
allocation_stats = 0;
}
else {
DAT_04209148 = DAT_04209148 + param_1;
allocation_stats = allocation_stats - param_1;
}
if (DAT_04209150 != 0) {
DAT_04209150 = DAT_042... | |
61,990 | js_typed_array_join | bluesky950520[P]quickjs/quickjs.c | static JSValue js_typed_array_join(JSContext *ctx, JSValue this_val,
int argc, JSValue *argv, int toLocaleString)
{
JSValue sep = JS_UNDEFINED, el;
StringBuffer b_s, *b = &b_s;
JSString *s = NULL;
JSObject *p;
int i, len, oldlen, newlen;
int c;
p = get_typ... | O1 | c | js_typed_array_join:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x58, %rsp
movl %r9d, 0x1c(%rsp)
movq %r8, %rbx
movl %ecx, %r15d
movq %rsi, %r13
movq %rdi, %r14
movq $0x0, 0x28(%rsp)
movq %rsi, 0x30(%rsp)
movq %rdx, 0x50(%rsp)
cmpl $-0x1, %edx
jne 0x815e6
movq 0x30(%rsp), %rbp
movzwl 0x6(%r... | js_typed_array_join:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 58h
mov [rsp+88h+var_6C], r9d
mov rbx, r8
mov r15d, ecx
mov r13, rsi
mov r14, rdi
mov [rsp+88h+var_60], 0
mov [rsp+88h+var_58], rsi
mov [rsp+88h+var_38], rdx
cmp edx, 0FFFFFFFFh
... | unsigned long long js_typed_array_join(
long long a1,
long long 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_join:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x58
MOV dword ptr [RSP + 0x1c],R9D
MOV RBX,R8
MOV R15D,ECX
MOV R13,RSI
MOV R14,RDI
MOV qword ptr [RSP + 0x28],0x0
MOV qword ptr [RSP + 0x30],RSI
MOV qword ptr [RSP + 0x50],RDX
CMP EDX,-0x1
JNZ 0x001815e6
MOV RBP,qword ptr [RSP + 0x30]
M... |
int1 [16]
js_typed_array_join(long param_1,long param_2,int8 param_3,int param_4,int8 *param_5,
int param_6)
{
uint uVar1;
int iVar2;
int iVar3;
uint uVar4;
ulong uVar5;
long lVar6;
ulong uVar7;
int8 uVar8;
uint uVar9;
int1 auVar10 [12];
int1 auVar11 [16];
uint local_7c;
... | |
61,991 | js_typed_array_join | bluesky950520[P]quickjs/quickjs.c | static JSValue js_typed_array_join(JSContext *ctx, JSValue this_val,
int argc, JSValue *argv, int toLocaleString)
{
JSValue sep = JS_UNDEFINED, el;
StringBuffer b_s, *b = &b_s;
JSString *s = NULL;
JSObject *p;
int i, len, oldlen, newlen;
int c;
p = get_typ... | O3 | c | js_typed_array_join:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x48, %rsp
movq %rdx, %r13
movq %rdi, %rbx
cmpl $-0x1, %r13d
jne 0x84085
movq %rsi, %r14
movzwl 0x6(%rsi), %eax
addl $-0x15, %eax
cmpw $0xc, %ax
jae 0x84085
movl %r9d, %ebp
movq %r8, %r15
movl %ecx, %r12d
movq %r14, %rdi
callq ... | js_typed_array_join:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 48h
mov r13, rdx
mov rbx, rdi
cmp r13d, 0FFFFFFFFh
jnz short loc_84085
mov r14, rsi
movzx eax, word ptr [rsi+6]
add eax, 0FFFFFFEBh
cmp ax, 0Ch
jnb short loc_84085
mov ebp, r9d... | unsigned long long js_typed_array_join(
long long a1,
long long a2,
long long a3,
long long a4,
_QWORD *a5,
long long a6,
__m128 a7,
__m128 a8,
__m128 a9,
__m128 a10,
__m128 a11,
__m128 a12,
__m128 a13,
__m1... | js_typed_array_join:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x48
MOV R13,RDX
MOV RBX,RDI
CMP R13D,-0x1
JNZ 0x00184085
MOV R14,RSI
MOVZX EAX,word ptr [RSI + 0x6]
ADD EAX,-0x15
CMP AX,0xc
JNC 0x00184085
MOV EBP,R9D
MOV R15,R8
MOV R12D,ECX
MOV RDI,R14
CALL 0x00139ddd
TEST EAX,EAX
JZ 0x001840b9
LEA R... |
int1 [16]
js_typed_array_join(long param_1,long param_2,int8 param_3,int param_4,int8 *param_5,
int param_6)
{
uint uVar1;
int iVar2;
int iVar3;
int *piVar4;
int8 uVar5;
uint uVar6;
char *pcVar7;
uint uVar8;
uint uVar9;
ulong uVar10;
ulong uVar11;
int1 auVar12 [12];
int1 ... | |
61,992 | google::protobuf::compiler::java::ImmutableEnumOneofFieldGenerator::GenerateSerializedSizeCode(google::protobuf::io::Printer*) const | aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/compiler/java/enum_field.cc | void ImmutableEnumOneofFieldGenerator::GenerateSerializedSizeCode(
io::Printer* printer) const {
printer->Print(
variables_,
"if ($has_oneof_case_message$) {\n"
" size += com.google.protobuf.CodedOutputStream\n"
" .computeEnumSize($number$, ((java.lang.Integer) $oneof_name$_));\n"
... | O3 | cpp | google::protobuf::compiler::java::ImmutableEnumOneofFieldGenerator::GenerateSerializedSizeCode(google::protobuf::io::Printer*) const:
movq %rsi, %rax
leaq 0x18(%rdi), %rsi
leaq 0xf3e70(%rip), %rdx # 0x1e8d80
movq %rax, %rdi
jmp 0x16cd32
| _ZNK6google8protobuf8compiler4java32ImmutableEnumOneofFieldGenerator26GenerateSerializedSizeCodeEPNS0_2io7PrinterE:
mov rax, rsi
lea rsi, [rdi+18h]
lea rdx, aIfHasOneofCase_14; "if ($has_oneof_case_message$) {\n size"...
mov rdi, rax; this
jmp _ZN6google8protobuf2io7Printer5PrintERKSt3mapINSt7__cxx... | long long google::protobuf::compiler::java::ImmutableEnumOneofFieldGenerator::GenerateSerializedSizeCode(
google::protobuf::compiler::java::ImmutableEnumOneofFieldGenerator *this,
google::protobuf::io::Printer *a2,
long long a3,
long long a4,
long long a5,
long long a6,
... | GenerateSerializedSizeCode:
MOV RAX,RSI
LEA RSI,[RDI + 0x18]
LEA RDX,[0x2e8d80]
MOV RDI,RAX
JMP 0x0026cd32
|
/* google::protobuf::compiler::java::ImmutableEnumOneofFieldGenerator::GenerateSerializedSizeCode(google::protobuf::io::Printer*)
const */
void __thiscall
google::protobuf::compiler::java::ImmutableEnumOneofFieldGenerator::GenerateSerializedSizeCode
(ImmutableEnumOneofFieldGenerator *this,Printer *param_... | |
61,993 | MainWindow::update_endstair(Elevetor&) | LeafBlue[P]myElevetor/mainwindow.cpp | void MainWindow::update_endstair(Elevetor& thisele)
{
if(thisele.status != 3){
return;
}
QPoint newstart = thisele.ele->pos();
int end_y = (12 - thisele.endstair) * 60;
int move_y = abs(newstart.y() - end_y);
if(thisele.anime&&thisele.anime!=nullptr){
//先断开连接,再执行stop,防止先执行stop... | O0 | cpp | MainWindow::update_endstair(Elevetor&):
pushq %rbp
movq %rsp, %rbp
subq $0x110, %rsp # imm = 0x110
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rax
movq %rax, -0xd0(%rbp)
movq -0x10(%rbp), %rax
cmpl $0x3, 0x4c(%rax)
je 0x631d
jmp 0x657e
movq -0x10(%rbp), %rax
movq 0x38(%rax), %rdi
callq 0x5... | _ZN10MainWindow15update_endstairER8Elevetor:
push rbp
mov rbp, rsp
sub rsp, 110h
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov rax, [rbp+var_8]
mov [rbp+var_D0], rax
mov rax, [rbp+var_10]
cmp dword ptr [rax+4Ch], 3
jz short loc_631D
jmp loc_657E
loc_631D:
mov rax, [rbp+v... | Elevetor * MainWindow::update_endstair(MainWindow *this, Elevetor *a2)
{
Elevetor *result; // rax
int v3; // eax
long long v4; // rdi
int v5; // eax
QVariantAnimation *v6; // [rsp+10h] [rbp-100h]
QVariantAnimation *v7; // [rsp+20h] [rbp-F0h]
QPropertyAnimation *v8; // [rsp+30h] [rbp-E0h]
QObject *v9; //... | update_endstair:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x110
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV RAX,qword ptr [RBP + -0x8]
MOV qword ptr [RBP + -0xd0],RAX
MOV RAX,qword ptr [RBP + -0x10]
CMP dword ptr [RAX + 0x4c],0x3
JZ 0x0010631d
JMP 0x0010657e
LAB_0010631d:
MOV RAX,qword ptr [RBP + -0x10]
MOV ... |
/* MainWindow::update_endstair(Elevetor&) */
void __thiscall MainWindow::update_endstair(MainWindow *this,Elevetor *param_1)
{
QObject *pQVar1;
QVariant *pQVar2;
int iVar3;
QPropertyAnimation *this_00;
Connection local_b0 [8];
QVariant local_a8 [32];
QPoint local_88 [8];
QVariant local_80 [35];
int... | |
61,994 | MainWindow::update_endstair(Elevetor&) | LeafBlue[P]myElevetor/mainwindow.cpp | void MainWindow::update_endstair(Elevetor& thisele)
{
if(thisele.status != 3){
return;
}
QPoint newstart = thisele.ele->pos();
int end_y = (12 - thisele.endstair) * 60;
int move_y = abs(newstart.y() - end_y);
if(thisele.anime&&thisele.anime!=nullptr){
//先断开连接,再执行stop,防止先执行stop... | O2 | cpp | MainWindow::update_endstair(Elevetor&):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x58, %rsp
cmpl $0x3, 0x4c(%rsi)
jne 0x4da1
movq %rsi, %rbx
movq %rdi, %r14
movq 0x38(%rsi), %rdi
callq 0x45b0
movq %rax, 0x20(%rsp)
pushq $0xc
popq %rcx
subl 0x44(%rbx), %ecx
imull $0x3c, %ecx, %r13d
shrq $0... | _ZN10MainWindow15update_endstairER8Elevetor:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 58h
cmp dword ptr [rsi+4Ch], 3
jnz loc_4DA1
mov rbx, rsi
mov r14, rdi
mov rdi, [rsi+38h]; this
call __ZNK7QWidget3posEv; QWidget::pos(void)
mov [rsp+88h+var_68], r... | void MainWindow::update_endstair(MainWindow *this, QWidget **a2)
{
int v3; // r13d
int v4; // ebp
QWidget *v5; // rdi
QPropertyAnimation *v6; // r15
QObject *v7; // r12
QVariantAnimation *v8; // r15
QVariantAnimation *v9; // r15
QWidget *v10; // r12
long long v11; // rax
long long v12; // [rsp+20h]... | update_endstair:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x58
CMP dword ptr [RSI + 0x4c],0x3
JNZ 0x00104da1
MOV RBX,RSI
MOV R14,RDI
MOV RDI,qword ptr [RSI + 0x38]
CALL 0x001045b0
MOV qword ptr [RSP + 0x20],RAX
PUSH 0xc
POP RCX
SUB ECX,dword ptr [RBX + 0x44]
IMUL R13D,ECX,0x3c
SHR RAX,0x20
SUB EAX,... |
/* MainWindow::update_endstair(Elevetor&) */
void __thiscall MainWindow::update_endstair(MainWindow *this,Elevetor *param_1)
{
int iVar1;
QObject *pQVar2;
QVariant *pQVar3;
int8 uVar4;
QPropertyAnimation *this_00;
int4 *puVar5;
int8 local_68;
int *local_60;
int8 local_58;
Connection local_40 [8];... | |
61,995 | MainWindow::update_endstair(Elevetor&) | LeafBlue[P]myElevetor/mainwindow.cpp | void MainWindow::update_endstair(Elevetor& thisele)
{
if(thisele.status != 3){
return;
}
QPoint newstart = thisele.ele->pos();
int end_y = (12 - thisele.endstair) * 60;
int move_y = abs(newstart.y() - end_y);
if(thisele.anime&&thisele.anime!=nullptr){
//先断开连接,再执行stop,防止先执行stop... | O3 | cpp | MainWindow::update_endstair(Elevetor&):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x38, %rsp
cmpl $0x3, 0x4c(%rsi)
jne 0x5140
movq %rsi, %rbx
movq %rdi, %r14
movq 0x38(%rsi), %rdi
callq 0x4590
movq %rax, 0x20(%rsp)
movl $0xc, %ecx
subl 0x44(%rbx), %ecx
imull $0x3c, %ecx, %r13d
shrq $0x20, ... | _ZN10MainWindow15update_endstairER8Elevetor:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 38h
cmp dword ptr [rsi+4Ch], 3
jnz loc_5140
mov rbx, rsi
mov r14, rdi
mov rdi, [rsi+38h]; this
call __ZNK7QWidget3posEv; QWidget::pos(void)
mov [rsp+68h+var_48], r... | void MainWindow::update_endstair(MainWindow *this, QWidget **a2)
{
long long v3; // rax
const QMetaObject *v4; // r9
int v5; // r13d
int v6; // ebp
QObject *v7; // rdi
QPropertyAnimation *v8; // r15
QObject *v9; // r12
QVariantAnimation *v10; // r15
QVariantAnimation *v11; // r15
QWidget *v12; // r... | update_endstair:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x38
CMP dword ptr [RSI + 0x4c],0x3
JNZ 0x00105140
MOV RBX,RSI
MOV R14,RDI
MOV RDI,qword ptr [RSI + 0x38]
CALL 0x00104590
MOV qword ptr [RSP + 0x20],RAX
MOV ECX,0xc
SUB ECX,dword ptr [RBX + 0x44]
IMUL R13D,ECX,0x3c
SHR RAX,0x20
SUB EAX,R13D
... |
/* MainWindow::update_endstair(Elevetor&) */
void __thiscall MainWindow::update_endstair(MainWindow *this,Elevetor *param_1)
{
int iVar1;
QObject *pQVar2;
QVariant *pQVar3;
int8 uVar4;
QPropertyAnimation *this_00;
int4 *puVar5;
QArrayData *local_68;
int8 local_60;
int8 local_48;
Connection local_... | |
61,996 | atoi_octal | eloqsql/mysys/my_init.c | static ulong atoi_octal(const char *str)
{
long int tmp;
while (*str && my_isspace(&my_charset_latin1, *str))
str++;
str2int(str,
(*str == '0' ? 8 : 10), /* Octalt or decimalt */
0, INT_MAX, &tmp);
return (ulong) tmp;
} | O0 | c | atoi_octal:
pushq %rbp
movq %rsp, %rbp
subq $0x20, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
movsbl (%rax), %ecx
xorl %eax, %eax
cmpl $0x0, %ecx
movb %al, -0x11(%rbp)
je 0x27130
leaq 0x24f73c(%rip), %rax # 0x276850
movq 0x40(%rax), %rax
movq -0x8(%rbp), %rcx
movzbl (%rcx), %ecx
movzbl 0x1(%rax,%rcx), %eax
and... | atoi_octal:
push rbp
mov rbp, rsp
sub rsp, 20h
mov [rbp+var_8], rdi
loc_270FC:
mov rax, [rbp+var_8]
movsx ecx, byte ptr [rax]
xor eax, eax
cmp ecx, 0
mov [rbp+var_11], al
jz short loc_27130
lea rax, my_charset_latin1
mov rax, [rax+40h]
mov rcx, [rbp+var_8]
movzx ecx, ... | long long atoi_octal(_BYTE *a1)
{
long long v1; // rsi
bool v3; // [rsp+Fh] [rbp-11h]
long long v4; // [rsp+10h] [rbp-10h] BYREF
_BYTE *i; // [rsp+18h] [rbp-8h]
for ( i = a1; ; ++i )
{
v3 = 0;
if ( *i )
v3 = (*(_BYTE *)(*((_QWORD *)&my_charset_latin1 + 8) + (unsigned __int8)*i + 1LL) & 8) !=... | atoi_octal:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x20
MOV qword ptr [RBP + -0x8],RDI
LAB_001270fc:
MOV RAX,qword ptr [RBP + -0x8]
MOVSX ECX,byte ptr [RAX]
XOR EAX,EAX
CMP ECX,0x0
MOV byte ptr [RBP + -0x11],AL
JZ 0x00127130
LEA RAX,[0x376850]
MOV RAX,qword ptr [RAX + 0x40]
MOV RCX,qword ptr [RBP + -0x8]
MOVZX ECX,byte ptr [RCX]... |
int8 atoi_octal(byte *param_1)
{
int8 uVar1;
bool bVar2;
int8 local_18;
byte *local_10;
local_10 = param_1;
while( true ) {
bVar2 = false;
if (*local_10 != 0) {
bVar2 = (PTR_ctype_latin1_00376890[(ulong)*local_10 + 1] & 8) != 0;
}
if (!bVar2) break;
local_10 = local_10 + 1;
... | |
61,997 | write_hook_for_undo_bulk_insert | eloqsql/storage/maria/ma_blockrec.c | my_bool write_hook_for_undo_bulk_insert(enum translog_record_type type
__attribute__ ((unused)),
TRN *trn, MARIA_HA *tbl_info,
LSN *lsn, void *hook_arg)
{
/*
We are going to call maria_delete_al... | O0 | c | write_hook_for_undo_bulk_insert:
pushq %rbp
movq %rsp, %rbp
subq $0x30, %rsp
movl %edi, -0x4(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movq %r8, -0x28(%rbp)
movq -0x18(%rbp), %rdi
callq 0x774c0
movl -0x4(%rbp), %edi
movq -0x10(%rbp), %rsi
movq -0x18(%rbp), %rdx
movq -0x20(%rbp), %rcx
mo... | write_hook_for_undo_bulk_insert:
push rbp
mov rbp, rsp
sub rsp, 30h
mov [rbp+var_4], edi
mov [rbp+var_10], rsi
mov [rbp+var_18], rdx
mov [rbp+var_20], rcx
mov [rbp+var_28], r8
mov rdi, [rbp+var_18]
call _ma_reset_status
mov edi, [rbp+var_4]
mov rsi, [rbp+var_10]
mov rdx... | long long write_hook_for_undo_bulk_insert(unsigned int a1, long long a2, long long a3, _QWORD *a4)
{
ma_reset_status(a3);
return write_hook_for_undo(a1, a2, a3, a4);
}
| write_hook_for_undo_bulk_insert:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x30
MOV dword ptr [RBP + -0x4],EDI
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 RDI,qword ptr [RBP + -0x18]
CALL 0x001774c0
MOV EDI,dword ptr [RBP + -0x4]
MOV RSI,qword pt... |
void write_hook_for_undo_bulk_insert
(int4 param_1,int8 param_2,int8 param_3,int8 param_4,
int8 param_5)
{
_ma_reset_status(param_3);
write_hook_for_undo(param_1,param_2,param_3,param_4,param_5);
return;
}
| |
61,998 | llava_image_embed_make_with_filename | monkey531[P]llama/examples/llava/llava.cpp | struct llava_image_embed * llava_image_embed_make_with_filename(struct clip_ctx * ctx_clip, int n_threads, const char * image_path) {
unsigned char* image_bytes;
long image_bytes_length;
auto loaded = load_file_to_bytes(image_path, &image_bytes, &image_bytes_length);
if (!loaded) {
LOG_ERR("%s: ... | O1 | cpp | llava_image_embed_make_with_filename:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x18, %rsp
movq %rdx, %rbx
movl %esi, %r14d
movq %rdi, 0x10(%rsp)
leaq 0xe84c6(%rip), %rsi # 0x1104f5
movq %rdx, %rdi
callq 0x1de50
testq %rax, %rax
movq %rbx, 0x8(%rsp)
je 0x28105
movq %rax, %r15
movq %rax... | llava_image_embed_make_with_filename:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 18h
mov rbx, rdx
mov r14d, esi
mov qword ptr [rsp+48h+var_38], rdi
lea rsi, aCrb+2; "rb"
mov rdi, rdx
call _fopen
test rax, rax
mov [rsp+48h+var_40], rbx
jz loc_2... | long long llava_image_embed_make_with_filename(long long a1, int a2, const char *a3)
{
long long v3; // r12
long long v4; // r13
int v6; // r14d
long long v7; // rax
long long v8; // r15
long long v9; // rax
unsigned int *v10; // rbp
long long v11; // r14
char v12; // bp
long long v13; // rbx
v6... | llava_image_embed_make_with_filename:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x18
MOV RBX,RDX
MOV R14D,ESI
MOV qword ptr [RSP + 0x10],RDI
LEA RSI,[0x2104f5]
MOV RDI,RDX
CALL 0x0011de50
TEST RAX,RAX
MOV qword ptr [RSP + 0x8],RBX
JZ 0x00128105
MOV R15,RAX
MOV RDI,RAX
XOR ESI,ESI
MOV EDX,0x2
CALL 0x... |
int8 llava_image_embed_make_with_filename(int8 param_1,int4 param_2,char *param_3)
{
bool bVar1;
int iVar2;
FILE *__stream;
void *__ptr;
int *piVar3;
size_t sVar4;
int8 uVar5;
size_t unaff_R12;
void *unaff_R13;
__stream = fopen(param_3,"rb");
if (__stream == (FILE *)0x0) {
fprintf(*(FILE ... | |
61,999 | CheckCollisionLines | csit-sgu[P]mit-game-2025_1/Libraries/raylib/src/rshapes.c | bool CheckCollisionLines(Vector2 startPos1, Vector2 endPos1, Vector2 startPos2, Vector2 endPos2, Vector2 *collisionPoint)
{
bool collision = false;
float div = (endPos2.y - startPos2.y)*(endPos1.x - startPos1.x) - (endPos2.x - startPos2.x)*(endPos1.y - startPos1.y);
if (fabsf(div) >= FLT_EPSILON)
{
... | O0 | c | CheckCollisionLines:
pushq %rbp
movq %rsp, %rbp
movlpd %xmm0, -0x8(%rbp)
movlpd %xmm1, -0x10(%rbp)
movlpd %xmm2, -0x18(%rbp)
movlpd %xmm3, -0x20(%rbp)
movq %rdi, -0x28(%rbp)
movb $0x0, -0x29(%rbp)
movss -0x1c(%rbp), %xmm0
subss -0x14(%rbp), %xmm0
movss -0x10(%rbp), %xmm2
subss -0x8(%rbp), %xmm2
movss -0x20(%rbp), %xmm1... | CheckCollisionLines:
push rbp
mov rbp, rsp
movlpd [rbp+var_8], xmm0
movlpd [rbp+var_10], xmm1
movlpd [rbp+var_18], xmm2
movlpd [rbp+var_20], xmm3
mov [rbp+var_28], rdi
mov [rbp+var_29], 0
movss xmm0, dword ptr [rbp+var_20+4]
subss xmm0, dword ptr [rbp+var_18+4]
movss xmm2, dword ptr [rbp+var_10... | char CheckCollisionLines(float *a1, double a2, double a3, double a4, double a5)
{
__m128i v5; // xmm1
__m128i v6; // xmm1
float v7; // xmm2_4
__m128i v8; // xmm1
__m128i v9; // xmm4
__m128i v10; // xmm1
float v11; // xmm2_4
__m128i v12; // xmm1
__m128i v13; // xmm4
__m128i v14; // xmm0
__m128i v1... | CheckCollisionLines:
PUSH RBP
MOV RBP,RSP
MOVLPD qword ptr [RBP + -0x8],XMM0
MOVLPD qword ptr [RBP + -0x10],XMM1
MOVLPD qword ptr [RBP + -0x18],XMM2
MOVLPD qword ptr [RBP + -0x20],XMM3
MOV qword ptr [RBP + -0x28],RDI
MOV byte ptr [RBP + -0x29],0x0
MOVSS XMM0,dword ptr [RBP + -0x1c]
SUBSS XMM0,dword ptr [RBP + -0x14]
MO... |
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */
char CheckCollisionLines(int8 param_1,int8 param_2,int8 param_3,int8 param_4
,float *param_5)
{
uint uVar1;
float fVar2;
float fVar3;
float fVar4;
float fVar5;
float fVar6;
char local_31;
floa... |
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.