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,300
codegen_generate_do
eshkol/src/backend/codegen/blocks.c
bool codegen_generate_do(CodegenContext* context, const AstNode* node) { assert(context != NULL); assert(node != NULL); assert(node->type == AST_DO); // Get output file FILE* output = codegen_context_get_output(context); // Generate code fprintf(output, "({ "); // Generate...
O3
c
codegen_generate_do: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax testq %rdi, %rdi je 0x8a17 movq %rsi, %rbx testq %rsi, %rsi je 0x8a36 cmpl $0x14, (%rbx) jne 0x8a55 movq %rdi, %r14 callq 0x3c55 movq %rax, %r15 leaq 0x8b53(%rip), %rdi # 0x11350 movl $0x3, %esi movl $...
codegen_generate_do: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx push rax test rdi, rdi jz loc_8A17 mov rbx, rsi test rsi, rsi jz loc_8A36 cmp dword ptr [rbx], 14h jnz loc_8A55 mov r14, rdi call codegen_context_get_output mov r15, ra...
char codegen_generate_do(long long a1, long long a2) { long long output; // r15 long long v3; // r13 long long v4; // r13 long long v5; // r13 long long v6; // r13 if ( !a1 ) __assert_fail( "context != NULL", "/workspace/llm4binary/github2025/eshkol/src/backend/codegen/blocks.c", 278...
codegen_generate_do: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX PUSH RAX TEST RDI,RDI JZ 0x00108a17 MOV RBX,RSI TEST RSI,RSI JZ 0x00108a36 CMP dword ptr [RBX],0x14 JNZ 0x00108a55 MOV R14,RDI CALL 0x00103c55 MOV R15,RAX LEA RDI,[0x111350] MOV ESI,0x3 MOV EDX,0x1 MOV RCX,RAX CALL 0x00101220 CMP qwo...
int8 codegen_generate_do(long param_1,int *param_2) { char cVar1; FILE *__s; int8 uVar2; ulong uVar3; if (param_1 == 0) { /* WARNING: Subroutine does not return */ __assert_fail("context != NULL", "/workspace/llm4binary/github2025/eshkol/src/backend/codegen/block...
61,301
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,302
double_is_int32
bluesky950520[P]quickjs/quickjs.c
static inline BOOL double_is_int32(double d) { uint64_t u, e; JSFloat64Union t; t.d = d; u = t.u64; e = ((u >> 52) & 0x7FF) - 1023; if (e > 30) { // accept 0, INT32_MIN, reject too large, too small, nan, inf, -0 return !u || (u == 0xc1e0000000000000); } else { // sh...
O0
c
double_is_int32: movsd %xmm0, -0x10(%rsp) movsd -0x10(%rsp), %xmm0 movsd %xmm0, -0x28(%rsp) movq -0x28(%rsp), %rax movq %rax, -0x18(%rsp) movq -0x18(%rsp), %rax shrq $0x34, %rax andq $0x7ff, %rax # imm = 0x7FF subq $0x3ff, %rax # imm = 0x3FF movq %rax, -0x20(%rsp) cmpq $0x1e, -0x20(%rsp) jbe 0x610...
double_is_int32: movsd [rsp+var_10], xmm0 movsd xmm0, [rsp+var_10] movsd [rsp+var_28], xmm0 mov rax, [rsp+var_28] mov [rsp+var_18], rax mov rax, [rsp+var_18] shr rax, 34h and rax, 7FFh sub rax, 3FFh mov [rsp+var_20], rax cmp [rsp+var_20], 1Eh jbe short loc_610C1 mov al, 1 c...
_BOOL8 double_is_int32(double a1) { bool v2; // [rsp+1h] [rbp-29h] if ( ((*(_QWORD *)&a1 >> 52) & 0x7FFuLL) - 1023 <= 0x1E ) { return *(_QWORD *)&a1 << 12 << ((unsigned __int8)(*(_QWORD *)&a1 >> 52) + 1) == 0LL; } else { v2 = 1; if ( a1 != 0.0 ) return *(_QWORD *)&a1 == 0xC1E000000000000...
double_is_int32: MOVSD qword ptr [RSP + -0x10],XMM0 MOVSD XMM0,qword ptr [RSP + -0x10] MOVSD qword ptr [RSP + -0x28],XMM0 MOV RAX,qword ptr [RSP + -0x28] MOV qword ptr [RSP + -0x18],RAX MOV RAX,qword ptr [RSP + -0x18] SHR RAX,0x34 AND RAX,0x7ff SUB RAX,0x3ff MOV qword ptr [RSP + -0x20],RAX CMP qword ptr [RSP + -0x20],0...
bool double_is_int32(ulong param_1) { ulong uVar1; bool local_29; uVar1 = (param_1 >> 0x34 & 0x7ff) - 0x3ff; if (uVar1 < 0x1f) { local_29 = (bool)(((param_1 << 0xc) << ((byte)uVar1 & 0x3f) != 0 ^ 0xffU) & 1); } else { local_29 = param_1 == 0 || param_1 == 0xc1e0000000000000; } return local_...
61,303
double_is_int32
bluesky950520[P]quickjs/quickjs.c
static inline BOOL double_is_int32(double d) { uint64_t u, e; JSFloat64Union t; t.d = d; u = t.u64; e = ((u >> 52) & 0x7FF) - 1023; if (e > 30) { // accept 0, INT32_MIN, reject too large, too small, nan, inf, -0 return !u || (u == 0xc1e0000000000000); } else { // sh...
O2
c
double_is_int32: movq %xmm0, %rax movq %rax, %rcx shrq $0x34, %rcx andl $0x7ff, %ecx # imm = 0x7FF addq $-0x3ff, %rcx # imm = 0xFC01 cmpq $0x1f, %rcx jb 0x1ab87 testq %rax, %rax sete %dl movabsq $-0x3e20000000000000, %rcx # imm = 0xC1E0000000000000 cmpq %rcx, %rax sete %cl orb %dl, %cl jmp 0x1ab97 ...
js_number: movq rax, xmm0 mov rcx, rax shr rcx, 34h and ecx, 7FFh add rcx, 0FFFFFFFFFFFFFC01h cmp rcx, 1Fh jb short loc_1AB87 test rax, rax setz dl mov rcx, 0C1E0000000000000h cmp rax, rcx setz cl or cl, dl jmp short loc_1AB97 loc_1AB87: mov rdx, rax shl rdx...
long long js_number(double a1) { long long result; // rax bool v2; // cl result = *(_QWORD *)&a1; if ( ((*(_QWORD *)&a1 >> 52) & 0x7FFuLL) - 1023 < 0x1F ) v2 = *(_QWORD *)&a1 << 12 << ((unsigned __int8)(*(_QWORD *)&a1 >> 52) + 1) == 0LL; else v2 = *(_QWORD *)&a1 == 0LL || *(_QWORD *)&a1 == 0xC1E0000...
js_number: MOVQ RAX,XMM0 MOV RCX,RAX SHR RCX,0x34 AND ECX,0x7ff ADD RCX,-0x3ff CMP RCX,0x1f JC 0x0011ab87 TEST RAX,RAX SETZ DL MOV RCX,-0x3e20000000000000 CMP RAX,RCX SETZ CL OR CL,DL JMP 0x0011ab97 LAB_0011ab87: MOV RDX,RAX SHL RDX,0xc SHL RDX,CL TEST RDX,RDX SETZ CL LAB_0011ab97: CVTTSD2SI EDX,XMM0 XOR ESI,ESI TEST C...
int1 [16] js_number(double param_1,int8 param_2,int8 param_3,int8 param_4) { bool bVar1; ulong uVar2; long lVar3; int1 auVar5 [16]; int8 uVar4; uVar2 = (ulong)((uint)((ulong)param_1 >> 0x34) & 0x7ff) - 0x3ff; if (uVar2 < 0x1f) { lVar3 = ((long)param_1 << 0xc) << ((byte)uVar2 & 0x3f); bVar1 =...
61,304
common_arg::common_arg(std::initializer_list<char const*> const&, char const*, char const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, void (*)(common_params&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::__cxx11::basic_string<ch...
monkey531[P]llama/common/arg.h
common_arg( const std::initializer_list<const char *> & args, const char * value_hint, const char * value_hint_2, const std::string & help, void (*handler)(common_params & params, const std::string &, const std::string &) ) : args(args), value_hint(value_hint), value_hint_2(v...
O3
c
common_arg::common_arg(std::initializer_list<char const*> const&, char const*, char const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, void (*)(common_params&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::__cxx11::basic_string<ch...
_ZN10common_argC2ERKSt16initializer_listIPKcES2_S2_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPFvR13common_paramsSD_SD_E: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 18h mov [rsp+48h+var_40], r9 mov r15, r8 mov r12, rcx mov r13, rdx mov r14, rsi mo...
long long common_arg::common_arg(long long a1, _QWORD *a2, long long a3, long long a4, long long a5, long long a6) { long long result; // rax char v10; // [rsp+5h] [rbp-43h] BYREF char v11; // [rsp+6h] [rbp-42h] BYREF char v12; // [rsp+7h] [rbp-41h] BYREF long long v13; // [rsp+8h] [rbp-40h] _DWORD v14[13]...
common_arg: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x18 MOV qword ptr [RSP + 0x8],R9 MOV R15,R8 MOV R12,RCX MOV R13,RDX MOV R14,RSI MOV RBX,RDI LEA RSI,[RSP + 0x14] MOV dword ptr [RSI],0x0 LEA RCX,[RSP + 0x7] LEA R8,[RSP + 0x6] MOV EDX,0x1 CALL 0x0015a1cc LEA RAX,[RBX + 0x38] XOR ECX,ECX MOV qwor...
/* common_arg::common_arg(std::initializer_list<char const*> const&, char const*, char const*, std::__cxx11::string const&, void (*)(common_params&, std::__cxx11::string const&, std::__cxx11::string const&)) */ void __thiscall common_arg::common_arg (common_arg *this,initializer_list *param_1,char *pa...
61,305
fs_create_directory_with_parents(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&)
monkey531[P]llama/common/common.cpp
bool fs_create_directory_with_parents(const std::string & path) { #ifdef _WIN32 std::wstring_convert<std::codecvt_utf8<wchar_t>> converter; std::wstring wpath = converter.from_bytes(path); // if the path already exists, check whether it's a directory const DWORD attributes = GetFileAttributesW(wpath.c_...
O3
cpp
fs_create_directory_with_parents(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x148, %rsp # imm = 0x148 movq %rdi, %rbx movq (%rdi), %rdi leaq 0xb8(%rsp), %rsi callq 0x1a660 testl %eax, %eax je ...
_Z32fs_create_directory_with_parentsRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 148h mov rbx, rdi mov rdi, [rdi] lea rsi, [rsp+178h+var_C0] call _stat test eax, eax jz loc_24CFB mov r14d, 1 lea ...
long long fs_create_directory_with_parents(_QWORD *a1) { unsigned int v1; // ebp long long v2; // r14 long long v3; // rax char v4; // r13 void *v6; // [rsp+8h] [rbp-170h] BYREF long long v7; // [rsp+18h] [rbp-160h] BYREF _BYTE v8[24]; // [rsp+28h] [rbp-150h] BYREF int v9; // [rsp+40h] [rbp-138h] _BY...
fs_create_directory_with_parents: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x148 MOV RBX,RDI MOV RDI,qword ptr [RDI] LEA RSI,[RSP + 0xb8] CALL 0x0011a660 TEST EAX,EAX JZ 0x00124cfb MOV R14D,0x1 LEA R15,[RSP + 0x8] LEA R12,[RSP + 0x28] LAB_00124c62: MOV RDI,RBX MOV ESI,0x2f MOV RDX,R14 CALL 0x0011a9...
/* fs_create_directory_with_parents(std::__cxx11::string const&) */ ulong fs_create_directory_with_parents(string *param_1) { bool bVar1; int iVar2; long lVar3; ulong unaff_RBP; long *local_170 [2]; long local_160 [2]; stat local_150; stat local_c0; iVar2 = stat(*(char **)param_1,&local_c0); i...
61,306
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
void reset() noexcept { token_buffer.clear(); token_string.clear(); token_string.push_back(char_traits<char_type>::to_char_type(current)); }
O2
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_EEEEE5resetEv: push rax mov rax, rdi and qword ptr [rdi+58h], ...
void __spoils<rdx,rcx,r8,r9,r10,r11,xmm4,xmm5> 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>,nlohm...
reset: PUSH RAX MOV RAX,RDI AND qword ptr [RDI + 0x58],0x0 MOV RCX,qword ptr [RDI + 0x50] MOV byte ptr [RCX],0x0 ADD RDI,0x38 MOV RCX,qword ptr [RAX + 0x38] CMP qword ptr [RAX + 0x40],RCX JZ 0x0013ef88 MOV qword ptr [RAX + 0x40],RCX LAB_0013ef88: MOV AL,byte ptr [RAX + 0x14] LEA RSI,[RSP + 0x7] MOV byte ptr [RSI],AL LA...
/* 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,307
CLI::InvalidError::InvalidError(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>)
MikePodsytnik[P]TCRtrie/build_O3/_deps/cli11-src/include/CLI/Error.hpp
explicit InvalidError(std::string name) : InvalidError(name + ": Too many positional arguments with unlimited expected args", ExitCodes::InvalidError) { }
O3
cpp
CLI::InvalidError::InvalidError(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>): pushq %rbp pushq %r15 pushq %r14 pushq %r12 pushq %rbx subq $0x40, %rsp movl %edx, %ebp movq %rsi, %r15 movq %rdi, %r14 leaq 0x30(%rsp), %rbx movq %rbx, -0x10(%rbx) leaq 0x19305(%rip), %rsi # 0x378b1 lea...
_ZN3CLI12InvalidErrorC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS_9ExitCodesE: push rbp push r15 push r14 push r12 push rbx sub rsp, 40h mov ebp, edx mov r15, rsi mov r14, rdi lea rbx, [rsp+68h+var_38] mov [rbx-10h], rbx lea rsi, aInvaliderror; "InvalidError" lea ...
void ( ** CLI::InvalidError::InvalidError( _QWORD *a1, long long a2, int a3))(CLI::Error *__hidden this) { int v4; // r8d int v5; // r9d __int128 *v6; // rax void ( **result)(CLI::Error *__hidden); // rax void *v8[2]; // [rsp+0h] [rbp-68h] BYREF __int128 v9; // [rsp+10h] [rbp-58h] BY...
InvalidError: PUSH RBP PUSH R15 PUSH R14 PUSH R12 PUSH RBX SUB RSP,0x40 MOV EBP,EDX MOV R15,RSI MOV R14,RDI LEA RBX,[RSP + 0x30] MOV qword ptr [RBX + -0x10],RBX LEA RSI,[0x1378b1] LEA RDX,[0x1378bd] LEA RDI,[RSP + 0x20] CALL 0x00111f90 LEA R12,[RSP + 0x10] MOV qword ptr [R12 + -0x10],R12 MOV RCX,qword ptr [R15] LEA RAX...
/* CLI::InvalidError::InvalidError(std::__cxx11::string, CLI::ExitCodes) */ void __thiscall CLI::InvalidError::InvalidError(InvalidError *this,long *param_2,int4 param_3) { long *plVar1; long *local_68; long local_60; long local_58; int4 uStack_50; int4 uStack_4c; long *local_48 [2]; long local_38 [2...
61,308
std::hash<minja::Value>::operator()(minja::Value const&) const
monkey531[P]llama/common/minja.hpp
size_t operator()(const minja::Value & v) const { if (!v.is_hashable()) throw std::runtime_error("Unsupported type for hashing: " + v.dump()); return std::hash<json>()(v.get<json>()); }
O2
cpp
std::hash<minja::Value>::operator()(minja::Value const&) const: pushq %rbp pushq %r14 pushq %rbx subq $0x40, %rsp movq %rsi, %r14 movq %rsi, %rdi callq 0x67bb2 testb %al, %al je 0x86b8a movq %rsp, %rbx movq %rbx, %rdi movq %r14, %rsi callq 0x86c26 movq %rbx, %rdi callq 0x86fda movq %rax, %rbx movq %rsp, %rdi callq 0x4d...
_ZNKSt4hashIN5minja5ValueEEclERKS1_: push rbp push r14 push rbx sub rsp, 40h mov r14, rsi mov rdi, rsi; this call _ZNK5minja5Value12is_primitiveEv; minja::Value::is_primitive(void) test al, al jz short loc_86B8A mov rbx, rsp mov rdi, rbx mov rsi, r14 call _ZNK5minja5Value3...
long long std::hash<minja::Value>::operator()(long long a1, minja::Value *a2) { long long v2; // rbx void *exception; // rbx _BYTE v5[32]; // [rsp+0h] [rbp-58h] BYREF _BYTE v6[56]; // [rsp+20h] [rbp-38h] BYREF if ( !minja::Value::is_primitive(a2) ) { exception = __cxa_allocate_exception(0x10uLL); ...
operator(): PUSH RBP PUSH R14 PUSH RBX SUB RSP,0x40 MOV R14,RSI MOV RDI,RSI CALL 0x00167bb2 TEST AL,AL JZ 0x00186b8a MOV RBX,RSP MOV RDI,RBX MOV RSI,R14 CALL 0x00186c26 LAB_00186b6b: MOV RDI,RBX CALL 0x00186fda LAB_00186b73: MOV RBX,RAX MOV RDI,RSP CALL 0x0014d9cc MOV RAX,RBX ADD RSP,0x40 POP RBX POP R14 POP RBP RET LA...
/* std::hash<minja::Value>::TEMPNAMEPLACEHOLDERVALUE(minja::Value const&) const */ ulong __thiscall std::hash<minja::Value>::operator()(hash<minja::Value> *this,Value *param_1) { char cVar1; ulong uVar2; runtime_error *this_00; basic_json<nlohmann::json_abi_v3_11_3::ordered_map,std::vector,std::__cxx11::stri...
61,309
std::hash<minja::Value>::operator()(minja::Value const&) const
monkey531[P]llama/common/minja.hpp
size_t operator()(const minja::Value & v) const { if (!v.is_hashable()) throw std::runtime_error("Unsupported type for hashing: " + v.dump()); return std::hash<json>()(v.get<json>()); }
O3
cpp
std::hash<minja::Value>::operator()(minja::Value const&) const: pushq %rbp pushq %r14 pushq %rbx subq $0x40, %rsp movq %rsi, %r14 cmpq $0x0, 0x10(%rsi) jne 0xb67be cmpq $0x0, 0x20(%r14) jne 0xb67be cmpq $0x0, 0x30(%r14) jne 0xb67be movq %rsp, %rbx movq %rbx, %rdi movq %r14, %rsi callq 0xb68a6 movq %rbx, %rdi callq 0xb6...
_ZNKSt4hashIN5minja5ValueEEclERKS1_: push rbp push r14 push rbx sub rsp, 40h mov r14, rsi cmp qword ptr [rsi+10h], 0 jnz short loc_B67BE cmp qword ptr [r14+20h], 0 jnz short loc_B67BE cmp qword ptr [r14+30h], 0 jnz short loc_B67BE mov rbx, rsp mov rdi, rbx mov rsi, r...
long long std::hash<minja::Value>::operator()(long long a1, _QWORD *a2) { long long v2; // rbx void *exception; // rbx char v5[16]; // [rsp+0h] [rbp-58h] BYREF _BYTE v6[16]; // [rsp+20h] [rbp-38h] BYREF if ( a2[2] || a2[4] || a2[6] ) { exception = __cxa_allocate_exception(0x10uLL); minja::Value::d...
operator(): PUSH RBP PUSH R14 PUSH RBX SUB RSP,0x40 MOV R14,RSI CMP qword ptr [RSI + 0x10],0x0 JNZ 0x001b67be CMP qword ptr [R14 + 0x20],0x0 JNZ 0x001b67be CMP qword ptr [R14 + 0x30],0x0 JNZ 0x001b67be MOV RBX,RSP MOV RDI,RBX MOV RSI,R14 CALL 0x001b68a6 LAB_001b6792: MOV RDI,RBX CALL 0x001b6dc3 LAB_001b679a: MOV RBX,RA...
/* std::hash<minja::Value>::TEMPNAMEPLACEHOLDERVALUE(minja::Value const&) const */ ulong __thiscall std::hash<minja::Value>::operator()(hash<minja::Value> *this,Value *param_1) { ulong uVar1; runtime_error *this_00; basic_json abStack_58 [32]; int1 local_38 [32]; if (((*(long *)(param_1 + 0x10) == 0) &&...
61,310
google::protobuf::DescriptorPoolDatabase::FindAllExtensionNumbers(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::vector<int, std::allocator<int>>*)
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/descriptor_database.cc
bool DescriptorPoolDatabase::FindAllExtensionNumbers( const std::string& extendee_type, std::vector<int>* output) { const Descriptor* extendee = pool_.FindMessageTypeByName(extendee_type); if (extendee == nullptr) return false; std::vector<const FieldDescriptor*> extensions; pool_.FindAllExtensions(extende...
O3
cpp
google::protobuf::DescriptorPoolDatabase::FindAllExtensionNumbers(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::vector<int, std::allocator<int>>*): pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x30, %rsp movq %rdx, %r14 movq %rdi, %r15 movq 0x8(%rdi), %rdi c...
_ZN6google8protobuf22DescriptorPoolDatabase23FindAllExtensionNumbersERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPSt6vectorIiSaIiEE: push r15 push r14 push r13 push r12 push rbx sub rsp, 30h mov r14, rdx mov r15, rdi mov rdi, [rdi+8] call _ZNK6google8protobuf14DescriptorPool2...
bool google::protobuf::DescriptorPoolDatabase::FindAllExtensionNumbers(long long a1, long long *a2, long long a3) { google::protobuf::Descriptor *MessageTypeByName; // rax google::protobuf::Descriptor *v5; // rbx char *v6; // r15 char *v7; // r13 int v8; // eax _DWORD *v9; // rsi int v11; // [rsp+Ch] [rb...
FindAllExtensionNumbers: PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x30 MOV R14,RDX MOV R15,RDI MOV RDI,qword ptr [RDI + 0x8] CALL 0x001c0818 MOV RBX,RAX TEST RAX,RAX JZ 0x001fd46f XORPS XMM0,XMM0 LEA RDX,[RSP + 0x10] MOVAPS xmmword ptr [RDX],XMM0 MOV qword ptr [RDX + 0x10],0x0 MOV RDI,qword ptr [R15 + 0x8] ...
/* google::protobuf::DescriptorPoolDatabase::FindAllExtensionNumbers(std::__cxx11::string const&, std::vector<int, std::allocator<int> >*) */ bool __thiscall google::protobuf::DescriptorPoolDatabase::FindAllExtensionNumbers (DescriptorPoolDatabase *this,string *param_1,vector *param_2) { int4 *puVar1;...
61,311
ggml_get_f32_nd
7CodeWizard[P]stablediffusion/ggml/src/ggml.c
float ggml_get_f32_nd(const struct ggml_tensor * tensor, int i0, int i1, int i2, int i3) { void * data = (char *) tensor->data + i0*tensor->nb[0] + i1*tensor->nb[1] + i2*tensor->nb[2] + i3*tensor->nb[3]; switch (tensor->type) { case GGML_TYPE_I8: return ((int8_t *) data)[0]; case G...
O1
c
ggml_get_f32_nd: movslq %esi, %rsi imulq 0x30(%rdi), %rsi addq 0x118(%rdi), %rsi movslq %edx, %rdx imulq 0x38(%rdi), %rdx movslq %ecx, %rax imulq 0x40(%rdi), %rax addq %rdx, %rax addq %rsi, %rax movslq %r8d, %rcx imulq 0x48(%rdi), %rcx movl (%rdi), %edx cmpl $0xf, %edx jle 0x9083c cmpl $0x12, %edx je 0x90856 cmpl $0x11...
ggml_get_f32_nd: movsxd rsi, esi imul rsi, [rdi+30h] add rsi, [rdi+118h] movsxd rdx, edx imul rdx, [rdi+38h] movsxd rax, ecx imul rax, [rdi+40h] add rax, rdx add rax, rsi movsxd rcx, r8d imul rcx, [rdi+48h] mov edx, [rdi] cmp edx, 0Fh jle short loc_9083C cmp edx, 12h jz ...
__int128 __usercall ggml_get_f32_nd@<xmm0>( _QWORD *a1@<rdi>, int a2@<esi>, int a3@<edx>, int a4@<ecx>, int a5@<r8d>, __m128 _XMM0@<xmm0>) { long long v6; // rsi long long v9; // rdx __int128 result; // xmm0 v6 = a1[35] + a1[6] * a2; _RAX = v6 + a1[7] * a3 + a1...
61,312
ggml_get_f32_nd
7CodeWizard[P]stablediffusion/ggml/src/ggml.c
float ggml_get_f32_nd(const struct ggml_tensor * tensor, int i0, int i1, int i2, int i3) { void * data = (char *) tensor->data + i0*tensor->nb[0] + i1*tensor->nb[1] + i2*tensor->nb[2] + i3*tensor->nb[3]; switch (tensor->type) { case GGML_TYPE_I8: return ((int8_t *) data)[0]; case G...
O2
c
ggml_get_f32_nd: movslq %esi, %rsi imulq 0x30(%rdi), %rsi addq 0x118(%rdi), %rsi movslq %edx, %rdx imulq 0x38(%rdi), %rdx movslq %ecx, %rax imulq 0x40(%rdi), %rax addq %rdx, %rax addq %rsi, %rax movslq %r8d, %rcx imulq 0x48(%rdi), %rcx movl (%rdi), %edx testl %edx, %edx je 0x6949f cmpl $0x1, %edx je 0x6948e cmpl $0x12,...
ggml_get_f32_nd: movsxd rsi, esi imul rsi, [rdi+30h] add rsi, [rdi+118h] movsxd rdx, edx imul rdx, [rdi+38h] movsxd rax, ecx imul rax, [rdi+40h] add rax, rdx add rax, rsi movsxd rcx, r8d imul rcx, [rdi+48h] mov edx, [rdi] test edx, edx jz short loc_6949F cmp edx, 1 jz sh...
__int128 __usercall ggml_get_f32_nd@<xmm0>( int *a1@<rdi>, int a2@<esi>, int a3@<edx>, int a4@<ecx>, int a5@<r8d>, __m128 _XMM0@<xmm0>) { int v8; // edx __int128 result; // xmm0 long long v12; // rdi _RAX = *((_QWORD *)a1 + 35) + *((_QWORD *)a1 + 6) * a2 + *((_QW...
ggml_get_f32_nd: MOVSXD RSI,ESI IMUL RSI,qword ptr [RDI + 0x30] ADD RSI,qword ptr [RDI + 0x118] MOVSXD RDX,EDX IMUL RDX,qword ptr [RDI + 0x38] MOVSXD RAX,ECX IMUL RAX,qword ptr [RDI + 0x40] ADD RAX,RDX ADD RAX,RSI MOVSXD RCX,R8D IMUL RCX,qword ptr [RDI + 0x48] MOV EDX,dword ptr [RDI] TEST EDX,EDX JZ 0x0016949f CMP EDX,...
ulong ggml_get_f32_nd(int *param_1,int param_2,int param_3,int param_4,int param_5, int8 param_6) { int iVar1; long lVar2; long lVar3; int1 auVar4 [16]; int1 auVar5 [16]; int1 in_ZMM0 [64]; lVar2 = (long)param_4 * *(long *)(param_1 + 0x10) + (long)param_3 * *(long *)(param_1 + 0x...
61,313
my_caseup_str_utf8mb4
eloqsql/strings/ctype-utf8.c
static size_t my_caseup_str_utf8mb4(CHARSET_INFO *cs, char *src) { my_wc_t wc; int srcres, dstres; char *dst= src, *dst0= src; MY_UNICASE_INFO *uni_plane= cs->caseinfo; DBUG_ASSERT(cs->caseup_multiply == 1); while (*src && (srcres= my_mb_wc_utf8mb4_no_range(cs, &wc, (uchar *) src)) > 0) { my...
O3
c
my_caseup_str_utf8mb4: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movq %rsi, %rbx cmpb $0x0, (%rsi) movq %rsi, %r14 je 0xcbfd3 movq 0x78(%rdi), %r15 movq %rbx, %r12 movq %rbx, %r14 leaq -0x30(%rbp), %rdi movq %r12, %rsi callq 0xcf317 testl %eax, %eax je 0xcbfd3 movl %ea...
my_caseup_str_utf8mb4: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx push rax mov rbx, rsi cmp byte ptr [rsi], 0 mov r14, rsi jz short loc_CBFD3 mov r15, [rdi+78h] mov r12, rbx mov r14, rbx loc_CBF75: lea rdi, [rbp+var_30] mov rsi, r12 c...
long long my_caseup_str_utf8mb4(long long a1, _BYTE *a2) { long long v2; // rax _BYTE *v3; // r14 _QWORD *v4; // r15 _BYTE *v5; // r12 unsigned int v6; // eax unsigned int v7; // r13d long long v8; // rdi long long v9; // rax unsigned int v10; // eax bool v11; // zf _QWORD v13[6]; // [rsp+0h] [rb...
my_caseup_str_utf8mb4: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX PUSH RAX MOV RBX,RSI CMP byte ptr [RSI],0x0 MOV R14,RSI JZ 0x001cbfd3 MOV R15,qword ptr [RDI + 0x78] MOV R12,RBX MOV R14,RBX LAB_001cbf75: LEA RDI,[RBP + -0x30] MOV RSI,R12 CALL 0x001cf317 TEST EAX,EAX JZ 0x001cbfd3 MOV R13D,EAX MO...
long my_caseup_str_utf8mb4(long param_1,char *param_2) { char *pcVar1; ulong *puVar2; long lVar3; uint uVar4; uint uVar5; ulong in_RAX; char *pcVar6; char *pcVar7; ulong local_38; pcVar7 = param_2; if (*param_2 != '\0') { puVar2 = *(ulong **)(param_1 + 0x78); pcVar6 = param_2; loc...
61,314
LefDefParser::lefwViaViarulePattern(char const*)
Efficient-TDP/thirdparty/Limbo/limbo/thirdparty/lefdef/5.8/lef/lef/lefwWriter.cpp
int lefwViaViarulePattern(const char *cutPattern) { if (!lefwFile) return LEFW_UNINITIALIZED; if (lefwState != LEFW_VIAVIARULE) return LEFW_BAD_ORDER; if (lefwWriteEncrypt) encPrint(lefwFile, (char*) " PATTERN %s ;\n", cutPattern); else fprintf(lefwFile, " PATTER...
O0
cpp
LefDefParser::lefwViaViarulePattern(char const*): subq $0x18, %rsp movq %rdi, 0x8(%rsp) leaq 0x1a670(%rip), %rax # 0x32e00 cmpq $0x0, (%rax) jne 0x187a0 movl $0x1, 0x14(%rsp) jmp 0x18818 leaq 0x1a8a9(%rip), %rax # 0x33050 cmpl $0x4e, (%rax) je 0x187b6 movl $0x2, 0x14(%rsp) jmp 0x18818 cmpl $0x0, 0x1a92f(%rip) ...
_ZN12LefDefParser21lefwViaViarulePatternEPKc: sub rsp, 18h mov [rsp+18h+var_10], rdi lea rax, _ZN12LefDefParser8lefwFileE; LefDefParser::lefwFile cmp qword ptr [rax], 0 jnz short loc_187A0 mov [rsp+18h+var_4], 1 jmp short loc_18818 loc_187A0: lea rax, _ZN12LefDefParser9lefwStateE; LefDef...
long long LefDefParser::lefwViaViarulePattern( LefDefParser *this, const char *a2, long long a3, int a4, int a5, int a6) { if ( *(_QWORD *)&LefDefParser::lefwFile ) { if ( LefDefParser::lefwState == 78 ) { if ( LefDefParser::lefwWriteEncrypt ) L...
lefwViaViarulePattern: SUB RSP,0x18 MOV qword ptr [RSP + 0x8],RDI LEA RAX,[0x132e00] CMP qword ptr [RAX],0x0 JNZ 0x001187a0 MOV dword ptr [RSP + 0x14],0x1 JMP 0x00118818 LAB_001187a0: LEA RAX,[0x133050] CMP dword ptr [RAX],0x4e JZ 0x001187b6 MOV dword ptr [RSP + 0x14],0x2 JMP 0x00118818 LAB_001187b6: CMP dword ptr [0x0...
/* LefDefParser::lefwViaViarulePattern(char const*) */ int4 LefDefParser::lefwViaViarulePattern(char *param_1) { int4 local_4; if (lefwFile == (_IO_FILE *)0x0) { local_4 = 1; } else if (lefwState == 0x4e) { if (lefwWriteEncrypt == 0) { fprintf(lefwFile," PATTERN %s ;\n",param_1); } ...
61,315
my_wc_to_printable_ex
eloqsql/strings/ctype.c
int my_wc_to_printable_ex(CHARSET_INFO *cs, my_wc_t wc, uchar *str, uchar *end, uint bs, uint bslen, uint diglen) { uchar *str0; uint i, length; uchar tmp[MY_CS_PRINTABLE_CHAR_LENGTH * MY_CS_MBMAXLEN]; if (my_is_printable(wc)) { int mblen= my_ci_wc_mb(cs, wc, s...
O0
c
my_wc_to_printable_ex: pushq %rbp movq %rsp, %rbp subq $0x90, %rsp movl 0x10(%rbp), %eax movq %fs:0x28, %rax movq %rax, -0x8(%rbp) movq %rdi, -0x40(%rbp) movq %rsi, -0x48(%rbp) movq %rdx, -0x50(%rbp) movq %rcx, -0x58(%rbp) movl %r8d, -0x5c(%rbp) movl %r9d, -0x60(%rbp) movq -0x48(%rbp), %rdi callq 0x75c30 cmpb $0x0, %al...
my_wc_to_printable_ex: push rbp mov rbp, rsp sub rsp, 90h mov eax, [rbp+arg_0] mov rax, fs:28h mov [rbp+var_8], rax mov [rbp+var_40], rdi mov [rbp+var_48], rsi mov [rbp+var_50], rdx mov [rbp+var_58], rcx mov [rbp+var_5C], r8d mov [rbp+var_60], r9d mov rdi, [rbp+var_48]...
long long my_wc_to_printable_ex( long long a1, long long a2, long long a3, unsigned long long a4, unsigned int a5, unsigned int a6, unsigned int a7) { unsigned int v8; // [rsp+Ch] [rbp-84h] int v9; // [rsp+1Ch] [rbp-74h] unsigned int v10; // [rsp+20h] [rbp-...
my_wc_to_printable_ex: PUSH RBP MOV RBP,RSP SUB RSP,0x90 MOV EAX,dword ptr [RBP + 0x10] MOV RAX,qword ptr FS:[0x28] MOV qword ptr [RBP + -0x8],RAX MOV qword ptr [RBP + -0x40],RDI MOV qword ptr [RBP + -0x48],RSI MOV qword ptr [RBP + -0x50],RDX MOV qword ptr [RBP + -0x58],RCX MOV dword ptr [RBP + -0x5c],R8D MOV dword ptr...
int my_wc_to_printable_ex (long param_1,int8 param_2,long param_3,ulong param_4,int4 param_5, uint param_6,uint param_7) { char cVar1; uint uVar2; uint uVar3; long in_FS_OFFSET; uint local_8c; uint local_74; long local_58; int local_3c; int1 local_38 [40]; long local_10...
61,316
my_wc_to_printable_ex
eloqsql/strings/ctype.c
int my_wc_to_printable_ex(CHARSET_INFO *cs, my_wc_t wc, uchar *str, uchar *end, uint bs, uint bslen, uint diglen) { uchar *str0; uint i, length; uchar tmp[MY_CS_PRINTABLE_CHAR_LENGTH * MY_CS_MBMAXLEN]; if (my_is_printable(wc)) { int mblen= my_ci_wc_mb(cs, wc, s...
O3
c
my_wc_to_printable_ex: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movq %r9, -0x60(%rbp) movl %r8d, -0x58(%rbp) movq %rcx, %r14 movq %rdx, %r15 movq %rsi, %r13 movq %rdi, %r12 movq %fs:0x28, %rax movq %rax, -0x30(%rbp) leaq -0x20(%rsi), %rax cmpq $0x5f, %rax jae 0x...
my_wc_to_printable_ex: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 48h mov [rbp+var_60], r9 mov dword ptr [rbp+var_58], r8d mov r14, rcx mov r15, rdx mov r13, rsi mov r12, rdi mov rax, fs:28h mov [rbp+var_30], rax lea rax, [rs...
long long my_wc_to_printable_ex( long long a1, unsigned long long a2, _BYTE *a3, unsigned long long a4, char a5, unsigned int a6, unsigned int a7) { int v9; // ebx long long v10; // rax long long v11; // rax long long v12; // rcx long long v13; // rdx ...
my_wc_to_printable_ex: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x48 MOV qword ptr [RBP + -0x60],R9 MOV dword ptr [RBP + -0x58],R8D MOV R14,RCX MOV R15,RDX MOV R13,RSI MOV R12,RDI MOV RAX,qword ptr FS:[0x28] MOV qword ptr [RBP + -0x30],RAX LEA RAX,[RSI + -0x20] CMP RAX,0x5f JNC 0x00159c...
int my_wc_to_printable_ex (long param_1,ulong param_2,char *param_3,char *param_4,char param_5,uint param_6, uint param_7) { uint uVar1; uint uVar2; uint uVar3; uint uVar4; char *pcVar5; long lVar6; long in_FS_OFFSET; int local_60; char local_58 [32]; long local_38; ...
61,317
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...
llama.cpp/common/json.hpp
token_type scan() { // initially, skip the BOM if (position.chars_read_total == 0 && !skip_bom()) { error_message = "invalid BOM; must be 0xEF 0xBB 0xBF if given"; return token_type::parse_error; } // read next character and ignore whitespace ...
O3
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_EEEEE4scanEv: push r14 push rbx sub rsp, 18h mov rbx, rdi c...
long long 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::iterat...
scan: PUSH R14 PUSH RBX SUB RSP,0x18 MOV RBX,RDI CMP qword ptr [RDI + 0x20],0x0 JNZ 0x001653d7 MOV RDI,RBX CALL 0x0016556e TEST AL,AL JZ 0x00165499 LAB_001653d7: MOV R14,0x100002600 LAB_001653e1: MOV RDI,RBX CALL 0x0011e9d6 MOV EAX,dword ptr [RBX + 0x14] CMP RAX,0x20 JA 0x00165421 BT R14,RAX JC 0x001653e1 JMP 0x0016542...
/* 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,318
free_zero_refcount
bluesky950520[P]quickjs/quickjs.c
static void free_zero_refcount(JSRuntime *rt) { struct list_head *el; JSGCObjectHeader *p; rt->gc_phase = JS_GC_PHASE_DECREF; for(;;) { el = rt->gc_zero_ref_count_list.next; if (el == &rt->gc_zero_ref_count_list) break; p = list_entry(el, JSGCObjectHeader, link); ...
O0
c
free_zero_refcount: subq $0x18, %rsp movq %rdi, 0x10(%rsp) movq 0x10(%rsp), %rax movb $0x1, 0xc8(%rax) movq 0x10(%rsp), %rax movq 0xb0(%rax), %rax movq %rax, 0x8(%rsp) movq 0x8(%rsp), %rax movq 0x10(%rsp), %rcx addq $0xa8, %rcx cmpq %rcx, %rax jne 0x64bde jmp 0x64bfb movq 0x8(%rsp), %rax addq $-0x8, %rax movq %rax, (%r...
free_zero_refcount: sub rsp, 18h mov [rsp+18h+var_8], rdi mov rax, [rsp+18h+var_8] mov byte ptr [rax+0C8h], 1 loc_64BB5: mov rax, [rsp+18h+var_8] mov rax, [rax+0B0h] mov [rsp+18h+var_10], rax mov rax, [rsp+18h+var_10] mov rcx, [rsp+18h+var_8] add rcx, 0A8h cmp rax, rcx jnz ...
long long free_zero_refcount(long long a1) { long long result; // rax long long v2; // [rsp+8h] [rbp-10h] *(_BYTE *)(a1 + 200) = 1; while ( 1 ) { v2 = *(_QWORD *)(a1 + 176); if ( v2 == a1 + 168 ) break; free_gc_object(a1, v2 - 8); } result = a1; *(_BYTE *)(a1 + 200) = 0; return res...
free_zero_refcount: SUB RSP,0x18 MOV qword ptr [RSP + 0x10],RDI MOV RAX,qword ptr [RSP + 0x10] MOV byte ptr [RAX + 0xc8],0x1 LAB_00164bb5: MOV RAX,qword ptr [RSP + 0x10] MOV RAX,qword ptr [RAX + 0xb0] MOV qword ptr [RSP + 0x8],RAX MOV RAX,qword ptr [RSP + 0x8] MOV RCX,qword ptr [RSP + 0x10] ADD RCX,0xa8 CMP RAX,RCX JNZ...
void free_zero_refcount(long param_1) { *(int1 *)(param_1 + 200) = 1; while( true ) { if (*(long *)(param_1 + 0xb0) == param_1 + 0xa8) break; free_gc_object(param_1,*(long *)(param_1 + 0xb0) + -8); } *(int1 *)(param_1 + 200) = 0; return; }
61,319
mbedtls_cipher_aead_decrypt
msxemulator/build_O3/_deps/pico_sdk-src/lib/mbedtls/library/cipher.c
static int mbedtls_cipher_aead_decrypt(mbedtls_cipher_context_t *ctx, const unsigned char *iv, size_t iv_len, const unsigned char *ad, size_t ad_len, const unsigned char *input, size_t ilen, ...
O3
c
mbedtls_cipher_aead_decrypt: pushq %r15 pushq %r14 pushq %r12 pushq %rbx pushq %rax movq %r9, %r11 movq %r8, %r9 movq %rcx, %r8 movq %rdx, %rcx movq %rsi, %rdx movq 0x50(%rsp), %r14 movq 0x48(%rsp), %r10 movq 0x40(%rsp), %r15 movq 0x38(%rsp), %rbx movq 0x30(%rsp), %rsi movq (%rdi), %r12 movl 0x4(%r12), %eax cmpl $0x8, ...
mbedtls_cipher_aead_decrypt: push r15 push r14 push r12 push rbx push rax mov r11, r9 mov r9, r8 mov r8, rcx mov rcx, rdx mov rdx, rsi mov r14, [rsp+28h+arg_20] mov r10, [rsp+28h+arg_18] mov r15, [rsp+28h+arg_10] mov rbx, [rsp+28h+arg_8] mov rsi, [rsp+28h+arg_0] mo...
long long mbedtls_cipher_aead_decrypt( _QWORD *a1, int a2, long long a3, int a4, int a5, long long a6, long long a7, long long a8, _QWORD *a9, long long a10, long long a11) { _DWORD *v11; // r12 int v12; // eax unsigned int v...
mbedtls_cipher_aead_decrypt: PUSH R15 PUSH R14 PUSH R12 PUSH RBX PUSH RAX MOV R11,R9 MOV R9,R8 MOV R8,RCX MOV RCX,RDX MOV RDX,RSI MOV R14,qword ptr [RSP + 0x50] MOV R10,qword ptr [RSP + 0x48] MOV R15,qword ptr [RSP + 0x40] MOV RBX,qword ptr [RSP + 0x38] MOV RSI,qword ptr [RSP + 0x30] MOV R12,qword ptr [RDI] MOV EAX,dwo...
int mbedtls_cipher_aead_decrypt (int8 *param_1,int8 param_2,ulong param_3,int8 param_4, int8 param_5,int8 param_6,int8 param_7,int8 param_8, int8 *param_9,int8 param_10,long param_11) { int *piVar1; int iVar2; int iVar3; bool bVar4; piVar1 = (int *)*param_1; if...
61,320
my_setwd
eloqsql/mysys/my_getwd.c
int my_setwd(const char *dir, myf MyFlags) { int res; size_t length; char *start, *pos; DBUG_ENTER("my_setwd"); DBUG_PRINT("my",("dir: '%s' MyFlags %lu", dir, MyFlags)); start=(char *) dir; if (! dir[0] || (dir[0] == FN_LIBCHAR && dir[1] == 0)) dir=FN_ROOTDIR; if ((res=chdir((char*) dir)) != 0) ...
O0
c
my_setwd: pushq %rbp movq %rsp, %rbp subq $0x50, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) jmp 0x2ed42 movq -0x8(%rbp), %rax movq %rax, -0x28(%rbp) movq -0x8(%rbp), %rax cmpb $0x0, (%rax) je 0x2ed6c movq -0x8(%rbp), %rax movsbl (%rax), %eax cmpl $0x2f, %eax jne 0x2ed77 movq -0x8(%rbp), %rax movsbl 0x1(%rax), %e...
my_setwd: push rbp mov rbp, rsp sub rsp, 50h mov [rbp+var_8], rdi mov [rbp+var_10], rsi jmp short $+2 loc_2ED42: mov rax, [rbp+var_8] mov [rbp+var_28], rax mov rax, [rbp+var_8] cmp byte ptr [rax], 0 jz short loc_2ED6C mov rax, [rbp+var_8] movsx eax, byte ptr [rax] cmp ...
long long my_setwd(_BYTE *a1, char a2) { unsigned int *v2; // rax int v4; // [rsp+1Ch] [rbp-34h] long long v5; // [rsp+20h] [rbp-30h] unsigned int v6; // [rsp+3Ch] [rbp-14h] void *v7; // [rsp+48h] [rbp-8h] v7 = a1; if ( !*a1 || *a1 == 47 && !a1[1] ) v7 = &unk_7A4CE; v6 = chdir(v7); if ( v6 ) {...
my_setwd: PUSH RBP MOV RBP,RSP SUB RSP,0x50 MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI JMP 0x0012ed42 LAB_0012ed42: MOV RAX,qword ptr [RBP + -0x8] MOV qword ptr [RBP + -0x28],RAX MOV RAX,qword ptr [RBP + -0x8] CMP byte ptr [RAX],0x0 JZ 0x0012ed6c MOV RAX,qword ptr [RBP + -0x8] MOVSX EAX,byte ptr [RA...
int my_setwd(char *param_1,ulong param_2) { int iVar1; int iVar2; uint uVar3; int *piVar4; long lVar5; char *local_10; if ((*param_1 == '\0') || ((local_10 = param_1, *param_1 == '/' && (param_1[1] == '\0')))) { local_10 = "/"; } iVar1 = chdir(local_10); if (iVar1 == 0) { iVar2 = test_i...
61,321
OpenSubdiv::v3_6_0::Tmr::SubdivisionPlan::SubdivisionPlan(int, int, int, int, int, int)
NVIDIA-RTX[P]OSD-Lite/opensubdiv/tmr/subdivisionPlan.cpp
SubdivisionPlan::SubdivisionPlan(int treeSize, int numControlPoints, int numPatchPoints, int regFaceSize, int faceSize, int subfaceIndex) { static_assert(sizeof(TreeDescriptor) == NodeBase::rootNodeOffset() * sizeof(decltype(SubdivisionPlan::_tree)::value_type)); static_assert(NodeBase::maxIsolat...
O2
cpp
OpenSubdiv::v3_6_0::Tmr::SubdivisionPlan::SubdivisionPlan(int, int, int, int, int, int): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movl %r9d, %r13d movl %r8d, %r15d movl %ecx, 0x4(%rsp) movl %edx, %r12d movq %rdi, %r14 andq $0x0, (%rdi) leaq 0x18(%rdi), %rax movq %rax, 0x8(%rdi) movab...
_ZN10OpenSubdiv6v3_6_03Tmr15SubdivisionPlanC2Eiiiiii: push rbp; Alternative name is 'OpenSubdiv::v3_6_0::Tmr::SubdivisionPlan::SubdivisionPlan(int, int, int, int, int, int)' push r15 push r14 push r13 push r12 push rbx push rax mov r13d, r9d mov r15d, r8d mov [rsp+38h+var_34], ecx mov ...
long long OpenSubdiv::v3_6_0::Tmr::SubdivisionPlan::SubdivisionPlan( OpenSubdiv::v3_6_0::Tmr::SubdivisionPlan *this, int a2, int a3, int a4, int a5, int a6, unsigned __int16 a7) { int *v10; // rcx *(_QWORD *)this = 0LL; *((_QWORD *)this + 1) = (char *)this...
SubdivisionPlan: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX PUSH RAX MOV R13D,R9D MOV R15D,R8D MOV dword ptr [RSP + 0x4],ECX MOV R12D,EDX MOV R14,RDI AND qword ptr [RDI],0x0 LEA RAX,[RDI + 0x18] MOV qword ptr [RDI + 0x8],RAX MOV RAX,0x400000000 MOV qword ptr [RDI + 0x10],RAX LEA RBX,[RDI + 0x40] LEA RBP,[RDI...
/* OpenSubdiv::v3_6_0::Tmr::SubdivisionPlan::SubdivisionPlan(int, int, int, int, int, int) */ void __thiscall OpenSubdiv::v3_6_0::Tmr::SubdivisionPlan::SubdivisionPlan (SubdivisionPlan *this,int param_1,int param_2,int param_3,int param_4,int param_5, int param_6) { uint *puVar1; *(int8 *)...
61,322
mysql_fetch_row_start_internal
eloqsql/libmariadb/libmariadb/mariadb_async.c
static void mysql_fetch_row_start_internal(void *d) { MK_ASYNC_INTERNAL_BODY( mysql_fetch_row, (parms->result), parms->result->handle, MYSQL_ROW, r_ptr) }
O0
c
mysql_fetch_row_start_internal: pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax movq %rax, -0x10(%rbp) movq -0x10(%rbp), %rax movq (%rax), %rax movq 0x78(%rax), %rax movq 0x480(%rax), %rax movq 0x28(%rax), %rax movq %rax, -0x20(%rbp) movq -0x10(%rbp), %rax movq (%rax), %rdi callq...
mysql_fetch_row_start_internal: push rbp mov rbp, rsp sub rsp, 20h mov [rbp+var_8], rdi mov rax, [rbp+var_8] mov [rbp+var_10], rax mov rax, [rbp+var_10] mov rax, [rax] mov rax, [rax+78h] mov rax, [rax+480h] mov rax, [rax+28h] mov [rbp+var_20], rax mov rax, [rbp+var_10]...
long long mysql_fetch_row_start_internal(long long *a1) { long long result; // rax long long v2; // [rsp+0h] [rbp-20h] v2 = *(_QWORD *)(*(_QWORD *)(*(_QWORD *)(*a1 + 120) + 1152LL) + 40LL); *(_QWORD *)(v2 + 8) = mysql_fetch_row(*a1); result = v2; *(_DWORD *)v2 = 0; return result; }
mysql_fetch_row_start_internal: PUSH RBP MOV RBP,RSP SUB RSP,0x20 MOV qword ptr [RBP + -0x8],RDI MOV RAX,qword ptr [RBP + -0x8] MOV qword ptr [RBP + -0x10],RAX MOV RAX,qword ptr [RBP + -0x10] MOV RAX,qword ptr [RAX] MOV RAX,qword ptr [RAX + 0x78] MOV RAX,qword ptr [RAX + 0x480] MOV RAX,qword ptr [RAX + 0x28] MOV qword ...
void mysql_fetch_row_start_internal(long *param_1) { int4 *puVar1; int8 uVar2; puVar1 = *(int4 **)(*(long *)(*(long *)(*param_1 + 0x78) + 0x480) + 0x28); uVar2 = mysql_fetch_row(*param_1); *(int8 *)(puVar1 + 2) = uVar2; *puVar1 = 0; return; }
61,323
nlohmann::json_abi_v3_11_3::detail::json_sax_dom_callback_parser<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...
monkey531[P]llama/common/json.hpp
bool end_array() { bool keep = true; if (ref_stack.back()) { keep = callback(static_cast<int>(ref_stack.size()) - 1, parse_event_t::array_end, *ref_stack.back()); if (keep) { ref_stack.back()->set_parents(); } else ...
O2
cpp
nlohmann::json_abi_v3_11_3::detail::json_sax_dom_callback_parser<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...
_ZN8nlohmann16json_abi_v3_11_36detail28json_sax_dom_callback_parserINS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEEE9end_arrayEv: push rbp push r14 push rbx sub rsp, 10h mov rbx, rdi mov rsi, [rdi+10h] mov ...
char nlohmann::json_abi_v3_11_3::detail::json_sax_dom_callback_parser<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>>::end_array( lon...
end_array: PUSH RBP PUSH R14 PUSH RBX SUB RSP,0x10 MOV RBX,RDI MOV RSI,qword ptr [RDI + 0x10] MOV RCX,qword ptr [RSI + -0x8] MOV BPL,0x1 TEST RCX,RCX JZ 0x001411a0 LEA RDI,[RBX + 0x80] SUB RSI,qword ptr [RBX + 0x8] SHR RSI,0x3 DEC ESI PUSH 0x3 POP RDX CALL 0x00141474 TEST AL,AL JNZ 0x001411a0 LEA RSI,[RBX + 0xa8] MOV R...
/* nlohmann::json_abi_v3_11_3::detail::json_sax_dom_callback_parser<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::all...
61,324
google::protobuf::(anonymous namespace)::TypeMap<google::protobuf::(anonymous namespace)::IntT, char, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, google::protobuf::SourceCodeInfo, google::protobuf::FileDescriptorTables, google::protobuf::MessageOptions, google::protobuf::FieldOptions...
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/descriptor.cc
TypeMap<IntT, T...> CalculateEnds(const TypeMap<IntT, T...>& sizes) { int total = 0; TypeMap<IntT, T...> out; Fold({(out.template Get<T>() = total += sizeof(T) * sizes.template Get<T>())...}); return out; }
O0
cpp
google::protobuf::(anonymous namespace)::TypeMap<google::protobuf::(anonymous namespace)::IntT, char, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, google::protobuf::SourceCodeInfo, google::protobuf::FileDescriptorTables, google::protobuf::MessageOptions, google::protobuf::FieldOptions...
_ZN6google8protobuf12_GLOBAL__N_113CalculateEndsIJcNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEENS0_14SourceCodeInfoENS0_20FileDescriptorTablesENS0_14MessageOptionsENS0_12FieldOptionsENS0_11EnumOptionsENS0_16EnumValueOptionsENS0_21ExtensionRangeOptionsENS0_12OneofOptionsENS0_14ServiceOptionsENS0_13MethodOptionsE...
long long google::protobuf::`anonymous namespace'::CalculateEnds<char,std::string,google::protobuf::SourceCodeInfo,google::protobuf::FileDescriptorTables,google::protobuf::MessageOptions,google::protobuf::FieldOptions,google::protobuf::EnumOptions,google::protobuf::EnumValueOptions,google::protobuf::ExtensionRangeOpti...
CalculateEnds<char,std::__cxx11::string,google::protobuf::SourceCodeInfo,google::protobuf::FileDescriptorTables,google::protobuf::MessageOptions,google::protobuf::FieldOptions,google::protobuf::EnumOptions,google::protobuf::EnumValueOptions,google::protobuf::ExtensionRangeOptions,google::protobuf::OneofOptions,google::...
/* google::protobuf::(anonymous namespace)::TypeMap<google::protobuf::(anonymous namespace)::IntT, char, std::__cxx11::string, google::protobuf::SourceCodeInfo, google::protobuf::FileDescriptorTables, google::protobuf::MessageOptions, google::protobuf::FieldOptions, google::protobuf::EnumOptions, google::p...
61,325
get_date_field
bluesky950520[P]quickjs/quickjs.c
static JSValue get_date_field(JSContext *ctx, JSValue this_val, int argc, JSValue *argv, int magic) { // get_date_field(obj, n, is_local) double fields[9]; int res, n, is_local; is_local = magic & 0x0F; n = (magic >> 4) & 0x0F; res = get_date_fields(ctx, this_val, ...
O0
c
get_date_field: subq $0x98, %rsp movq %rsi, 0x78(%rsp) movq %rdx, 0x80(%rsp) movq %rdi, 0x70(%rsp) movl %ecx, 0x6c(%rsp) movq %r8, 0x60(%rsp) movl %r9d, 0x5c(%rsp) movl 0x5c(%rsp), %eax andl $0xf, %eax movl %eax, 0x4(%rsp) movl 0x5c(%rsp), %eax sarl $0x4, %eax andl $0xf, %eax movl %eax, 0x8(%rsp) movq 0x70(%rsp), %rdi ...
get_date_field: sub rsp, 98h mov [rsp+98h+var_20], rsi mov [rsp+98h+var_18], rdx mov [rsp+98h+var_28], rdi mov [rsp+98h+var_2C], ecx mov [rsp+98h+var_38], r8 mov [rsp+98h+var_3C], r9d mov eax, [rsp+98h+var_3C] and eax, 0Fh mov [rsp+98h+var_94], eax mov eax, [rsp+98h+var_3C] s...
long long get_date_field(long long a1, long long a2, long long a3, int a4, long long a5, int a6) { long long v6; // rdx int v8; // [rsp+8h] [rbp-90h] int date_fields; // [rsp+Ch] [rbp-8Ch] double v10[9]; // [rsp+10h] [rbp-88h] BYREF int v11; // [rsp+5Ch] [rbp-3Ch] long long v12; // [rsp+60h] [rbp-38h] in...
get_date_field: SUB RSP,0x98 MOV qword ptr [RSP + 0x78],RSI MOV qword ptr [RSP + 0x80],RDX MOV qword ptr [RSP + 0x70],RDI MOV dword ptr [RSP + 0x6c],ECX MOV qword ptr [RSP + 0x60],R8 MOV dword ptr [RSP + 0x5c],R9D MOV EAX,dword ptr [RSP + 0x5c] AND EAX,0xf MOV dword ptr [RSP + 0x4],EAX MOV EAX,dword ptr [RSP + 0x5c] SA...
int1 [16] get_date_field(int8 param_1,int8 param_2,int8 param_3,int4 param_4, int8 param_5,uint param_6) { int iVar1; int1 auVar2 [16]; double local_88 [9]; uint local_3c; int8 local_38; int4 local_2c; int8 local_28; int8 local_20; int8 local_18; int4 local_10; int4 uStack_c; in...
61,326
get_date_field
bluesky950520[P]quickjs/quickjs.c
static JSValue get_date_field(JSContext *ctx, JSValue this_val, int argc, JSValue *argv, int magic) { // get_date_field(obj, n, is_local) double fields[9]; int res, n, is_local; is_local = magic & 0x0F; n = (magic >> 4) & 0x0F; res = get_date_fields(ctx, this_val, ...
O3
c
get_date_field: pushq %rbp pushq %r14 pushq %rbx subq $0x50, %rsp movl %r9d, %ebp movl %r9d, %r8d andl $0xf, %r8d movl %r9d, %r14d shrl $0x4, %r14d andl $0xf, %r14d movq %rsp, %rcx xorl %ebx, %ebx xorl %r9d, %r9d callq 0x59001 testl %eax, %eax js 0x58a5e je 0x58a65 btl $0x8, %ebp jae 0x58a1d movsd (%rsp), %xmm0 addsd 0...
get_date_field: push rbp push r14 push rbx sub rsp, 50h mov ebp, r9d mov r8d, r9d and r8d, 0Fh mov r14d, r9d shr r14d, 4 and r14d, 0Fh mov rcx, rsp xor ebx, ebx xor r9d, r9d call get_date_fields test eax, eax js short loc_58A5E jz short loc_58A65 bt ...
long long get_date_field(long long a1, long long a2, long long a3, long long a4, long long a5, __int16 a6) { int v7; // r14d double v8; // rbx int date_fields; // eax double v10; // xmm0_8 bool v11; // al double v13[13]; // [rsp+0h] [rbp-68h] BYREF v7 = (unsigned __int8)a6 >> 4; v8 = 0.0; date_field...
get_date_field: PUSH RBP PUSH R14 PUSH RBX SUB RSP,0x50 MOV EBP,R9D MOV R8D,R9D AND R8D,0xf MOV R14D,R9D SHR R14D,0x4 AND R14D,0xf MOV RCX,RSP XOR EBX,EBX XOR R9D,R9D CALL 0x00159001 TEST EAX,EAX JS 0x00158a5e JZ 0x00158a65 BT EBP,0x8 JNC 0x00158a1d MOVSD XMM0,qword ptr [RSP] ADDSD XMM0,qword ptr [0x001a01e0] MOVSD qwo...
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */ int1 [16] get_date_field(void) { bool bVar1; int iVar2; ulong uVar3; int8 uVar4; double dVar5; uint in_R9D; int1 auVar6 [16]; double local_68 [10]; dVar5 = 0.0; iVar2 = get_date_fields(); if (iVar2 < 0) { ...
61,327
recursive_free
eloqsql/mysys/lf_dynarray.c
static void recursive_free(void **alloc, int level) { if (!alloc) return; if (level) { int i; for (i= 0; i < LF_DYNARRAY_LEVEL_LENGTH; i++) recursive_free(alloc[i], level-1); my_free(alloc); } else my_free(alloc[-1]); }
O3
c
recursive_free: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax testq %rdi, %rdi je 0xb0896 movl %esi, %r14d movq %rdi, %rbx testl %esi, %esi je 0xb08a1 decl %r14d xorl %r15d, %r15d movq (%rbx,%r15,8), %rdi movl %r14d, %esi callq 0xb085a incq %r15 cmpq $0x100, %r15 # imm = 0x100 jne 0x...
recursive_free: push rbp mov rbp, rsp push r15 push r14 push rbx push rax test rdi, rdi jz short loc_B0896 mov r14d, esi mov rbx, rdi test esi, esi jz short loc_B08A1 dec r14d xor r15d, r15d loc_B0879: mov rdi, [rbx+r15*8] mov esi, r14d call recursive_free i...
long long recursive_free(long long a1, int a2) { long long i; // r15 long long result; // rax if ( a1 ) { if ( a2 ) { for ( i = 0LL; i != 256; ++i ) recursive_free(*(_QWORD *)(a1 + 8 * i), (unsigned int)(a2 - 1)); return my_free(a1); } else { return my_free(*(_QWO...
recursive_free: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX PUSH RAX TEST RDI,RDI JZ 0x001b0896 MOV R14D,ESI MOV RBX,RDI TEST ESI,ESI JZ 0x001b08a1 DEC R14D XOR R15D,R15D LAB_001b0879: MOV RDI,qword ptr [RBX + R15*0x8] MOV ESI,R14D CALL 0x001b085a INC R15 CMP R15,0x100 JNZ 0x001b0879 MOV RDI,RBX JMP 0x001b08a5 LAB_...
void recursive_free(long param_1,int param_2) { long lVar1; if (param_1 == 0) { return; } if (param_2 == 0) { param_1 = *(long *)(param_1 + -8); } else { lVar1 = 0; do { recursive_free(*(int8 *)(param_1 + lVar1 * 8),param_2 + -1); lVar1 = lVar1 + 1; } while (lVar1 != 0x1...
61,328
mi_cmp_static_unique
eloqsql/storage/myisam/mi_statrec.c
int _mi_cmp_static_unique(MI_INFO *info, MI_UNIQUEDEF *def, const uchar *record, my_off_t pos) { DBUG_ENTER("_mi_cmp_static_unique"); info->rec_cache.seek_not_done=1; /* We have done a seek */ if (info->s->file_read(info, info->rec_buff, info->s->base.reclength, pos, MYF(MY_NABP))) DBUG_RETURN(...
O0
c
mi_cmp_static_unique: pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movq %rcx, -0x28(%rbp) movq -0x10(%rbp), %rax movl $0x1, 0x300(%rax) movq -0x10(%rbp), %rax movq (%rax), %rax movq 0x2e0(%rax), %rax movq -0x10(%rbp), %rdi movq -0x10(%rbp), %rcx movq 0...
_mi_cmp_static_unique: push rbp mov rbp, rsp sub rsp, 30h mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov [rbp+var_20], rdx mov [rbp+var_28], rcx mov rax, [rbp+var_10] mov dword ptr [rax+300h], 1 mov rax, [rbp+var_10] mov rax, [rax] mov rax, [rax+2E0h] mov rdi, [rbp+va...
long long mi_cmp_static_unique(long long a1, long long a2, long long a3, long long a4) { *(_DWORD *)(a1 + 768) = 1; if ( (*(long long ( **)(long long, _QWORD, _QWORD, long long, long long))(*(_QWORD *)a1 + 736LL))( a1, *(_QWORD *)(a1 + 288), *(_QWORD *)(*(_QWORD *)a1 + 320LL), a...
_mi_cmp_static_unique: 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 MOV qword ptr [RBP + -0x28],RCX MOV RAX,qword ptr [RBP + -0x10] MOV dword ptr [RAX + 0x300],0x1 MOV RAX,qword ptr [RBP + -0x10] MOV RAX,qword ptr [RAX] MOV RAX,qword p...
int4 _mi_cmp_static_unique(long *param_1,long param_2,int8 param_3,int8 param_4) { long lVar1; int4 local_c; *(int4 *)(param_1 + 0x60) = 1; lVar1 = (**(code **)(*param_1 + 0x2e0)) (param_1,param_1[0x24],*(int8 *)(*param_1 + 0x140),param_4,4); if (lVar1 == 0) { local_c = mi_unique_...
61,329
CLI::App::get_option_no_throw(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>)
MikePodsytnik[P]TCRtrie/build_O0/_deps/cli11-src/include/CLI/impl/App_inl.hpp
CLI11_INLINE Option *App::get_option_no_throw(std::string option_name) noexcept { for(Option_p &opt : options_) { if(opt->check_name(option_name)) { return opt.get(); } } for(auto &subc : subcommands_) { // also check down into nameless subcommands if(subc->get_na...
O0
cpp
CLI::App::get_option_no_throw(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>): pushq %rbp movq %rsp, %rbp subq $0xb0, %rsp movq %rsi, -0x90(%rbp) movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq -0x10(%rbp), %rax movq %rax, -0x88(%rbp) addq $0xd8, %rax movq %rax, -0x20(%rbp) movq -0x20...
_ZN3CLI3App19get_option_no_throwENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE: push rbp mov rbp, rsp sub rsp, 0B0h mov [rbp+var_90], rsi mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov rax, [rbp+var_10] mov [rbp+var_88], rax add rax, 0D8h mov [rbp+var_20], rax mov rdi,...
long long CLI::App::get_option_no_throw(long long a1, long long a2) { long long v2; // rdi long long v3; // rax long long v4; // rax long long option_no_throw; // [rsp+8h] [rbp-A8h] long long v7; // [rsp+10h] [rbp-A0h] _BYTE v9[32]; // [rsp+30h] [rbp-80h] BYREF long long v10; // [rsp+50h] [rbp-60h] lon...
get_option_no_throw: PUSH RBP MOV RBP,RSP SUB RSP,0xb0 MOV qword ptr [RBP + -0x90],RSI MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV RAX,qword ptr [RBP + -0x10] MOV qword ptr [RBP + -0x88],RAX ADD RAX,0xd8 MOV qword ptr [RBP + -0x20],RAX MOV RDI,qword ptr [RBP + -0x20] CALL 0x001280f0 MOV qword pt...
/* CLI::App::get_option_no_throw(std::__cxx11::string) */ long __thiscall CLI::App::get_option_no_throw(App *this,string *param_2) { bool bVar1; byte bVar2; Option *this_00; App *this_01; ulong uVar3; int8 uVar4; long lVar5; string local_88 [32]; int8 local_68; __shared_ptr_access<CLI::App,(__gnu...
61,330
JS_AtomIsNumericIndex
bluesky950520[P]quickjs/quickjs.c
static int JS_AtomIsNumericIndex(JSContext *ctx, JSAtom atom) { JSValue num; num = JS_AtomIsNumericIndex1(ctx, atom); if (likely(JS_IsUndefined(num))) return FALSE; if (JS_IsException(num)) return -1; JS_FreeValue(ctx, num); return TRUE; }
O1
c
JS_AtomIsNumericIndex: pushq %rbx movq %rdi, %rbx callq 0x2a8b1 xorl %ecx, %ecx cmpl $0x3, %edx jne 0x280d0 movl %ecx, %eax popq %rbx retq cmpl $0x6, %edx jne 0x280dc movl $0xffffffff, %ecx # imm = 0xFFFFFFFF jmp 0x280cc movq 0x18(%rbx), %rdi movq %rax, %rsi callq 0x21922 movl $0x1, %ecx jmp 0x280cc
JS_AtomIsNumericIndex: push rbx mov rbx, rdi call JS_AtomIsNumericIndex1 xor ecx, ecx cmp edx, 3 jnz short loc_280D0 loc_280CC: mov eax, ecx pop rbx retn loc_280D0: cmp edx, 6 jnz short loc_280DC mov ecx, 0FFFFFFFFh jmp short loc_280CC loc_280DC: mov rdi, [rbx+18h] mov ...
long long JS_AtomIsNumericIndex(long long a1) { _DWORD *IsNumericIndex1; // rax long long v2; // rdx unsigned int v3; // ecx IsNumericIndex1 = (_DWORD *)JS_AtomIsNumericIndex1(); v3 = 0; if ( (_DWORD)v2 != 3 ) { if ( (_DWORD)v2 == 6 ) { return (unsigned int)-1; } else { J...
JS_AtomIsNumericIndex: PUSH RBX MOV RBX,RDI CALL 0x0012a8b1 XOR ECX,ECX CMP EDX,0x3 JNZ 0x001280d0 LAB_001280cc: MOV EAX,ECX POP RBX RET LAB_001280d0: CMP EDX,0x6 JNZ 0x001280dc MOV ECX,0xffffffff JMP 0x001280cc LAB_001280dc: MOV RDI,qword ptr [RBX + 0x18] MOV RSI,RAX CALL 0x00121922 MOV ECX,0x1 JMP 0x001280cc
int8 JS_AtomIsNumericIndex(long param_1) { int8 uVar1; int1 auVar2 [12]; auVar2 = JS_AtomIsNumericIndex1(); uVar1 = 0; if (auVar2._8_4_ != 3) { if (auVar2._8_4_ == 6) { uVar1 = 0xffffffff; } else { JS_FreeValueRT(*(int8 *)(param_1 + 0x18),auVar2._0_8_); uVar1 = 1; } } ...
61,331
JS_AtomIsNumericIndex
bluesky950520[P]quickjs/quickjs.c
static int JS_AtomIsNumericIndex(JSContext *ctx, JSAtom atom) { JSValue num; num = JS_AtomIsNumericIndex1(ctx, atom); if (likely(JS_IsUndefined(num))) return FALSE; if (JS_IsException(num)) return -1; JS_FreeValue(ctx, num); return TRUE; }
O2
c
JS_AtomIsNumericIndex: pushq %rbx movq %rdi, %rbx callq 0x23e92 xorl %ecx, %ecx cmpl $0x3, %edx jne 0x21c53 movl %ecx, %eax popq %rbx retq cmpl $0x6, %edx jne 0x21c5c pushq $-0x1 jmp 0x21c69 movq %rbx, %rdi movq %rax, %rsi callq 0x1bbce pushq $0x1 popq %rcx jmp 0x21c4f
JS_AtomIsNumericIndex: push rbx mov rbx, rdi call JS_AtomIsNumericIndex1 xor ecx, ecx cmp edx, 3 jnz short loc_21C53 loc_21C4F: mov eax, ecx pop rbx retn loc_21C53: cmp edx, 6 jnz short loc_21C5C push 0FFFFFFFFFFFFFFFFh jmp short loc_21C69 loc_21C5C: mov rdi, rbx mov ...
long long JS_AtomIsNumericIndex(long long a1) { long long IsNumericIndex1; // rax long long v2; // rdx unsigned int v3; // ecx IsNumericIndex1 = JS_AtomIsNumericIndex1(); v3 = 0; if ( (_DWORD)v2 != 3 ) { if ( (_DWORD)v2 == 6 ) { return (unsigned int)-1; } else { JS_FreeVa...
JS_AtomIsNumericIndex: PUSH RBX MOV RBX,RDI CALL 0x00123e92 XOR ECX,ECX CMP EDX,0x3 JNZ 0x00121c53 LAB_00121c4f: MOV EAX,ECX POP RBX RET LAB_00121c53: CMP EDX,0x6 JNZ 0x00121c5c PUSH -0x1 JMP 0x00121c69 LAB_00121c5c: MOV RDI,RBX MOV RSI,RAX CALL 0x0011bbce PUSH 0x1 LAB_00121c69: POP RCX JMP 0x00121c4f
int4 JS_AtomIsNumericIndex(int8 param_1) { int4 uVar1; int1 auVar2 [12]; auVar2 = JS_AtomIsNumericIndex1(); uVar1 = 0; if (auVar2._8_4_ != 3) { if (auVar2._8_4_ == 6) { uVar1 = 0xffffffff; } else { JS_FreeValue(param_1,auVar2._0_8_); uVar1 = 1; } } return uVar1; }
61,332
testing::internal::GTestLog::~GTestLog()
seiftnesse[P]memoryallocator/build_O1/_deps/googletest-src/googletest/src/gtest-port.cc
GTestLog::~GTestLog() { GetStream() << ::std::endl; if (severity_ == GTEST_FATAL) { fflush(stderr); posix::Abort(); } }
O1
cpp
testing::internal::GTestLog::~GTestLog(): pushq %rbx movq %rdi, %rbx movq 0x3ed5d(%rip), %rdi # 0x59fe8 movq (%rdi), %rax addq -0x18(%rax), %rdi movl $0xa, %esi callq 0x9470 movsbl %al, %esi movq 0x3ed42(%rip), %rdi # 0x59fe8 callq 0x9050 movq %rax, %rdi callq 0x9310 cmpl $0x3, (%rbx) je 0x1b2ba popq %rbx retq ...
_ZN7testing8internal8GTestLogD2Ev: push rbx; Alternative name is 'testing::internal::GTestLog::~GTestLog()' mov rbx, rdi mov rdi, cs:_ZSt4cerr_ptr mov rax, [rdi] add rdi, [rax-18h] mov esi, 0Ah call __ZNKSt9basic_iosIcSt11char_traitsIcEE5widenEc; std::ios::widen(char) movsx esi, al; char mov...
void testing::internal::GTestLog::~GTestLog(testing::internal::GTestLog *this) { char v1; // al std::ostream *v2; // rax testing::internal::posix *v3; // rdi v1 = std::ios::widen((char *)&std::cerr + *(_QWORD *)(std::cerr - 24LL), 10LL); v2 = (std::ostream *)std::ostream::put((std::ostream *)&std::cerr, v1)...
~GTestLog: PUSH RBX MOV RBX,RDI MOV RDI,qword ptr [0x00159fe8] MOV RAX,qword ptr [RDI] ADD RDI,qword ptr [RAX + -0x18] LAB_0011b292: MOV ESI,0xa CALL 0x00109470 MOVSX ESI,AL MOV RDI,qword ptr [0x00159fe8] CALL 0x00109050 MOV RDI,RAX CALL 0x00109310 CMP dword ptr [RBX],0x3 JZ 0x0011b2ba POP RBX RET LAB_0011b2ba: MOV RAX...
/* testing::internal::GTestLog::~GTestLog() */ void __thiscall testing::internal::GTestLog::~GTestLog(GTestLog *this) { int8 uVar1; /* try { // try from 0011b292 to 0011b2b2 has its CatchHandler @ 0011b2ce */ std::ios::widen((char)PTR_cerr_00159fe8 + (char)*(int8 *)(*(lon...
61,333
unlink_hash
eloqsql/storage/maria/ma_pagecache.c
static void unlink_hash(PAGECACHE *pagecache, PAGECACHE_HASH_LINK *hash_link) { DBUG_ENTER("unlink_hash"); DBUG_PRINT("enter", ("hash_link: %p block: %p fd: %u pos: %lu requests: %u", hash_link, hash_link->block, (uint) hash_link->file.file, (ulong) hash_link->pagen...
O0
c
unlink_hash: pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) jmp 0x9ad42 jmp 0x9ad44 jmp 0x9ad46 jmp 0x9ad48 jmp 0x9ad4a movq -0x10(%rbp), %rax movq (%rax), %rax movq -0x10(%rbp), %rcx movq 0x8(%rcx), %rcx movq %rax, (%rcx) cmpq $0x0, %rax je 0x9ad75 movq -0x10(%rbp), %rax movq ...
unlink_hash: push rbp mov rbp, rsp sub rsp, 40h mov [rbp+var_8], rdi mov [rbp+var_10], rsi jmp short $+2 loc_9AD42: jmp short $+2 loc_9AD44: jmp short $+2 loc_9AD46: jmp short $+2 loc_9AD48: jmp short $+2 loc_9AD4A: mov rax, [rbp+var_10] mov rax, [rax] mov rcx, [rbp+va...
long long unlink_hash(_QWORD *a1, long long *a2) { long long v2; // rax long long result; // rax long long v4; // [rsp+0h] [rbp-40h] long long v5; // [rsp+8h] [rbp-38h] long long v6; // [rsp+10h] [rbp-30h] long long v7; // [rsp+18h] [rbp-28h] long long v8; // [rsp+28h] [rbp-18h] v2 = *a2; *(_QWORD *...
unlink_hash: PUSH RBP MOV RBP,RSP SUB RSP,0x40 MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI JMP 0x0019ad42 LAB_0019ad42: JMP 0x0019ad44 LAB_0019ad44: JMP 0x0019ad46 LAB_0019ad46: JMP 0x0019ad48 LAB_0019ad48: JMP 0x0019ad4a LAB_0019ad4a: MOV RAX,qword ptr [RBP + -0x10] MOV RAX,qword ptr [RAX] MOV RCX,q...
void unlink_hash(long param_1,long *param_2) { long lVar1; void *__src; long lVar2; bool bVar3; long local_30; lVar1 = *param_2; *(long *)param_2[1] = lVar1; if (lVar1 != 0) { *(long *)(*param_2 + 8) = param_2[1]; } param_2[2] = 0; if (*(long *)(param_1 + 0x118) == 0) { *param_2 = *(l...
61,334
get_errcode_from_name(char const*, char const*)
eloqsql/client/mysqltest.cc
uint get_errcode_from_name(const char *error_name, const char *error_end) { uint tmp; if ((tmp= get_errcode_from_name(error_name, error_end, global_error_names))) return tmp; if ((tmp= get_errcode_from_name(error_name, error_end, handle...
O0
cpp
get_errcode_from_name(char const*, char const*): pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq -0x10(%rbp), %rdi movq -0x18(%rbp), %rsi leaq 0x28bf11(%rip), %rdx # 0x2f64a0 callq 0x6a4e0 movl %eax, -0x1c(%rbp) cmpl $0x0, %eax je 0x6a5a4 movl -0x1c(%rbp), %eax movl %ea...
_Z21get_errcode_from_namePKcS0_: push rbp mov rbp, rsp sub rsp, 20h mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov rdi, [rbp+var_10] mov rsi, [rbp+var_18] lea rdx, _ZL18global_error_names; global_error_names call _Z21get_errcode_from_namePKcS0_P8st_error; get_errcode_from_name(char co...
long long get_errcode_from_name(const char *a1, const char *a2) { unsigned int errcode_from_name; // [rsp+4h] [rbp-1Ch] unsigned int v4; // [rsp+4h] [rbp-1Ch] errcode_from_name = get_errcode_from_name((long long)a1, (int)a2, &global_error_names); if ( errcode_from_name ) { return errcode_from_name; } ...
get_errcode_from_name: PUSH RBP MOV RBP,RSP SUB RSP,0x20 MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV RDI,qword ptr [RBP + -0x10] MOV RSI,qword ptr [RBP + -0x18] LEA RDX,[0x3f64a0] CALL 0x0016a4e0 MOV dword ptr [RBP + -0x1c],EAX CMP EAX,0x0 JZ 0x0016a5a4 MOV EAX,dword ptr [RBP + -0x1c] MOV dword ...
/* get_errcode_from_name(char const*, char const*) */ int get_errcode_from_name(char *param_1,char *param_2) { int iVar1; int local_c; iVar1 = get_errcode_from_name(param_1,param_2,(st_error *)global_error_names); if ((iVar1 == 0) && (iVar1 = get_errcode_from_name(param_1,param_2,(st_error *)handler_...
61,335
void OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::merge<float, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator>(int, int, float, float, int, int, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator)
NVIDIA-RTX[P]OSD-Lite/opensubdiv/far/stencilBuilder.cpp
void merge(int src, int dst, W weight, // Delaying weight*factor multiplication hides memory latency of // accessing weight[i], yielding more stable performance. W weightFactor, // Similarly, passing offset & tableSize as params yields higher /...
O0
cpp
void OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::merge<float, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator>(int, int, float, float, int, int, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator): pushq %rbp movq %rsp, %rbp subq $0xd0, %rsp leaq 0x28(%rbp), %ra...
_ZN10OpenSubdiv6v3_6_03Far8internal11WeightTableIdE5mergeINS2_19Point1stDerivWeightIdEENS4_24Point1stDerivAccumulatorEEEviiT_S9_iiT0_: push rbp mov rbp, rsp sub rsp, 0D0h lea rax, [rbp+arg_18] mov [rbp+var_A8], rax lea rax, [rbp+arg_0] mov [rbp+var_A0], rax mov [rbp+var_8], r9 mov [rb...
long long OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::merge<OpenSubdiv::v3_6_0::Far::internal::Point1stDerivWeight<double>,OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::Point1stDerivAccumulator>( long long a1, int a2, int a3, int a4, int a5, long lo...
61,336
void OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::merge<float, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator>(int, int, float, float, int, int, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator)
NVIDIA-RTX[P]OSD-Lite/opensubdiv/far/stencilBuilder.cpp
void merge(int src, int dst, W weight, // Delaying weight*factor multiplication hides memory latency of // accessing weight[i], yielding more stable performance. W weightFactor, // Similarly, passing offset & tableSize as params yields higher /...
O1
cpp
void OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::merge<float, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator>(int, int, float, float, int, int, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator): pushq %r14 pushq %rbx subq $0x68, %rsp leaq 0xb0(%rsp), %rax lea...
_ZN10OpenSubdiv6v3_6_03Far8internal11WeightTableIdE5mergeINS2_19Point2ndDerivWeightIdEENS4_24Point2ndDerivAccumulatorEEEviiT_S9_iiT0_: push r14 push rbx sub rsp, 68h lea rax, [rsp+78h+arg_30] lea r10, [rsp+78h+arg_0] cmp byte ptr [rdi+0FCh], 1 jnz loc_8300F mov rbx, [rdi] cmp rbx, [rdi...
double * OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::merge<OpenSubdiv::v3_6_0::Far::internal::Point2ndDerivWeight<double>,OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::Point2ndDerivAccumulator>( long long a1, int a2, int a3, int a4, long long a5, _QW...
merge<OpenSubdiv::v3_6_0::Far::internal::Point2ndDerivWeight<double>,OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::Point2ndDerivAccumulator>: PUSH R14 PUSH RBX SUB RSP,0x68 LEA RAX,[RSP + 0xb0] LEA R10,[RSP + 0x80] CMP byte ptr [RDI + 0xfc],0x1 JNZ 0x0018300f MOV RBX,qword ptr [RDI] CMP RBX,qword ptr [RDI + 0...
/* void OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::merge<OpenSubdiv::v3_6_0::Far::internal::Point2ndDerivWeight<double>, OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::Point2ndDerivAccumulator>(int, int, OpenSubdiv::v3_6_0::Far::internal::Point2ndDerivWeight<double>, OpenSubdiv::v3_6...
61,337
void OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::merge<float, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator>(int, int, float, float, int, int, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator)
NVIDIA-RTX[P]OSD-Lite/opensubdiv/far/stencilBuilder.cpp
void merge(int src, int dst, W weight, // Delaying weight*factor multiplication hides memory latency of // accessing weight[i], yielding more stable performance. W weightFactor, // Similarly, passing offset & tableSize as params yields higher /...
O2
cpp
void OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::merge<float, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator>(int, int, float, float, int, int, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator): pushq %rbx subq $0xa0, %rsp leaq 0xe0(%rsp), %r10 leaq 0xb0(%rsp...
_ZN10OpenSubdiv6v3_6_03Far8internal11WeightTableIdE5mergeINS2_19Point2ndDerivWeightIdEENS4_24Point2ndDerivAccumulatorEEEviiT_S9_iiT0_: push rbx sub rsp, 0A0h lea r10, [rsp+0A8h+arg_30] lea r11, [rsp+0A8h+arg_0] mov [rsp+0A8h+var_70], r9 cmp byte ptr [rdi+0FCh], 1 jnz loc_929D4 mov rax, [r...
long long OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::merge<OpenSubdiv::v3_6_0::Far::internal::Point2ndDerivWeight<double>,OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::Point2ndDerivAccumulator>( long long a1, int a2, int a3, long long a4, int a5, l...
merge<OpenSubdiv::v3_6_0::Far::internal::Point2ndDerivWeight<double>,OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::Point2ndDerivAccumulator>: PUSH RBX SUB RSP,0xa0 LEA R10,[RSP + 0xe0] LEA R11,[RSP + 0xb0] MOV qword ptr [RSP + 0x38],R9 CMP byte ptr [RDI + 0xfc],0x1 JNZ 0x001929d4 MOV RAX,qword ptr [RDI] CMP R...
/* void OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::merge<OpenSubdiv::v3_6_0::Far::internal::Point2ndDerivWeight<double>, OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::Point2ndDerivAccumulator>(int, int, OpenSubdiv::v3_6_0::Far::internal::Point2ndDerivWeight<double>, OpenSubdiv::v3_6...
61,338
void OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::merge<float, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator>(int, int, float, float, int, int, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator)
NVIDIA-RTX[P]OSD-Lite/opensubdiv/far/stencilBuilder.cpp
void merge(int src, int dst, W weight, // Delaying weight*factor multiplication hides memory latency of // accessing weight[i], yielding more stable performance. W weightFactor, // Similarly, passing offset & tableSize as params yields higher /...
O3
cpp
void OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::merge<float, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator>(int, int, float, float, int, int, OpenSubdiv::v3_6_0::Far::internal::WeightTable<float>::ScalarAccumulator): pushq %rbx subq $0x60, %rsp leaq 0xa0(%rsp), %r10 leaq 0x70(%rsp...
_ZN10OpenSubdiv6v3_6_03Far8internal11WeightTableIdE5mergeINS2_19Point2ndDerivWeightIdEENS4_24Point2ndDerivAccumulatorEEEviiT_S9_iiT0_: push rbx sub rsp, 60h lea r10, [rsp+68h+arg_30] lea r11, [rsp+68h+arg_0] cmp byte ptr [rdi+0FCh], 1 jnz short loc_857E5 mov rbx, [rdi] cmp rbx, [rdi+8] jz...
long long OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::merge<OpenSubdiv::v3_6_0::Far::internal::Point2ndDerivWeight<double>,OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::Point2ndDerivAccumulator>( long long a1, int a2, int a3, int a4, int a5, _QWORD ...
merge<OpenSubdiv::v3_6_0::Far::internal::Point2ndDerivWeight<double>,OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::Point2ndDerivAccumulator>: PUSH RBX SUB RSP,0x60 LEA R10,[RSP + 0xa0] LEA R11,[RSP + 0x70] CMP byte ptr [RDI + 0xfc],0x1 JNZ 0x001857e5 MOV RBX,qword ptr [RDI] CMP RBX,qword ptr [RDI + 0x8] JZ 0x...
/* void OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::merge<OpenSubdiv::v3_6_0::Far::internal::Point2ndDerivWeight<double>, OpenSubdiv::v3_6_0::Far::internal::WeightTable<double>::Point2ndDerivAccumulator>(int, int, OpenSubdiv::v3_6_0::Far::internal::Point2ndDerivWeight<double>, OpenSubdiv::v3_6...
61,339
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
explicit iteration_proxy_value(IteratorType it, std::size_t array_index_ = 0) noexcept(std::is_nothrow_move_constructible<IteratorType>::value && std::is_nothrow_default_constructible<string_type>::value) : anchor(std::move(it)) , array_index(array_index_) {}
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...
_ZN8nlohmann16json_abi_v3_11_36detail21iteration_proxy_valueINS1_9iter_implIKNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES6_IhSaIhEEvEEEEEC2ESI_m: push rbx mov rbx, rdi movups xmm0, xmmword ptr [rsi] movups xmm1, xmmword ptr [rsi+10...
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...
iteration_proxy_value: PUSH RBX MOV RBX,RDI MOVUPS XMM0,xmmword ptr [RSI] MOVUPS XMM1,xmmword ptr [RSI + 0x10] MOVUPS xmmword ptr [RDI + 0x10],XMM1 MOVUPS xmmword ptr [RDI],XMM0 MOV qword ptr [RDI + 0x20],RDX MOV qword ptr [RDI + 0x28],0x0 ADD RDI,0x30 LEA RAX,[RBX + 0x40] MOV qword ptr [RBX + 0x30],RAX LAB_0014869c: L...
/* 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,340
CLI::detail::split_names(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>)
MikePodsytnik[P]TCRtrie/build_O3/_deps/cli11-src/include/CLI/impl/Split_inl.hpp
CLI11_INLINE std::vector<std::string> split_names(std::string current) { std::vector<std::string> output; std::size_t val = 0; while((val = current.find(',')) != std::string::npos) { output.push_back(trim_copy(current.substr(0, val))); current = current.substr(val + 1); } output.push...
O3
cpp
CLI::detail::split_names(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movq %rsi, %r14 movq %rdi, %rbx xorps %xmm0, %xmm0 movups %xmm0, (%rdi) movq $0x0, 0x10(%rdi) movq %rsi, %rdi movl $0x2c, %esi xorl...
_ZN3CLI6detail11split_namesENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 48h mov r14, rsi mov rbx, rdi xorps xmm0, xmm0 movups xmmword ptr [rdi], xmm0 mov qword ptr [rdi+10h], 0 mov rdi, rsi mov esi, 2Ch...
long long CLI::detail::split_names(long long a1, long long a2) { long long v2; // rax int v3; // edx int v4; // ecx int v5; // r8d int v6; // r9d long long i; // r13 int v8; // edx int v9; // ecx int v10; // r8d int v11; // r9d void *v13; // [rsp+0h] [rbp-78h] void *v14; // [rsp+8h] [rbp-70h] B...
split_names: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x48 MOV R14,RSI MOV RBX,RDI XORPS XMM0,XMM0 MOVUPS xmmword ptr [RDI],XMM0 MOV qword ptr [RDI + 0x10],0x0 MOV RDI,RSI MOV ESI,0x2c XOR EDX,EDX CALL 0x00107540 CMP RAX,-0x1 JZ 0x0011ab49 MOV R13,RAX LEA RBP,[RSP + 0x18] LEA R15,[RSP + 0x28] LEA R...
/* CLI::detail::split_names(std::__cxx11::string) */ detail * __thiscall CLI::detail::split_names(detail *this,string *param_2) { long lVar1; long *local_70 [2]; long local_60 [2]; long *local_50 [2]; long local_40 [2]; *(int8 *)this = 0; *(int8 *)(this + 8) = 0; *(int8 *)(this + 0x10) = 0; lVar...
61,341
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
size_type size() const noexcept { switch (m_data.m_type) { case value_t::null: { // null values are empty return 0; } case value_t::array: { // delegate call to array_t::size() ...
O0
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...
_ZNK8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE4sizeEv: sub rsp, 28h mov [rsp+28h+var_10], rdi mov rax, [rsp+28h+var_10] mov [rsp+28h+var_20], rax movzx eax, byte ptr [rax] mov [rsp+...
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>::size( long long a1) { long long v2; // [rsp+20h] [rbp-8h] switch ( *(_...
size: SUB RSP,0x28 MOV qword ptr [RSP + 0x18],RDI MOV RAX,qword ptr [RSP + 0x18] MOV qword ptr [RSP + 0x8],RAX MOVZX EAX,byte ptr [RAX] MOV qword ptr [RSP + 0x10],RAX SUB RAX,0x9 JA 0x001af8ad MOV RAX,qword ptr [RSP + 0x10] LEA RCX,[0x307f38] MOVSXD RAX,dword ptr [RCX + RAX*0x4] ADD RAX,RCX switchD: JMP RAX caseD_0: MO...
/* 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>::size() const */ int8 __thisca...
61,342
array_append_string_unique
eloqsql/mysys/mf_arr_appstr.c
my_bool array_append_string_unique(const char *str, const char **array, size_t size) { const char **p; /* end points at the terminating NULL element */ const char **end= array + size - 1; DBUG_ASSERT(*end == NULL); for (p= array; *p; ++p) { if (strcmp(*p, str) == 0) ...
O3
c
array_append_string_unique: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax movq %rsi, %rbx movq %rdi, %r14 leaq (%rsi,%rdx,8), %r15 addq $-0x8, %r15 movq (%rsi), %rdi testq %rdi, %rdi je 0xa8c62 movq %r14, %rsi callq 0x39890 testl %eax, %eax je 0xa8c62 movq 0x8(%rbx), %rdi addq $0x8, %rbx jmp 0x...
array_append_string_unique: push rbp mov rbp, rsp push r15 push r14 push rbx push rax mov rbx, rsi mov r14, rdi lea r15, [rsi+rdx*8] add r15, 0FFFFFFFFFFFFFFF8h mov rdi, [rsi] loc_A8C47: test rdi, rdi jz short loc_A8C62 mov rsi, r14 call _strcmp test eax, eax jz ...
char array_append_string_unique(long long a1, _QWORD *a2, long long a3) { _QWORD *v3; // rbx unsigned long long v5; // r15 long long v6; // rdi char result; // al long long v8; // rax v3 = a2; v5 = (unsigned long long)&a2[a3 - 1]; v6 = *a2; while ( v6 && (unsigned int)strcmp(v6, a1) ) { v6 = v...
array_append_string_unique: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX PUSH RAX MOV RBX,RSI MOV R14,RDI LEA R15,[RSI + RDX*0x8] ADD R15,-0x8 MOV RDI,qword ptr [RSI] LAB_001a8c47: TEST RDI,RDI JZ 0x001a8c62 MOV RSI,R14 CALL 0x00139890 TEST EAX,EAX JZ 0x001a8c62 MOV RDI,qword ptr [RBX + 0x8] ADD RBX,0x8 JMP 0x001a8c...
int8 array_append_string_unique(char *param_1,long *param_2,long param_3) { long *plVar1; int iVar2; int8 uVar3; long lVar4; char *__s1; long *plVar5; plVar5 = param_2 + param_3 + -1; __s1 = (char *)*param_2; while (__s1 != (char *)0x0) { iVar2 = strcmp(__s1,param_1); if (iVar2 == 0) brea...
61,343
game_voxels::populate()
untodesu[P]voxelius/game/shared/game_voxels.cc
void game_voxels::populate(void) { // Stone; the backbone of the generated world game_voxels::stone = voxel_registry::construct("stone", voxel_type::CUBE, false, false) .add_texture_default("textures/voxel/stone_01.png") .add_texture_default("textures/voxel/stone_02.png") .add_texture_de...
O0
cpp
game_voxels::populate(): pushq %rbp movq %rsp, %rbp subq $0x30, %rsp leaq 0x13bd8c(%rip), %rdi # 0x1e57cb xorl %ecx, %ecx movl %ecx, %esi movl %ecx, %edx callq 0xe50b0 movq %rax, %rdi leaq 0x141100(%rip), %rsi # 0x1eab54 callq 0xe4900 movq %rax, %rdi leaq 0x14110d(%rip), %rsi # 0x1eab70 callq 0xe4900 movq %rax...
_ZN11game_voxels8populateEv: push rbp mov rbp, rsp sub rsp, 30h lea rdi, aEnttNullElemTo+1Ch; "stone" xor ecx, ecx mov esi, ecx mov edx, ecx call _ZN14voxel_registry9constructEPKc10voxel_typebb; voxel_registry::construct(char const*,voxel_type,bool,bool) mov rdi, rax; this lea rsi,...
long long game_voxels::populate(game_voxels *this) { VoxelInfoBuilder *v1; // rax VoxelInfoBuilder *v2; // rax VoxelInfoBuilder *v3; // rax VoxelInfoBuilder *v4; // rax long long v5; // rax VoxelInfoBuilder *v6; // rax VoxelInfoBuilder *v7; // rax VoxelInfoBuilder *v8; // rax long long v9; // rax V...
populate: PUSH RBP MOV RBP,RSP SUB RSP,0x30 LEA RDI,[0x2e57cb] XOR ECX,ECX MOV ESI,ECX MOV EDX,ECX CALL 0x001e50b0 MOV RDI,RAX LEA RSI,[0x2eab54] CALL 0x001e4900 MOV RDI,RAX LEA RSI,[0x2eab70] CALL 0x001e4900 MOV RDI,RAX LEA RSI,[0x2eab8c] CALL 0x001e4900 MOV RDI,RAX LEA RSI,[0x2eaba8] CALL 0x001e4900 MOV RDI,RAX MOV E...
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */ /* game_voxels::populate() */ void game_voxels::populate(void) { VoxelInfoBuilder *pVVar1; vec<3,float,(glm::qualifier)0> local_20 [12]; vec<3,float,(glm::qualifier)0> local_14 [12]; pVVar1 = (VoxelInfoBuilder *)voxel_reg...
61,344
maria_end_bulk_insert
eloqsql/storage/maria/ma_write.c
int maria_end_bulk_insert(MARIA_HA *info, my_bool abort) { int first_error= 0; DBUG_ENTER("maria_end_bulk_insert"); if (info->bulk_insert) { uint i; for (i=0 ; i < info->s->base.keys ; i++) { if (is_tree_inited(&info->bulk_insert[i])) { int error; if (info->s->deleting) ...
O0
c
maria_end_bulk_insert: pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movb %sil, %al movq %rdi, -0x8(%rbp) movb %al, -0x9(%rbp) movl $0x0, -0x10(%rbp) movq -0x8(%rbp), %rax cmpq $0x0, 0x310(%rax) je 0x85971 movl $0x0, -0x14(%rbp) movl -0x14(%rbp), %eax movq -0x8(%rbp), %rcx movq (%rcx), %rcx cmpl 0x3e8(%rcx), %eax jae 0x8...
maria_end_bulk_insert: push rbp mov rbp, rsp sub rsp, 20h mov al, sil mov [rbp+var_8], rdi mov [rbp+var_9], al mov [rbp+var_10], 0 mov rax, [rbp+var_8] cmp qword ptr [rax+310h], 0 jz loc_85971 mov [rbp+var_14], 0 loc_85892: mov eax, [rbp+var_14] mov rcx, [rbp+var_8] m...
long long maria_end_bulk_insert(_QWORD *a1, char a2, double a3) { int v4; // [rsp+4h] [rbp-1Ch] int v5; // [rsp+8h] [rbp-18h] unsigned int i; // [rsp+Ch] [rbp-14h] unsigned int v7; // [rsp+10h] [rbp-10h] v7 = 0; if ( a1[98] ) { for ( i = 0; i < *(_DWORD *)(*a1 + 1000LL); ++i ) { if ( *(_QW...
maria_end_bulk_insert: PUSH RBP MOV RBP,RSP SUB RSP,0x20 MOV AL,SIL MOV qword ptr [RBP + -0x8],RDI MOV byte ptr [RBP + -0x9],AL MOV dword ptr [RBP + -0x10],0x0 MOV RAX,qword ptr [RBP + -0x8] CMP qword ptr [RAX + 0x310],0x0 JZ 0x00185971 MOV dword ptr [RBP + -0x14],0x0 LAB_00185892: MOV EAX,dword ptr [RBP + -0x14] MOV R...
int maria_end_bulk_insert(long *param_1,char param_2) { int local_24; uint local_1c; int local_18; char local_11; local_18 = 0; if (param_1[0x62] != 0) { local_11 = param_2; for (local_1c = 0; local_1c < *(uint *)(*param_1 + 1000); local_1c = local_1c + 1) { if (*(long *)(param_1[0x62] + ...
61,345
testing::internal::PrintColorEncoded(char const*)
giladroyz[P]FindPeaks/build_O0/_deps/googletest-src/googletest/src/gtest.cc
static void PrintColorEncoded(const char* str) { GTestColor color = GTestColor::kDefault; // The current color. // Conceptually, we split the string into segments divided by escape // sequences. Then we print one segment at a time. At the end of // each iteration, the str pointer advances to the beginning o...
O0
cpp
testing::internal::PrintColorEncoded(char const*): pushq %rbp movq %rsp, %rbp subq $0x70, %rsp movq %rdi, -0x8(%rbp) movl $0x0, -0xc(%rbp) movq -0x8(%rbp), %rdi movl $0x40, %esi callq 0xa220 movq %rax, -0x18(%rbp) cmpq $0x0, -0x18(%rbp) jne 0x44607 movl -0xc(%rbp), %edi movq -0x8(%rbp), %rdx leaq 0x37b1c(%rip), %rsi ...
_ZN7testing8internalL17PrintColorEncodedEPKc: push rbp mov rbp, rsp sub rsp, 70h mov [rbp+var_8], rdi mov [rbp+var_C], 0 loc_445D3: mov rdi, [rbp+var_8] mov esi, 40h ; '@' call _strchr mov [rbp+var_18], rax cmp [rbp+var_18], 0 jnz short loc_44607 mov edi, [rbp+var_C] mov ...
__va_list_tag * testing::internal::PrintColorEncoded(testing::internal *this, const char *a2) { long long v2; // rdx const char *v4; // rax unsigned int v5; // [rsp+4h] [rbp-6Ch] const char *v6; // [rsp+8h] [rbp-68h] long long v7; // [rsp+10h] [rbp-60h] char v8; // [rsp+23h] [rbp-4Dh] char v9; // [rsp+37h...
PrintColorEncoded: PUSH RBP MOV RBP,RSP SUB RSP,0x70 MOV qword ptr [RBP + -0x8],RDI MOV dword ptr [RBP + -0xc],0x0 LAB_001445d3: MOV RDI,qword ptr [RBP + -0x8] MOV ESI,0x40 CALL 0x0010a220 MOV qword ptr [RBP + -0x18],RAX CMP qword ptr [RBP + -0x18],0x0 JNZ 0x00144607 MOV EDI,dword ptr [RBP + -0xc] MOV RDX,qword ptr [RB...
/* testing::internal::PrintColorEncoded(char const*) */ void testing::internal::PrintColorEncoded(char *param_1) { char cVar1; int4 uVar2; char *pcVar3; char *pcVar4; int8 uVar5; allocator local_41; string local_40 [32]; char *local_20; int4 local_14; char *local_10; local_14 = 0; local_10...
61,346
my_strnxfrm_8bit_nopad_bin
eloqsql/strings/ctype-bin.c
static size_t my_strnxfrm_8bit_nopad_bin(CHARSET_INFO *cs, uchar * dst, size_t dstlen, uint nweights, const uchar *src, size_t srclen, uint flags) { set_if_smaller(srclen, dstlen); set_if_smaller(srclen, nweights); if (dst != src) memcpy(dst, src, srclen);...
O0
c
my_strnxfrm_8bit_nopad_bin: pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movl 0x10(%rbp), %eax movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movl %ecx, -0x1c(%rbp) movq %r8, -0x28(%rbp) movq %r9, -0x30(%rbp) movq -0x30(%rbp), %rax cmpq -0x18(%rbp), %rax jbe 0x3d284 movq -0x18(%rbp), %rax movq %rax,...
my_strnxfrm_8bit_nopad_bin: push rbp mov rbp, rsp sub rsp, 40h mov eax, [rbp+arg_0] mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov [rbp+var_18], rdx mov [rbp+var_1C], ecx mov [rbp+var_28], r8 mov [rbp+var_30], r9 mov rax, [rbp+var_30] cmp rax, [rbp+var_18] jbe short lo...
long long my_strnxfrm_8bit_nopad_bin( int a1, long long a2, unsigned long long a3, unsigned int a4, long long a5, unsigned long long a6, int a7) { unsigned long long v8; // [rsp+10h] [rbp-30h] int v10; // [rsp+28h] [rbp-18h] v10 = a3; v8 = a6; if ( a6 ...
my_strnxfrm_8bit_nopad_bin: PUSH RBP MOV RBP,RSP SUB RSP,0x40 MOV EAX,dword ptr [RBP + 0x10] MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV qword ptr [RBP + -0x18],RDX MOV dword ptr [RBP + -0x1c],ECX MOV qword ptr [RBP + -0x28],R8 MOV qword ptr [RBP + -0x30],R9 MOV RAX,qword ptr [RBP + -0x30] CMP RA...
void my_strnxfrm_8bit_nopad_bin (int8 param_1,void *param_2,ulong param_3,uint param_4,void *param_5, ulong param_6,int4 param_7) { int8 local_38; local_38 = param_6; if (param_3 < param_6) { local_38 = param_3; } if (param_4 < local_38) { local_38 = (ulong)param_4; ...
61,347
inline_mysql_file_chsize
eloqsql/include/mysql/psi/mysql_file.h
static inline int inline_mysql_file_chsize( #ifdef HAVE_PSI_FILE_INTERFACE const char *src_file, uint src_line, #endif File file, my_off_t newlength, int filler, myf flags) { int result; #ifdef HAVE_PSI_FILE_INTERFACE struct PSI_file_locker *locker; PSI_file_locker_state state; locker= PSI_FILE_CALL(get_thr...
O3
c
inline_mysql_file_chsize: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx subq $0x58, %rsp movq %rsi, %rbx movl %edi, %r14d leaq 0x2f50df(%rip), %rax # 0x386010 movq (%rax), %rax leaq -0x68(%rbp), %rdi movl %r14d, %esi movl $0xd, %edx callq *0x158(%rax) testq %rax, %rax jne 0x90f65 movl %r14d, %edi movq ...
inline_mysql_file_chsize_1: push rbp mov rbp, rsp push r15 push r14 push rbx sub rsp, 58h mov rbx, rsi mov r14d, edi lea rax, PSI_server mov rax, [rax] lea rdi, [rbp+var_68] mov esi, r14d mov edx, 0Dh call qword ptr [rax+158h] test rax, rax jnz short loc_90F65 m...
long long inline_mysql_file_chsize_1(unsigned int a1, long long a2) { long long v2; // rax _BYTE v4[76]; // [rsp+8h] [rbp-68h] BYREF _DWORD v5[7]; // [rsp+54h] [rbp-1Ch] BYREF v2 = ((long long ( *)(_BYTE *, _QWORD, long long))PSI_server[43])(v4, a1, 13LL); if ( !v2 ) return my_chsize(a1, a2, 0LL, 0LL); ...
inline_mysql_file_chsize: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x58 MOV RBX,RSI MOV R14D,EDI LEA RAX,[0x486010] MOV RAX,qword ptr [RAX] LEA RDI,[RBP + -0x68] MOV ESI,R14D MOV EDX,0xd CALL qword ptr [RAX + 0x158] TEST RAX,RAX JNZ 0x00190f65 MOV EDI,R14D MOV RSI,RBX XOR EDX,EDX XOR ECX,ECX CALL 0x0019d...
ulong inline_mysql_file_chsize(int4 param_1,int8 param_2) { long lVar1; ulong uVar2; int1 local_70 [76]; uint local_24; lVar1 = (**(code **)(PSI_server + 0x158))(local_70,param_1,0xd); if (lVar1 == 0) { uVar2 = my_chsize(param_1,param_2,0,0); } else { inline_mysql_file_chsize_cold_1(lVar1,p...
61,348
blst_p2_serialize
corpus-core[P]colibri-stateless/build_O3/_deps/blst-src/src/e2.c
void blst_p2_serialize(unsigned char out[192], const POINTonE2 *in) { POINTonE2_Serialize(out, in); }
O3
c
blst_p2_serialize: pushq %rbp movq %rsp, %rbp pushq %r14 pushq %rbx movq %rsi, %r14 movq %rdi, %rbx leaq 0xc0(%rsi), %rdi movl $0x60, %esi callq 0x2ff40 testq %rax, %rax je 0x1bdb1 leaq 0x1(%rbx), %rdi movl $0xbf, %edx xorl %esi, %esi callq 0x5110 movb $0x40, (%rbx) popq %rbx popq %r14 popq %rbp retq movq %rbx, %rdi mo...
blst_p2_serialize: push rbp mov rbp, rsp push r14 push rbx mov r14, rsi mov rbx, rdi lea rdi, [rsi+0C0h] mov esi, 60h ; '`' call vec_is_zero_16x test rax, rax jz short loc_1BDB1 lea rdi, [rbx+1] mov edx, 0BFh xor esi, esi call _memset mov byte ptr [rbx], 40h ; ...
long long blst_p2_serialize(_BYTE *a1, long long a2) { long long result; // rax if ( !vec_is_zero_16x(a2 + 192, 96LL) ) return POINTonE2_Serialize_BE(a1, a2); result = memset(a1 + 1, 0LL, 191LL); *a1 = 64; return result; }
blst_p2_serialize: PUSH RBP MOV RBP,RSP PUSH R14 PUSH RBX MOV R14,RSI MOV RBX,RDI LEA RDI,[RSI + 0xc0] MOV ESI,0x60 CALL 0x0012ff40 TEST RAX,RAX JZ 0x0011bdb1 LEA RDI,[RBX + 0x1] MOV EDX,0xbf XOR ESI,ESI CALL 0x00105110 MOV byte ptr [RBX],0x40 POP RBX POP R14 POP RBP RET LAB_0011bdb1: MOV RDI,RBX MOV RSI,R14 POP RBX PO...
void blst_p2_serialize(int1 *param_1,long param_2) { long lVar1; lVar1 = vec_is_zero_16x(param_2 + 0xc0); if (lVar1 != 0) { memset(param_1 + 1,0,0xbf); *param_1 = 0x40; return; } POINTonE2_Serialize_BE(param_1,param_2); return; }
61,349
set_default_charset
eloqsql/libmariadb/libmariadb/mariadb_charset.c
my_bool set_default_charset(uint cs, myf flags __attribute__((unused))) { MARIADB_CHARSET_INFO *new_charset; new_charset = mysql_get_charset_by_nr(cs); if (!new_charset) { return(TRUE); /* error */ } ma_default_charset_info = new_charset; return(FALSE); }
O3
c
set_default_charset: pushq %rbp movq %rsp, %rbp leaq 0x106c9(%rip), %rax # 0x45c40 addq $-0x48, %rax movl 0x48(%rax), %ecx addq $0x48, %rax testl %ecx, %ecx je 0x3558a cmpl %edi, %ecx jne 0x3557b testl %ecx, %ecx je 0x3559c leaq 0x1b673(%rip), %rcx # 0x50c08 movq %rax, (%rcx) xorl %eax, %eax jmp 0x3559e movb $0...
set_default_charset: push rbp mov rbp, rsp lea rax, mariadb_compiled_charsets add rax, 0FFFFFFFFFFFFFFB8h loc_3557B: mov ecx, [rax+48h] add rax, 48h ; 'H' test ecx, ecx jz short loc_3558A cmp ecx, edi jnz short loc_3557B loc_3558A: test ecx, ecx jz short loc_3559C lea ...
char set_default_charset(int a1) { char *v1; // rax int v2; // ecx v1 = (char *)&mariadb_compiled_charsets - 72; do { v2 = *((_DWORD *)v1 + 18); v1 += 72; } while ( v2 && v2 != a1 ); if ( !v2 ) return 1; ma_default_charset_info = v1; return 0; }
set_default_charset: PUSH RBP MOV RBP,RSP LEA RAX,[0x145c40] ADD RAX,-0x48 LAB_0013557b: MOV ECX,dword ptr [RAX + 0x48] ADD RAX,0x48 TEST ECX,ECX JZ 0x0013558a CMP ECX,EDI JNZ 0x0013557b LAB_0013558a: TEST ECX,ECX JZ 0x0013559c LEA RCX,[0x150c08] MOV qword ptr [RCX],RAX XOR EAX,EAX JMP 0x0013559e LAB_0013559c: MOV AL,0...
int8 set_default_charset(int param_1) { int iVar1; int *puVar2; int8 uVar3; puVar2 = &UNK_00145bf8; do { iVar1 = *(int *)(puVar2 + 0x48); puVar2 = puVar2 + 0x48; if (iVar1 == 0) break; } while (iVar1 != param_1); if (iVar1 == 0) { uVar3 = CONCAT71((int7)((ulong)puVar2 >> 8),1); } ...
61,350
httplib::detail::make_multipart_ranges_data(httplib::Request const&, httplib::Response&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::__cxx11::basic_string<char, std::char_traits<char>, ...
nickolajgrishuk[P]metricz-cpp/build_O2/_deps/httplib-src/httplib.h
inline bool make_multipart_ranges_data(const Request &req, Response &res, const std::string &boundary, const std::string &content_type, std::string &data) { return process_multipart_ranges_data( ...
O2
c
httplib::detail::make_multipart_ranges_data(httplib::Request const&, httplib::Response&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::__cxx11::basic_string<char, std::char_traits<char>, ...
_ZN7httplib6detail26make_multipart_ranges_dataERKNS_7RequestERNS_8ResponseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESD_RSB_: sub rsp, 28h mov qword ptr [rsp+28h+var_10], rsi mov qword ptr [rsp+28h+var_10+8], r8 movups xmm0, [rsp+28h+var_10] movups [rsp+28h+var_28], xmm0 mov r9, r8 call ...
long long httplib::detail::make_multipart_ranges_data(int a1, int a2, int a3, int a4, int a5) { return httplib::detail::process_multipart_ranges_data<httplib::detail::make_multipart_ranges_data(httplib::Request const&,httplib::Response &,std::string const&,std::string const&,std::string&)::{lambda(std::string const&...
make_multipart_ranges_data: SUB RSP,0x28 MOV qword ptr [RSP + 0x18],RSI MOV qword ptr [RSP + 0x20],R8 MOVUPS XMM0,xmmword ptr [RSP + 0x18] MOVUPS xmmword ptr [RSP],XMM0 MOV R9,R8 CALL 0x0011a18e ADD RSP,0x28 RET
/* httplib::detail::make_multipart_ranges_data(httplib::Request const&, httplib::Response&, std::__cxx11::string const&, std::__cxx11::string const&, std::__cxx11::string&) */ void httplib::detail::make_multipart_ranges_data (Request *param_1,Response *param_2,string *param_3,string *param_4,string ...
61,351
my_strxfrm_pad_desc_and_reverse_nopad
eloqsql/strings/ctype-simple.c
size_t my_strxfrm_pad_desc_and_reverse_nopad(CHARSET_INFO *cs, uchar *str, uchar *frmend, uchar *strend, uint nweights, uint flags, uint level) { if (nweights && frmend < strend && (flags & MY_STRXFRM_PAD_WITH_SPACE)) { uint fill_length...
O3
c
my_strxfrm_pad_desc_and_reverse_nopad: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movl %r9d, %r12d movq %rcx, %r15 movq %rdx, %r14 movq %rsi, %rbx movl 0x10(%rbp), %ecx testl %r8d, %r8d sete %al cmpq %r15, %rdx setae %sil testb $0x40, %r12b sete %dl orb %al, %dl orb %si...
my_strxfrm_pad_desc_and_reverse_nopad: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx push rax mov r12d, r9d mov r15, rcx mov r14, rdx mov rbx, rsi mov ecx, [rbp+arg_0] test r8d, r8d setz al cmp rdx, r15 setnb sil test r12b, 40h setz dl ...
long long my_strxfrm_pad_desc_and_reverse_nopad( long long a1, long long a2, unsigned long long a3, unsigned long long a4, int a5, unsigned int a6, unsigned int a7) { unsigned long long v9; // r14 long long v10; // rcx long long v11; // r13 v9 = a3; v1...
my_strxfrm_pad_desc_and_reverse_nopad: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX PUSH RAX MOV R12D,R9D MOV R15,RCX MOV R14,RDX MOV RBX,RSI MOV ECX,dword ptr [RBP + 0x10] TEST R8D,R8D SETZ AL CMP RDX,R15 SETNC SIL TEST R12B,0x40 SETZ DL OR DL,AL OR DL,SIL JNZ 0x00183709 MOV R13D,R8D MOV EAX,R15D ...
long my_strxfrm_pad_desc_and_reverse_nopad (long param_1,long param_2,void *param_3,void *param_4,int param_5,uint param_6, int4 param_7) { uint uVar1; uint uVar2; if (((param_6 & 0x40) != 0 && param_5 != 0) && param_3 < param_4) { uVar2 = param_5 * *(int *)(param_1 + 0x98);...
61,352
my_thread_destroy_common_mutex
eloqsql/mysys/my_thr_init.c
void my_thread_destroy_common_mutex(void) { mysql_mutex_destroy(&THR_LOCK_open); mysql_mutex_destroy(&THR_LOCK_lock); mysql_mutex_destroy(&THR_LOCK_myisam); mysql_mutex_destroy(&THR_LOCK_myisam_mmap); mysql_mutex_destroy(&THR_LOCK_heap); mysql_mutex_destroy(&THR_LOCK_net); mysql_mutex_destroy(&THR_LOCK_ch...
O3
c
my_thread_destroy_common_mutex: pushq %rbp movq %rsp, %rbp pushq %rbx pushq %rax leaq 0xb69c53(%rip), %rbx # 0xc11940 movq 0x40(%rbx), %rdi testq %rdi, %rdi je 0xa7d0b leaq 0x2e755b(%rip), %rax # 0x38f258 movq (%rax), %rax callq *0x48(%rax) movq $0x0, 0x40(%rbx) leaq 0xb69c2e(%rip), %rdi # 0xc11940 callq 0x2a0...
my_thread_destroy_common_mutex: push rbp mov rbp, rsp push rbx push rax lea rbx, THR_LOCK_open mov rdi, [rbx+40h] test rdi, rdi jz short loc_A7D0B lea rax, PSI_server mov rax, [rax] call qword ptr [rax+48h] mov qword ptr [rbx+40h], 0 loc_A7D0B: lea rdi, THR_LOCK_open call...
long long my_thread_destroy_common_mutex() { long long v0; // rdi long long v1; // rdi long long v2; // rdi long long v3; // rdi long long v4; // rdi long long v5; // rdi long long v6; // rdi v0 = THR_LOCK_open[8]; if ( v0 ) { ((void ( *)(long long))PSI_server[9])(v0); THR_LOCK_open[8] = 0L...
my_thread_destroy_common_mutex: PUSH RBP MOV RBP,RSP PUSH RBX PUSH RAX LEA RBX,[0xd11940] MOV RDI,qword ptr [RBX + 0x40] TEST RDI,RDI JZ 0x001a7d0b LEA RAX,[0x48f258] MOV RAX,qword ptr [RAX] CALL qword ptr [RAX + 0x48] MOV qword ptr [RBX + 0x40],0x0 LAB_001a7d0b: LEA RDI,[0xd11940] CALL 0x0012a0e0 LEA RBX,[0xd11988] MO...
void my_thread_destroy_common_mutex(void) { if (THR_LOCK_open._64_8_ != 0) { (**(code **)(PSI_server + 0x48))(); THR_LOCK_open._64_8_ = 0; } pthread_mutex_destroy((pthread_mutex_t *)THR_LOCK_open); if (THR_LOCK_lock._64_8_ != 0) { (**(code **)(PSI_server + 0x48))(); THR_LOCK_lock._64_8_ = 0; ...
61,353
google::protobuf::compiler::cpp::ServiceGenerator::GenerateNotImplementedMethods(google::protobuf::io::Printer*)
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/compiler/cpp/service.cc
void ServiceGenerator::GenerateNotImplementedMethods(io::Printer* printer) { for (int i = 0; i < descriptor_->method_count(); i++) { const MethodDescriptor* method = descriptor_->method(i); Formatter format(printer, vars_); InitMethodVariables(method, options_, &format); format( "void $classna...
O3
cpp
google::protobuf::compiler::cpp::ServiceGenerator::GenerateNotImplementedMethods(google::protobuf::io::Printer*): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movq %rsi, 0x8(%rsp) movq (%rdi), %rax cmpl $0x0, 0x28(%rax) jle 0x9cffb movq %rdi, %r14 leaq 0x8(%rdi), %rcx movq %rcx, (%...
_ZN6google8protobuf8compiler3cpp16ServiceGenerator29GenerateNotImplementedMethodsEPNS0_2io7PrinterE: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 48h mov qword ptr [rsp+78h+var_70], rsi; int mov rax, [rdi] cmp dword ptr [rax+28h], 0 jle short loc_9CFFB mov r14...
long long google::protobuf::compiler::cpp::ServiceGenerator::GenerateNotImplementedMethods( google::protobuf::compiler::cpp::ServiceGenerator *this, google::protobuf::io::Printer *a2) { long long result; // rax long long v3; // rbx long long v4; // r15 google::protobuf::MethodDescriptor *v5; //...
GenerateNotImplementedMethods: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x48 MOV qword ptr [RSP + 0x8],RSI MOV RAX,qword ptr [RDI] CMP dword ptr [RAX + 0x28],0x0 JLE 0x0019cffb MOV R14,RDI LEA RCX,[RDI + 0x8] MOV qword ptr [RSP],RCX LEA RDI,[RSP + 0x18] XOR EBX,EBX LEA R13,[RSP + 0x10] XOR R15D,R15...
/* google::protobuf::compiler::cpp::ServiceGenerator::GenerateNotImplementedMethods(google::protobuf::io::Printer*) */ void __thiscall google::protobuf::compiler::cpp::ServiceGenerator::GenerateNotImplementedMethods (ServiceGenerator *this,Printer *param_1) { long lVar1; long lVar2; long lVar3; ...
61,354
intx::operator*(intx::uint<256u> const&, intx::uint<256u> const&)
corpus-core[P]colibri-stateless/build_O0/_deps/intx-src/include/intx/intx.hpp
inline constexpr uint operator*(const uint& x, const uint& y) noexcept { uint<N> p; for (size_t j = 0; j < num_words; j++) { uint64_t k = 0; for (size_t i = 0; i < (num_words - j - 1); i++) { auto a = addc(p[i + j], k); auto...
O0
cpp
intx::operator*(intx::uint<256u> const&, intx::uint<256u> const&): pushq %rbp movq %rsp, %rbp subq $0xa0, %rsp movq %rdi, -0x78(%rbp) movq %rdi, %rax movq %rax, -0x70(%rbp) movq %rsi, -0x8(%rbp) movq %rdx, -0x10(%rbp) callq 0x61390 movq $0x0, -0x18(%rbp) cmpq $0x4, -0x18(%rbp) jae 0x616b9 movq $0x0, -0x20(%rbp) movq $0...
_ZN4intxmlERKNS_4uintILj256EEES3_: push rbp mov rbp, rsp sub rsp, 0A0h mov [rbp+var_78], rdi mov rax, rdi mov [rbp+var_70], rax mov [rbp+var_8], rsi mov [rbp+var_10], rdx call _ZN4intx4uintILj256EEC2Ev; intx::uint<256u>::uint(void) mov [rbp+var_18], 0 loc_6152B: cmp [rbp+var_18...
_QWORD * intx::operator*(_QWORD *a1, long long a2, long long a3) { intx **v3; // rax char v4; // dl unsigned long long *v5; // rax unsigned long long v6; // rdx long long v7; // rdx long long v8; // rdx _QWORD *v9; // rax _QWORD *v10; // rax long long v12; // [rsp+8h] [rbp-98h] unsigned long long v1...
operator*: PUSH RBP MOV RBP,RSP SUB RSP,0xa0 MOV qword ptr [RBP + -0x78],RDI MOV RAX,RDI MOV qword ptr [RBP + -0x70],RAX MOV qword ptr [RBP + -0x8],RSI MOV qword ptr [RBP + -0x10],RDX CALL 0x00161390 MOV qword ptr [RBP + -0x18],0x0 LAB_0016152b: CMP qword ptr [RBP + -0x18],0x4 JNC 0x001616b9 MOV qword ptr [RBP + -0x20]...
/* intx::TEMPNAMEPLACEHOLDERVALUE(intx::uint<256u> const&, intx::uint<256u> const&) */ intx * __thiscall intx::operator*(intx *this,uint *param_1,uint *param_2) { ulong uVar1; int8 uVar2; ulong *puVar3; int8 *puVar4; long *plVar5; long lVar6; byte extraout_DL; int1 auVar7 [16]; int8 local_70; int...
61,355
my_wc_mb_eucjpms
eloqsql/strings/ctype-eucjpms.c
static int my_wc_mb_eucjpms(CHARSET_INFO *cs __attribute__((unused)), my_wc_t wc, uchar *s, uchar *e) { int jp; if ((int) wc < 0x80) /* ASCII [00-7F] */ { if (s >= e) return MY_CS_TOOSMALL; *s= (uchar) wc; return 1; } if (wc > 0xFFFF) return MY_CS_ILUNI; if ((jp= un...
O0
c
my_wc_mb_eucjpms: pushq %rbp movq %rsp, %rbp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movq %rcx, -0x28(%rbp) movq -0x18(%rbp), %rax cmpl $0x80, %eax jge 0x3b21d movq -0x20(%rbp), %rax cmpq -0x28(%rbp), %rax jb 0x3b205 movl $0xffffff9b, -0x4(%rbp) # imm = 0xFFFFFF9B jmp 0x3b345 movq -0x18(%rb...
my_wc_mb_eucjpms: push rbp mov rbp, rsp mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov [rbp+var_20], rdx mov [rbp+var_28], rcx mov rax, [rbp+var_18] cmp eax, 80h jge short loc_3B21D mov rax, [rbp+var_20] cmp rax, [rbp+var_28] jb short loc_3B205 mov [rbp+var_4], 0FFFF...
long long my_wc_mb_eucjpms(long long a1, unsigned long long a2, _BYTE *a3, unsigned long long a4) { __int16 v5; // [rsp+0h] [rbp-2Ch] __int16 v6; // [rsp+0h] [rbp-2Ch] if ( (int)a2 >= 128 ) { if ( a2 <= 0xFFFF ) { v5 = unicode_to_jisx0208_eucjpms[a2]; if ( v5 ) { if ( (unsign...
my_wc_mb_eucjpms: PUSH RBP MOV RBP,RSP MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV qword ptr [RBP + -0x20],RDX MOV qword ptr [RBP + -0x28],RCX MOV RAX,qword ptr [RBP + -0x18] CMP EAX,0x80 JGE 0x0013b21d MOV RAX,qword ptr [RBP + -0x20] CMP RAX,qword ptr [RBP + -0x28] JC 0x0013b205 MOV dword ptr [...
int4 my_wc_mb_eucjpms(int8 param_1,ulong param_2,char *param_3,char *param_4) { short sVar1; int4 local_c; if ((int)param_2 < 0x80) { if (param_3 < param_4) { *param_3 = (char)param_2; local_c = 1; } else { local_c = 0xffffff9b; } } else if (param_2 < 0x10000) { sVar...
61,356
my_default_csname
eloqsql/mysys/charset.c
const char* my_default_csname() { const char* csname = NULL; #ifdef _WIN32 char cpbuf[64]; int cp = GetConsoleCP(); if (cp == 0) cp = GetACP(); snprintf(cpbuf, sizeof(cpbuf), "cp%d", (int)cp); csname = my_os_charset_to_mysql_charset(cpbuf); #elif defined(HAVE_SETLOCALE) && defined(HAVE_NL_LANGINFO) if...
O3
c
my_default_csname: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax leaq 0x4c95c(%rip), %rsi # 0xdfb12 xorl %r14d, %r14d xorl %edi, %edi callq 0x29640 testq %rax, %rax je 0x93212 movl $0xe, %edi callq 0x295e0 testq %rax, %rax je 0x9320f movq %rax, %rbx leaq 0x48c0a(%rip), %rdi # 0xdbde8 le...
my_default_csname: push rbp mov rbp, rsp push r15 push r14 push rbx push rax lea rsi, asc_DFB0E+4; "" xor r14d, r14d xor edi, edi call _setlocale test rax, rax jz short loc_93212 mov edi, 0Eh call _nl_langinfo test rax, rax jz short loc_9320F mov rbx, rax lea...
const char *my_default_csname() { long long v0; // r14 long long v1; // rax long long v2; // rbx const char *v3; // rdi const char **v4; // r15 const char *result; // rax v0 = 0LL; if ( setlocale(0LL, "") ) { v1 = nl_langinfo(14LL); if ( !v1 ) goto LABEL_9; v2 = v1; v3 = "646"; ...
my_default_csname: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX PUSH RAX LEA RSI,[0x1dfb12] XOR R14D,R14D XOR EDI,EDI CALL 0x00129640 TEST RAX,RAX JZ 0x00193212 MOV EDI,0xe CALL 0x001295e0 TEST RAX,RAX JZ 0x0019320f MOV RBX,RAX LEA RDI,[0x1dbde8] LEA R15,[0x47b528] XOR R14D,R14D LAB_001931e8: MOV RSI,RBX CALL 0x0012...
char * my_default_csname(void) { int iVar1; char *pcVar2; char *__s1; char *pcVar3; long *plVar4; pcVar3 = (char *)0x0; pcVar2 = setlocale(0,""); if (pcVar2 != (char *)0x0) { pcVar2 = nl_langinfo(0xe); if (pcVar2 == (char *)0x0) { LAB_0019320f: pcVar3 = (char *)0x0; } else { ...
61,357
js_os_stat
bluesky950520[P]quickjs/quickjs-libc.c
static JSValue js_os_stat(JSContext *ctx, JSValue this_val, int argc, JSValue *argv, int is_lstat) { const char *path; int err, res; struct stat st; JSValue obj; path = JS_ToCString(ctx, argv[0]); if (!path) return JS_EXCEPTION; #if defined(_WIN32) res = st...
O1
c
js_os_stat: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0xa8, %rsp movl %r9d, %ebp movq %rdi, %rbx movq (%r8), %rdx movq 0x8(%r8), %rcx xorl %r15d, %r15d xorl %esi, %esi xorl %r8d, %r8d callq 0x20bf7 movl $0x6, %r12d testq %rax, %rax je 0x198c5 movq %rax, %r14 leaq 0x18(%rsp), %rsi movq %rax...
js_os_stat: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 0A8h mov ebp, r9d mov rbx, rdi mov rdx, [r8] mov rcx, [r8+8] xor r15d, r15d xor esi, esi xor r8d, r8d call JS_ToCStringLen2 mov r12d, 6 test rax, rax jz short loc_198C5 mov r14...
unsigned long long js_os_stat(long long a1, long long a2, long long a3, long long a4, _QWORD *a5, int a6) { long long v8; // r15 long long v9; // rax long long v10; // r14 long long v11; // rdi int v12; // eax int v13; // r15d unsigned int v14; // ebp long long v15; // rax long long v16; // rdx lon...
61,358
js_os_stat
bluesky950520[P]quickjs/quickjs-libc.c
static JSValue js_os_stat(JSContext *ctx, JSValue this_val, int argc, JSValue *argv, int is_lstat) { const char *path; int err, res; struct stat st; JSValue obj; path = JS_ToCString(ctx, argv[0]); if (!path) return JS_EXCEPTION; #if defined(_WIN32) res = st...
O2
c
js_os_stat: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0xa8, %rsp movl %r9d, %ebp movq %rdi, %rbx movq (%r8), %rsi movq 0x8(%r8), %rdx callq 0x11a6c pushq $0x6 popq %r12 testq %rax, %rax je 0x143c0 movq %rax, %r14 leaq 0x18(%rsp), %rsi movq %rax, %rdi testl %ebp, %ebp je 0x1438a callq 0xe47...
js_os_stat: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 0A8h mov ebp, r9d mov rbx, rdi mov rsi, [r8] mov rdx, [r8+8] call JS_ToCString push 6 pop r12 test rax, rax jz short loc_143C0 mov r14, rax lea rsi, [rsp+0D8h+var_C0] mov rdi, r...
unsigned long long js_os_stat(long long a1, long long a2, long long a3, long long a4, long long *a5, int a6) { long long v8; // rax long long v9; // r14 long long v10; // rdi int v11; // eax int v12; // r15d unsigned int v13; // ebp long long v14; // rax long long v15; // rdx long long v16; // r15 ...
js_os_stat: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0xa8 MOV EBP,R9D MOV RBX,RDI MOV RSI,qword ptr [R8] MOV RDX,qword ptr [R8 + 0x8] CALL 0x00111a6c PUSH 0x6 POP R12 TEST RAX,RAX JZ 0x001143c0 MOV R14,RAX LEA RSI,[RSP + 0x18] MOV RDI,RAX TEST EBP,EBP JZ 0x0011438a CALL 0x0010e470 JMP 0x0011438f LA...
int1 [16] js_os_stat(int8 param_1) { int iVar1; char *__file; int *piVar2; int8 uVar3; ulong uVar4; ulong uVar5; int iVar7; int8 *in_R8; double dVar8; int in_R9D; int8 uVar9; int8 uVar10; bool bVar11; int1 auVar12 [16]; stat local_c0; int8 uVar6; __file = (char *)JS_ToCString(par...
61,359
my_fstat
eloqsql/mysys/my_lib.c
int my_fstat(File Filedes, MY_STAT *stat_area, myf MyFlags __attribute__((unused))) { DBUG_ENTER("my_fstat"); DBUG_PRINT("my",("fd: %d MyFlags: %lu", Filedes, MyFlags)); #ifdef _WIN32 DBUG_RETURN(my_win_fstat(Filedes, stat_area)); #elif defined HAVE_valgrind { int s= fstat(Filedes, stat_area);...
O3
c
my_fstat: pushq %rbp movq %rsp, %rbp popq %rbp jmp 0x246c0 nopl (%rax)
my_fstat: push rbp mov rbp, rsp pop rbp jmp _fstat64
long long my_fstat() { return fstat64(); }
my_fstat: PUSH RBP MOV RBP,RSP POP RBP JMP 0x001246c0
void my_fstat(int param_1,stat64 *param_2) { fstat64(param_1,param_2); return; }
61,360
lf_alloc_new
eloqsql/mysys/lf_alloc-pin.c
void *lf_alloc_new(LF_PINS *pins) { LF_ALLOCATOR *allocator= (LF_ALLOCATOR *)(pins->pinbox->free_func_arg); uchar *node; for (;;) { do { node= allocator->top; lf_pin(pins, 0, node); } while (node != allocator->top && LF_BACKOFF()); if (!node) { node= (void *)my_malloc(key_me...
O3
c
lf_alloc_new: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax movq %rdi, %rbx movq 0x20(%rdi), %rax movq 0x30(%rax), %r15 leaq 0x2dfe59(%rip), %rcx # 0x385018 movq 0x48(%r15), %r14 movq %r14, %rax xchgq %rax, (%rbx) cmpq 0x48(%r15), %r14 je 0xa51dd movl (%rcx), %eax testl %eax, %eax je 0xa51bf...
lf_alloc_new: push rbp mov rbp, rsp push r15 push r14 push rbx push rax mov rbx, rdi mov rax, [rdi+20h] mov r15, [rax+30h] lea rcx, my_cpu_relax_multiplier loc_A51BF: mov r14, [r15+48h] mov rax, r14 xchg rax, [rbx] cmp r14, [r15+48h] jz short loc_A51DD mov eax,...
long long lf_alloc_new(long long a1) { long long v1; // r15 long long v2; // r14 int i; // eax void ( *v4)(long long); // rax v1 = *(_QWORD *)(*(_QWORD *)(a1 + 32) + 48LL); while ( 1 ) { while ( 1 ) { v2 = *(_QWORD *)(v1 + 72); _InterlockedExchange64((volatile long long *)a1, v2); ...
lf_alloc_new: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX PUSH RAX MOV RBX,RDI MOV RAX,qword ptr [RDI + 0x20] MOV R15,qword ptr [RAX + 0x30] LEA RCX,[0x485018] LAB_001a51bf: MOV R14,qword ptr [R15 + 0x48] MOV RAX,R14 XCHG qword ptr [RBX],RAX CMP R14,qword ptr [R15 + 0x48] JZ 0x001a51dd MOV EAX,dword ptr [RCX] TEST ...
long lf_alloc_new(long *param_1) { long lVar1; int iVar2; long lVar3; bool bVar4; lVar1 = *(long *)(param_1[4] + 0x30); do { while( true ) { lVar3 = *(long *)(lVar1 + 0x48); LOCK(); *param_1 = lVar3; UNLOCK(); iVar2 = my_cpu_relax_multiplier; if (lVar3 == *(long ...
61,361
my_lengthsp_utf16le
eloqsql/strings/ctype-ucs2.c
static size_t my_lengthsp_utf16le(CHARSET_INFO *cs __attribute__((unused)), const char *ptr, size_t length) { const char *end= ptr + length; while (end > ptr + 1 && uint2korr(end - 2) == ' ') end-= 2; return (size_t) (end - ptr); }
O0
c
my_lengthsp_utf16le: pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq -0x10(%rbp), %rax addq -0x18(%rbp), %rax movq %rax, -0x20(%rbp) movq -0x20(%rbp), %rcx movq -0x10(%rbp), %rdx addq $0x1, %rdx xorl %eax, %eax cmpq %rdx, %rcx movb %al, -0x21(%rbp) jbe 0x5e2b3 movq -0...
my_lengthsp_utf16le: push rbp mov rbp, rsp mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov [rbp+var_18], rdx mov rax, [rbp+var_10] add rax, [rbp+var_18] mov [rbp+var_20], rax loc_5E28C: mov rcx, [rbp+var_20] mov rdx, [rbp+var_10] add rdx, 1 xor eax, eax cmp rcx, rdx mov...
long long my_lengthsp_utf16le(long long a1, long long a2, long long a3) { bool v4; // [rsp+1h] [rbp-21h] unsigned long long i; // [rsp+2h] [rbp-20h] for ( i = a3 + a2; ; i -= 2LL ) { v4 = 0; if ( i > a2 + 1 ) v4 = *(unsigned __int16 *)(i - 2) == 32; if ( !v4 ) break; } return i - a...
my_lengthsp_utf16le: PUSH RBP MOV RBP,RSP MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV qword ptr [RBP + -0x18],RDX MOV RAX,qword ptr [RBP + -0x10] ADD RAX,qword ptr [RBP + -0x18] MOV qword ptr [RBP + -0x20],RAX LAB_0015e28c: MOV RCX,qword ptr [RBP + -0x20] MOV RDX,qword ptr [RBP + -0x10] ADD RDX,0...
long my_lengthsp_utf16le(int8 param_1,long param_2,long param_3) { bool bVar1; int8 local_28; local_28 = param_2 + param_3; while( true ) { bVar1 = false; if (param_2 + 1U < local_28) { bVar1 = *(short *)(local_28 - 2) == 0x20; } if (!bVar1) break; local_28 = local_28 - 2; } r...
61,362
ma_find_half_pos
eloqsql/storage/maria/ma_write.c
uchar *_ma_find_half_pos(MARIA_KEY *key, MARIA_PAGE *ma_page, uchar **after_key) { uint keys, length, key_ref_length, page_flag, nod_flag; uchar *page, *end, *lastpos; MARIA_HA *info= ma_page->info; MARIA_SHARE *share= info->s; MARIA_KEYDEF *keyinfo= key->keyinfo; DBUG_ENTER("_ma_fi...
O3
c
ma_find_half_pos: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movq %rdx, %r8 movq (%rsi), %rbx movq (%rbx), %rcx movq 0x8(%rdi), %r11 movl 0x28(%rsi), %r10d movl 0x744(%rcx), %edx addl %r10d, %edx movl 0x2c(%rsi), %r9d movl 0x20(%rsi), %eax subl %edx, %eax movq 0x1...
_ma_find_half_pos: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 28h mov r8, rdx mov rbx, [rsi] mov rcx, [rbx] mov r11, [rdi+8] mov r10d, [rsi+28h] mov edx, [rcx+744h] add edx, r10d mov r9d, [rsi+2Ch] mov eax, [rsi+20h] sub ...
long long ma_find_half_pos(long long a1, long long **a2, unsigned long long *a3) { long long *v4; // rbx long long v5; // rcx long long v6; // r11 long long v7; // r10 long long v8; // rdx unsigned int v9; // r9d unsigned int v10; // eax long long v11; // r14 bool v12; // si int v13; // edx long ...
_ma_find_half_pos: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x28 MOV R8,RDX MOV RBX,qword ptr [RSI] MOV RCX,qword ptr [RBX] MOV R11,qword ptr [RDI + 0x8] MOV R10D,dword ptr [RSI + 0x28] MOV EDX,dword ptr [RCX + 0x744] ADD EDX,R10D MOV R9D,dword ptr [RSI + 0x2c] MOV EAX,dword ptr [RSI + ...
void * _ma_find_half_pos(int8 *param_1,int8 *param_2,long *param_3) { int iVar1; long *plVar2; long lVar3; long lVar4; int iVar5; void *pvVar6; uint uVar7; uint uVar8; void *__src; void *local_40; uint local_34; plVar2 = (long *)*param_2; lVar3 = *plVar2; lVar4 = param_1[1]; iVar1 = *...
61,363
Field_mysql_json::parse_mysql(String*, char const*, unsigned long) const
eloqsql/plugin/type_mysql_json/type.cc
bool Field_mysql_json::parse_mysql(String *dest, const char *data, size_t length) const { if (!data) return false; /* Each JSON blob must start with a type specifier. */ if (length < 2) return true; if (parse_mysql_json_value(dest, static_cast<JSONB_TYPES>(data[0]), ...
O3
cpp
Field_mysql_json::parse_mysql(String*, char const*, unsigned long) const: pushq %rbp movq %rsp, %rbp testq %rdx, %rdx je 0xc358 movb $0x1, %al cmpq $0x2, %rcx jb 0xc35a movsbl (%rdx), %eax incq %rdx decq %rcx movq %rsi, %rdi movl %eax, %esi xorl %r8d, %r8d popq %rbp jmp 0xb340 xorl %eax, %eax popq %rbp retq
_ZNK16Field_mysql_json11parse_mysqlEP6StringPKcm: push rbp mov rbp, rsp test rdx, rdx jz short loc_C358 mov al, 1 cmp rcx, 2 jb short loc_C35A movsx eax, byte ptr [rdx] inc rdx dec rcx mov rdi, rsi mov esi, eax xor r8d, r8d pop rbp jmp __Z22parse_mysql_json_valu...
char Field_mysql_json::parse_mysql(Field_mysql_json *this, String *a2, const char *a3, unsigned long long a4) { char result; // al if ( !a3 ) return 0; result = 1; if ( a4 >= 2 ) return parse_mysql_json_value(a2, *a3, (const double *)(a3 + 1), a4 - 1, 0LL); return result; }
parse_mysql: PUSH RBP MOV RBP,RSP TEST RDX,RDX JZ 0x0010c358 MOV AL,0x1 CMP RCX,0x2 JC 0x0010c35a MOVSX EAX,byte ptr [RDX] INC RDX DEC RCX MOV RDI,RSI MOV ESI,EAX XOR R8D,R8D POP RBP JMP 0x0010b340 LAB_0010c358: XOR EAX,EAX LAB_0010c35a: POP RBP RET
/* Field_mysql_json::parse_mysql(String*, char const*, unsigned long) const */ int8 __thiscall Field_mysql_json::parse_mysql(Field_mysql_json *this,String *param_1,char *param_2,ulong param_3) { int8 uVar1; if (param_2 == (char *)0x0) { uVar1 = 0; } else { uVar1 = 1; if (1 < param_3) { u...
61,364
fmt::v8::basic_format_context<fmt::v8::appender, char>::format_arg fmt::v8::detail::get_arg<fmt::v8::basic_format_context<fmt::v8::appender, char>, fmt::v8::basic_string_view<char>>(fmt::v8::basic_format_context<fmt::v8::appender, char>&, fmt::v8::basic_string_view<char>)
aimrt_mujoco_sim/_deps/spdlog_lib-src/include/spdlog/fmt/bundled/format.h
FMT_CONSTEXPR auto get_arg(Context& ctx, ID id) -> typename Context::format_arg { auto arg = ctx.arg(id); if (!arg) ctx.on_error("argument not found"); return arg; }
O3
c
fmt::v8::basic_format_context<fmt::v8::appender, char>::format_arg fmt::v8::detail::get_arg<fmt::v8::basic_format_context<fmt::v8::appender, char>, fmt::v8::basic_string_view<char>>(fmt::v8::basic_format_context<fmt::v8::appender, char>&, fmt::v8::basic_string_view<char>): pushq %rbx subq $0x10, %rsp movq %rdi, %rbx ad...
_ZN3fmt2v86detail7get_argINS0_20basic_format_contextINS0_8appenderEcEENS0_17basic_string_viewIcEEEENT_10format_argERS8_T0_: push rbx sub rsp, 10h mov rbx, rdi add rsi, 8 call _ZNK3fmt2v817basic_format_argsINS0_20basic_format_contextINS0_8appenderEcEEE3getIcEENS0_16basic_format_argIS4_EENS0_17basic_str...
long long fmt::v8::detail::get_arg<fmt::v8::basic_format_context<fmt::v8::appender,char>,fmt::v8::basic_string_view<char>>( long long a1, long long a2) { _BYTE v3[9]; // [rsp+Fh] [rbp-9h] BYREF fmt::v8::basic_format_args<fmt::v8::basic_format_context<fmt::v8::appender,char>>::get<char>(a1, a2 + 8)...
get_arg<fmt::v8::basic_format_context<fmt::v8::appender,char>,fmt::v8::basic_string_view<char>>: PUSH RBX SUB RSP,0x10 MOV RBX,RDI ADD RSI,0x8 CALL 0x001309c6 CMP dword ptr [RBX + 0x10],0x0 JZ 0x001309b4 MOV RAX,RBX ADD RSP,0x10 POP RBX RET LAB_001309b4: LEA RSI,[0x14acc7] LEA RDI,[RSP + 0xf] CALL 0x001449b6
/* fmt::v8::basic_format_context<fmt::v8::appender, char>::format_arg fmt::v8::detail::get_arg<fmt::v8::basic_format_context<fmt::v8::appender, char>, fmt::v8::basic_string_view<char> >(fmt::v8::basic_format_context<fmt::v8::appender, char>&, fmt::v8::basic_string_view<char>) */ long fmt::v8::detail:: g...
61,365
bf_pow_generic
bluesky950520[P]quickjs/libbf.c
static int bf_pow_generic(bf_t *r, const bf_t *x, limb_t prec, void *opaque) { bf_context_t *s = r->ctx; const bf_t *y = opaque; bf_t T_s, *T = &T_s; limb_t prec1; bf_init(s, T); /* XXX: proof for the added precision */ prec1 = prec + 32; bf_log(T, x, prec1, BF_RNDF | BF_FLAG_EXT_EXP); ...
O2
c
bf_pow_generic: pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x30, %rsp movq %rcx, %r15 movq %rdi, %rbx movq (%rdi), %rax leaq 0x8(%rsp), %r12 movq %rax, (%r12) andl $0x0, 0x8(%r12) movq %rdx, %r14 movabsq $0x7fffffffffffffff, %r13 # imm = 0x7FFFFFFFFFFFFFFF leaq 0x1(%r13), %rax movq %rax, 0x10(%r12) xo...
bf_pow_generic: push r15 push r14 push r13 push r12 push rbx sub rsp, 30h mov r15, rcx mov rbx, rdi mov rax, [rdi] lea r12, [rsp+58h+var_50] mov [r12], rax and dword ptr [r12+8], 0 mov r14, rdx mov r13, 7FFFFFFFFFFFFFFFh lea rax, [r13+1] mov [r12+10h], rax xorp...
long long bf_pow_generic(long long *a1, long long a2, long long a3, long long *a4) { long long v5; // r14 long long v7; // [rsp+8h] [rbp-50h] BYREF int v8; // [rsp+10h] [rbp-48h] unsigned long long v9; // [rsp+18h] [rbp-40h] __int128 v10; // [rsp+20h] [rbp-38h] v7 = *a1; v8 = 0; v9 = 0x800000000000000...
bf_pow_generic: PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x30 MOV R15,RCX MOV RBX,RDI MOV RAX,qword ptr [RDI] LEA R12,[RSP + 0x8] MOV qword ptr [R12],RAX AND dword ptr [R12 + 0x8],0x0 MOV R14,RDX MOV R13,0x7fffffffffffffff LEA RAX,[R13 + 0x1] MOV qword ptr [R12 + 0x10],RAX XORPS XMM0,XMM0 MOVUPS xmmword ptr...
int8 bf_pow_generic(int8 *param_1,int8 param_2,long param_3,int8 param_4) { int8 local_50; int4 local_48; long local_40; int8 local_38; int8 uStack_30; local_50 = *param_1; local_48 = 0; local_40 = -0x8000000000000000; local_38 = 0; uStack_30 = 0; param_3 = param_3 + 0x20; bf_log(&local_50,...
61,366
unifex::_manual_event_loop::_op<unifex::_with_query_value::_receiver_wrapper<unifex::_get_stop_token::_fn, unifex::unstoppable_token, unifex::_then::_receiver<unifex::_seq::_successor_receiver<unifex::_then::_sender<unifex::_just::_sender<>::type, unifex::_async_scope::async_scope::complete()::'lambda'()>::type&&, unif...
aimrt_mujoco_sim/_deps/libunifex-src/include/unifex/manual_event_loop.hpp
static void execute_impl(task_base* t) noexcept { auto& self = *static_cast<type*>(t); if constexpr (is_stop_never_possible_v<stop_token_type>) { unifex::set_value(std::move(self.receiver_)); } else { if (get_stop_token(self.receiver_).stop_requested()) { unifex::set_done(std::move(self....
O3
cpp
unifex::_manual_event_loop::_op<unifex::_with_query_value::_receiver_wrapper<unifex::_get_stop_token::_fn, unifex::unstoppable_token, unifex::_then::_receiver<unifex::_seq::_successor_receiver<unifex::_then::_sender<unifex::_just::_sender<>::type, unifex::_async_scope::async_scope::complete()::'lambda'()>::type&&, unif...
_ZN6unifex18_manual_event_loop3_opINS_17_with_query_value17_receiver_wrapperINS_15_get_stop_token3_fnENS_17unstoppable_tokenENS_5_then9_receiverINS_4_seq19_successor_receiverIONS7_7_senderINS_5_just7_senderIJEE4typeEZNS_12_async_scope11async_scope8completeEvEUlvE_E4typeENSB_INS_5_amre7_senderEZNSH_14await_and_syncEvEUl...
long long unifex::_manual_event_loop::_op<unifex::_with_query_value::_receiver_wrapper<unifex::_get_stop_token::_fn,unifex::unstoppable_token,unifex::_then::_receiver<unifex::_seq::_successor_receiver<unifex::_then::_sender<unifex::_just::_sender<>::type,unifex::_async_scope::async_scope::complete(void)::{lambda(void)...
execute_impl: MOV RAX,qword ptr [RDI + 0x10] MOV RAX,qword ptr [RAX + 0x18] MOV RDI,qword ptr [RDI + 0x18] ADD RDI,0x10 JMP 0x0014f1d2
/* unifex::_manual_event_loop::_op<unifex::_with_query_value::_receiver_wrapper<unifex::_get_stop_token::_fn, unifex::unstoppable_token, unifex::_then::_receiver<unifex::_seq::_successor_receiver<unifex::_then::_sender<unifex::_just::_sender<>::type, unifex::_async_scope::async_scope::complete()::{lambda()#1}...
61,367
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
iterator insert_iterator(const_iterator pos, Args&& ... args) { iterator result(this); JSON_ASSERT(m_data.m_value.array != nullptr); auto insert_pos = std::distance(m_data.m_value.array->begin(), pos.m_it.array_iterator); m_data.m_value.array->insert(pos.m_it.array_iterator, std::fo...
O0
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_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE15insert_iteratorIJRKSD_EEENS0_6detail9iter_implISD_EENSI_ISF_EEDpOT_: sub rsp, 88h mov [rsp+88h+var_78], rdx mov [rsp+88h+var_70], rdi mov ra...
_QWORD * 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>::insert_iterator<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::or...
61,368
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
iterator insert_iterator(const_iterator pos, Args&& ... args) { iterator result(this); JSON_ASSERT(m_data.m_value.array != nullptr); auto insert_pos = std::distance(m_data.m_value.array->begin(), pos.m_it.array_iterator); m_data.m_value.array->insert(pos.m_it.array_iterator, std::fo...
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_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE15insert_iteratorIJRKSD_EEENS0_6detail9iter_implISD_EENSI_ISF_EEDpOT_: push r15 push r14 push rbx mov rbx, rdi mov [rdi], rsi mov qword p...
_QWORD * 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>::insert_iterator<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::or...
insert_iterator<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>const&>: PUSH R15 PUSH R14 PUSH RBX MOV R...
/* 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,369
used_buffs_urgent_unlock
eloqsql/storage/maria/ma_loghandler.c
static void used_buffs_urgent_unlock(TRUNSLOG_USED_BUFFERS *buffs) { uint i; DBUG_ENTER("used_buffs_urgent_unlock"); translog_lock(); translog_stop_writing(); translog_unlock(); for (i= buffs->unlck_ptr; i < buffs->wrt_ptr; i++) { struct st_translog_buffer *buf= buffs->buff[i]; translog_buffer_loc...
O0
c
used_buffs_urgent_unlock: pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x8(%rbp) callq 0x51470 callq 0x50b60 callq 0x51560 movq -0x8(%rbp), %rax movzbl 0x19(%rax), %eax movl %eax, -0xc(%rbp) movl -0xc(%rbp), %eax movq -0x8(%rbp), %rcx movzbl 0x18(%rcx), %ecx cmpl %ecx, %eax jae 0x5d1e9 movq -0x8(%rbp), %rax ...
used_buffs_urgent_unlock: push rbp mov rbp, rsp sub rsp, 20h mov [rbp+var_8], rdi call translog_lock call translog_stop_writing call translog_unlock mov rax, [rbp+var_8] movzx eax, byte ptr [rax+19h] mov [rbp+var_C], eax loc_5D196: mov eax, [rbp+var_C] mov rcx, [rbp+var_8] movz...
long long used_buffs_urgent_unlock(long long a1) { long long v2; // [rsp+8h] [rbp-18h] unsigned int i; // [rsp+14h] [rbp-Ch] translog_lock(); translog_stop_writing(); translog_unlock(); for ( i = *(unsigned __int8 *)(a1 + 25); i < *(unsigned __int8 *)(a1 + 24); ++i ) { v2 = *(_QWORD *)(a1 + 8LL * i)...
used_buffs_urgent_unlock: PUSH RBP MOV RBP,RSP SUB RSP,0x20 MOV qword ptr [RBP + -0x8],RDI CALL 0x00151470 CALL 0x00150b60 CALL 0x00151560 MOV RAX,qword ptr [RBP + -0x8] MOVZX EAX,byte ptr [RAX + 0x19] MOV dword ptr [RBP + -0xc],EAX LAB_0015d196: MOV EAX,dword ptr [RBP + -0xc] MOV RCX,qword ptr [RBP + -0x8] MOVZX ECX,b...
void used_buffs_urgent_unlock(long param_1) { int8 uVar1; int4 local_14; translog_lock(); translog_stop_writing(); translog_unlock(); for (local_14 = (uint)*(byte *)(param_1 + 0x19); local_14 < *(byte *)(param_1 + 0x18); local_14 = local_14 + 1) { uVar1 = *(int8 *)(param_1 + (ulong)local_14 *...
61,370
my_convert_using_func
eloqsql/strings/ctype.c
uint32 my_convert_using_func(char *to, size_t to_length, CHARSET_INFO *to_cs, my_charset_conv_wc_mb wc_mb, const char *from, size_t from_length, CHARSET_INFO *from_cs, my_charset_conv_mb_wc mb_wc, uint *errors) { int cnvre...
O3
c
my_convert_using_func: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movq %r8, %r13 movq %rcx, -0x40(%rbp) movq %rdx, %rbx movq %rsi, %r14 movq %rdi, %r15 addq %r8, %r9 movq %r9, -0x48(%rbp) addq %rdi, %r14 xorl %r12d, %r12d movq %rdi, -0x50(%rbp) movq 0x10(%rbp), %r...
my_convert_using_func: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 28h mov r13, r8 mov [rbp+var_40], rcx mov rbx, rdx mov r14, rsi mov r15, rdi add r9, r8 mov [rbp+var_48], r9 add r14, rdi xor r12d, r12d mov [rbp+var_50], ...
long long my_convert_using_func( long long a1, long long a2, long long a3, long long ( *a4)(long long, long long, long long, long long), long long a5, long long a6, long long a7, long long ( *a8)(long long, long long *, long long, unsigned long long), ...
my_convert_using_func: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x28 MOV R13,R8 MOV qword ptr [RBP + -0x40],RCX MOV RBX,RDX MOV R14,RSI MOV R15,RDI ADD R9,R8 MOV qword ptr [RBP + -0x48],R9 ADD R14,RDI XOR R12D,R12D MOV qword ptr [RBP + -0x50],RDI LAB_001d2fdd: MOV RDI,qword ptr [RBP + 0...
int my_convert_using_func (long param_1,long param_2,int8 param_3,code *param_4,ulong param_5,long param_6 ,int8 param_7,code *param_8,int *param_9) { uint uVar1; ulong uVar2; int iVar3; long lVar4; int local_58; long local_40; ulong local_38; uVar2 = param_6 + param_5; ...
61,371
translog_buffer_next
eloqsql/storage/maria/ma_loghandler.c
static my_bool translog_buffer_next(TRANSLOG_ADDRESS *horizon, struct st_buffer_cursor *cursor, my_bool new_file) { uint old_buffer_no= cursor->buffer_no; uint new_buffer_no= (old_buffer_no + 1) % TRANSLOG_BUFFERS_NO; struct st_translog_buffe...
O0
c
translog_buffer_next: pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movb %dl, %al movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movb %al, -0x19(%rbp) movq -0x18(%rbp), %rax movzbl 0x36(%rax), %eax movl %eax, -0x20(%rbp) movl -0x20(%rbp), %eax addl $0x1, %eax andl $0x7, %eax movl %eax, -0x24(%rbp) movl -0x24(%rbp), %eax m...
translog_buffer_next: push rbp mov rbp, rsp sub rsp, 40h mov al, dl mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov [rbp+var_19], al mov rax, [rbp+var_18] movzx eax, byte ptr [rax+36h] mov [rbp+var_20], eax mov eax, [rbp+var_20] add eax, 1 and eax, 7 mov [rbp+var_24]...
char translog_buffer_next(long long *a1, long long a2, char a3) { long long v4; // [rsp+0h] [rbp-40h] char v5; // [rsp+Fh] [rbp-31h] long long *v6; // [rsp+10h] [rbp-30h] unsigned __int8 v7; // [rsp+1Ch] [rbp-24h] unsigned int v8; // [rsp+20h] [rbp-20h] v8 = *(unsigned __int8 *)(a2 + 54); v7 = (v8 + 1) ...
translog_buffer_next: PUSH RBP MOV RBP,RSP SUB RSP,0x40 MOV AL,DL MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV byte ptr [RBP + -0x19],AL MOV RAX,qword ptr [RBP + -0x18] MOVZX EAX,byte ptr [RAX + 0x36] MOV dword ptr [RBP + -0x20],EAX MOV EAX,dword ptr [RBP + -0x20] ADD EAX,0x1 AND EAX,0x7 MOV dwor...
int1 translog_buffer_next(ulong *param_1,long param_2,char param_3) { char cVar1; char cVar2; uint uVar3; uint uVar4; int *puVar5; long lVar6; int8 local_48; uVar3 = (uint)*(byte *)(param_2 + 0x36); uVar4 = uVar3 + 1 & 7; lVar6 = (ulong)uVar4 * 0x100120; puVar5 = &DAT_00578f68 + lVar6; cVar...
61,372
reset_partitioned_key_cache_counters
eloqsql/mysys/mf_keycache.c
static int reset_partitioned_key_cache_counters(const char *name __attribute__((unused)), PARTITIONED_KEY_CACHE_CB *keycache) { uint i; uint partitions= keycache->partitions; DBUG_ENTER("partitioned_reset_key_cache_counters"); for (i = 0; i < partitions; i++) { reset_...
O0
c
reset_partitioned_key_cache_counters: pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x10(%rbp), %rax movl 0x1c(%rax), %eax movl %eax, -0x18(%rbp) movl $0x0, -0x14(%rbp) movl -0x14(%rbp), %eax cmpl -0x18(%rbp), %eax jae 0xe84fc movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rax...
reset_partitioned_key_cache_counters: push rbp mov rbp, rsp sub rsp, 20h mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov rax, [rbp+var_10] mov eax, [rax+1Ch] mov [rbp+var_18], eax mov [rbp+var_14], 0 loc_E84D1: mov eax, [rbp+var_14] cmp eax, [rbp+var_18] jnb short loc_E84FC...
long long reset_partitioned_key_cache_counters(long long a1, long long a2) { unsigned int v3; // [rsp+8h] [rbp-18h] unsigned int i; // [rsp+Ch] [rbp-14h] v3 = *(_DWORD *)(a2 + 28); for ( i = 0; i < v3; ++i ) reset_simple_key_cache_counters(a1, *(_QWORD *)(*(_QWORD *)(a2 + 8) + 8LL * i)); return 0LL; }
reset_partitioned_key_cache_counters: 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 + -0x10] MOV EAX,dword ptr [RAX + 0x1c] MOV dword ptr [RBP + -0x18],EAX MOV dword ptr [RBP + -0x14],0x0 LAB_001e84d1: MOV EAX,dword ptr [RBP + -0x14] CMP EAX,dwor...
int8 reset_partitioned_key_cache_counters(int8 param_1,long param_2) { uint uVar1; int4 local_1c; uVar1 = *(uint *)(param_2 + 0x1c); for (local_1c = 0; local_1c < uVar1; local_1c = local_1c + 1) { reset_simple_key_cache_counters (param_1,*(int8 *)(*(long *)(param_2 + 8) + (ulong)local_1c ...
61,373
ImageAlphaClear
csit-sgu[P]mit-game-2025_1/Libraries/raylib/src/rtextures.c
void ImageAlphaClear(Image *image, Color color, float threshold) { // Security check to avoid program crash if ((image->data == NULL) || (image->width == 0) || (image->height == 0)) return; if (image->mipmaps > 1) TRACELOG(LOG_WARNING, "Image manipulation only applied to base mipmap level"); if (image-...
O2
c
ImageAlphaClear: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x18, %rsp cmpq $0x0, (%rdi) je 0x827f8 movq %rdi, %rbx cmpl $0x0, 0x8(%rdi) je 0x827f8 cmpl $0x0, 0xc(%rbx) je 0x827f8 movl %esi, %ebp cmpl $0x2, 0x10(%rbx) movss %xmm0, 0x4(%rsp) jl 0x82452 leaq 0x50ca6(%rip), %rsi # 0xd30e8 ...
ImageAlphaClear: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 18h cmp qword ptr [rdi], 0 jz def_824A8; jumptable 00000000000824A8 default case, cases 3,4,8,9,11,12 mov rbx, rdi cmp dword ptr [rdi+8], 0 jz def_824A8; jumptable 00000000000824A8 default case, c...
void ImageAlphaClear(int *a1, unsigned int a2, int a3, int a4, int a5, int a6, double a7) { int v7; // eax long long i; // rcx int v9; // r13d int v10; // ebp int v11; // r12d int v12; // r15d int v13; // eax long long k; // rcx __m128i v15; // xmm0 long long ii; // r14 long long v17; // r15 un...
ImageAlphaClear: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x18 CMP qword ptr [RDI],0x0 JZ 0x001827f8 MOV RBX,RDI CMP dword ptr [RDI + 0x8],0x0 JZ 0x001827f8 CMP dword ptr [RBX + 0xc],0x0 JZ 0x001827f8 MOV EBP,ESI CMP dword ptr [RBX + 0x10],0x2 MOVSS dword ptr [RSP + 0x4],XMM0 JL 0x00182452 LEA RSI,...
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */ void ImageAlphaClear(float param_1,long *param_2,uint param_3) { int iVar1; long lVar2; bool bVar3; int2 uVar4; uint uVar5; int1 uVar6; uint uVar7; long lVar8; uint uVar9; float fVar10; float fVar11; float fV...
61,374
pagecache_set_write_on_delete_by_link
eloqsql/storage/maria/ma_pagecache.c
void pagecache_set_write_on_delete_by_link(PAGECACHE_BLOCK_LINK *block) { DBUG_ENTER("pagecache_set_write_on_delete_by_link"); DBUG_PRINT("enter", ("fd: %d block %p %d -> TRUE", block->hash_link->file.file, block, (int) block->status & PCBLOCK_DEL_WRITE)); DBUG_ASSER...
O0
c
pagecache_set_write_on_delete_by_link: pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) jmp 0x2fcaa jmp 0x2fcac jmp 0x2fcae jmp 0x2fcb0 jmp 0x2fcb2 movq -0x8(%rbp), %rax movzwl 0x74(%rax), %ecx orl $0x80, %ecx movw %cx, 0x74(%rax) jmp 0x2fcc6 popq %rbp retq nopl (%rax,%rax)
pagecache_set_write_on_delete_by_link: push rbp mov rbp, rsp mov [rbp+var_8], rdi jmp short $+2 loc_2FCAA: jmp short $+2 loc_2FCAC: jmp short $+2 loc_2FCAE: jmp short $+2 loc_2FCB0: jmp short $+2 loc_2FCB2: mov rax, [rbp+var_8] movzx ecx, word ptr [rax+74h] or ecx, 80h mov ...
long long pagecache_set_write_on_delete_by_link(long long a1) { long long result; // rax result = a1; *(_WORD *)(a1 + 116) |= 0x80u; return result; }
pagecache_set_write_on_delete_by_link: PUSH RBP MOV RBP,RSP MOV qword ptr [RBP + -0x8],RDI JMP 0x0012fcaa LAB_0012fcaa: JMP 0x0012fcac LAB_0012fcac: JMP 0x0012fcae LAB_0012fcae: JMP 0x0012fcb0 LAB_0012fcb0: JMP 0x0012fcb2 LAB_0012fcb2: MOV RAX,qword ptr [RBP + -0x8] MOVZX ECX,word ptr [RAX + 0x74] OR ECX,0x80 MOV word ...
void pagecache_set_write_on_delete_by_link(long param_1) { *(ushort *)(param_1 + 0x74) = *(ushort *)(param_1 + 0x74) | 0x80; return; }
61,375
inline_mysql_file_seek
eloqsql/include/mysql/psi/mysql_file.h
static inline my_off_t inline_mysql_file_seek( #ifdef HAVE_PSI_FILE_INTERFACE const char *src_file, uint src_line, #endif File file, my_off_t pos, int whence, myf flags) { my_off_t result; #ifdef HAVE_PSI_FILE_INTERFACE struct PSI_file_locker *locker; PSI_file_locker_state state; locker= PSI_FILE_CALL(get_t...
O0
c
inline_mysql_file_seek: pushq %rbp movq %rsp, %rbp subq $0x90, %rsp movq %rdi, -0x10(%rbp) movl %esi, -0x14(%rbp) movl %edx, -0x18(%rbp) movq %rcx, -0x20(%rbp) movl %r8d, -0x24(%rbp) movq %r9, -0x30(%rbp) leaq 0x21d578(%rip), %rax # 0x2cb2a0 movq (%rax), %rax movq 0x158(%rax), %rax movl -0x18(%rbp), %esi leaq -0x88(...
inline_mysql_file_seek_3: push rbp mov rbp, rsp sub rsp, 90h mov [rbp+var_10], rdi mov [rbp+var_14], esi mov [rbp+var_18], edx mov [rbp+var_20], rcx mov [rbp+var_24], r8d mov [rbp+var_30], r9 lea rax, PSI_server mov rax, [rax] mov rax, [rax+158h] mov esi, [rbp+var_18] ...
long long inline_mysql_file_seek_3( long long a1, unsigned int a2, unsigned int a3, long long a4, unsigned int a5, long long a6) { _BYTE v7[72]; // [rsp+8h] [rbp-88h] BYREF long long v8; // [rsp+50h] [rbp-40h] long long v9; // [rsp+58h] [rbp-38h] long long v10; /...
inline_mysql_file_seek: PUSH RBP MOV RBP,RSP SUB RSP,0x90 MOV qword ptr [RBP + -0x10],RDI MOV dword ptr [RBP + -0x14],ESI MOV dword ptr [RBP + -0x18],EDX MOV qword ptr [RBP + -0x20],RCX MOV dword ptr [RBP + -0x24],R8D MOV qword ptr [RBP + -0x30],R9 LEA RAX,[0x3cb2a0] MOV RAX,qword ptr [RAX] MOV RAX,qword ptr [RAX + 0x1...
int8 inline_mysql_file_seek (int8 param_1,int4 param_2,int4 param_3,int8 param_4, int4 param_5,int8 param_6) { int1 local_90 [72]; long local_48; int8 local_40; int8 local_38; int4 local_2c; int8 local_28; int4 local_20; int4 local_1c; int8 local_18; int8 local_10; local_3...
61,376
my_write
eloqsql/mysys/my_write.c
size_t my_write(File Filedes, const uchar *Buffer, size_t Count, myf MyFlags) { size_t writtenbytes, written; uint errors; DBUG_ENTER("my_write"); DBUG_PRINT("my",("fd: %d Buffer: %p Count: %lu MyFlags: %lu", Filedes, Buffer, (ulong) Count, MyFlags)); errors= 0; written= 0; if (!(MyFlags & (MY_WME |...
O3
c
my_write: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movq %rdx, %r15 movl %edi, %r12d xorl %ebx, %ebx movl $0x0, %r13d testb $0x1a, %cl jne 0x2a3c9 leaq 0x38bf02(%rip), %rax # 0x3b62c8 movq (%rax), %r13 testq %r15, %r15 je 0x2a50d orq %rcx, %r13 movl %r12d, %ed...
my_write: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 28h mov r15, rdx mov r12d, edi xor ebx, ebx mov r13d, 0 test cl, 1Ah jnz short loc_2A3C9 lea rax, my_global_flags mov r13, [rax] loc_2A3C9: test r15, r15 jz loc_2A50D or...
long long my_write(unsigned int a1, long long a2, long long a3, long long a4) { long long v5; // rbx long long v6; // r13 long long v7; // r13 long long v8; // rax long long v9; // rcx long long v10; // rbx long long v11; // r14 long long v12; // rax long long v13; // r15 long long v14; // r12 lo...
my_write: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x28 MOV R15,RDX MOV R12D,EDI XOR EBX,EBX MOV R13D,0x0 TEST CL,0x1a JNZ 0x0012a3c9 LEA RAX,[0x4b62c8] MOV R13,qword ptr [RAX] LAB_0012a3c9: TEST R15,R15 JZ 0x0012a50d OR R13,RCX MOV EDI,R12D MOV qword ptr [RBP + -0x40],RSI MOV RDX,R15 C...
long my_write(int param_1,void *param_2,size_t param_3,ulong param_4) { int iVar1; size_t sVar2; int *piVar3; int *piVar4; long lVar5; int8 uVar6; int4 *puVar7; size_t sVar8; long lVar9; ulong uVar10; ulong uVar11; int iVar12; lVar9 = 0; uVar10 = 0; if ((param_4 & 0x1a) == 0) { uV...
61,377
mysql_stmt_send_long_data_cont
eloqsql/libmariadb/libmariadb/mariadb_async.c
int STDCALL mysql_stmt_send_long_data_cont(my_bool *ret, MYSQL_STMT *stmt, int ready_status) { MK_ASYNC_CONT_BODY( stmt->mysql, TRUE, r_my_bool) }
O3
c
mysql_stmt_send_long_data_cont: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax movq %rsi, %r14 movq %rdi, %rbx movq 0x38(%rsi), %rax movq 0x480(%rax), %rcx movq 0x28(%rcx), %r15 cmpb $0x0, 0x15(%r15) je 0x2cb69 movb $0x1, 0x14(%r15) movl %edx, 0x4(%r15) leaq 0x38(%r15), %rdi callq 0x2d6bf movb $...
mysql_stmt_send_long_data_cont: push rbp mov rbp, rsp push r15 push r14 push rbx push rax mov r14, rsi mov rbx, rdi mov rax, [rsi+38h] mov rcx, [rax+480h] mov r15, [rcx+28h] cmp byte ptr [r15+15h], 0 jz short loc_2CB69 mov byte ptr [r15+14h], 1 mov [r15+4], edx le...
long long mysql_stmt_send_long_data_cont(char *a1, long long a2, unsigned int a3) { long long v3; // rax unsigned int *v4; // r15 int v5; // eax unsigned int v6; // r15d char v7; // al v3 = *(_QWORD *)(a2 + 56); v4 = *(unsigned int **)(*(_QWORD *)(v3 + 1152) + 40LL); if ( *((_BYTE *)v4 + 21) ) { ...
mysql_stmt_send_long_data_cont: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX PUSH RAX MOV R14,RSI MOV RBX,RDI MOV RAX,qword ptr [RSI + 0x38] MOV RCX,qword ptr [RAX + 0x480] MOV R15,qword ptr [RCX + 0x28] CMP byte ptr [R15 + 0x15],0x0 JZ 0x0012cb69 MOV byte ptr [R15 + 0x14],0x1 MOV dword ptr [R15 + 0x4],EDX LEA RDI,[...
int4 mysql_stmt_send_long_data_cont(int1 *param_1,long param_2,int4 param_3) { int4 *puVar1; int1 uVar2; int iVar3; int4 uVar4; puVar1 = *(int4 **)(*(long *)(*(long *)(param_2 + 0x38) + 0x480) + 0x28); if (*(char *)((long)puVar1 + 0x15) == '\0') { *(int4 *)(*(long *)(param_2 + 0x38) + 0x90) = 0x7de...
61,378
minja::SetNode::SetNode(minja::Location const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>...
monkey531[P]llama/common/minja.hpp
SetNode(const Location & location, const std::string & ns, const std::vector<std::string> & vns, std::shared_ptr<Expression> && v) : TemplateNode(location), ns(ns), var_names(vns), value(std::move(v)) {}
O3
cpp
minja::SetNode::SetNode(minja::Location const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>...
_ZN5minja7SetNodeC2ERKNS_8LocationERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS9_SaIS9_EEOSt10shared_ptrINS_10ExpressionEE: push rbp push r15 push r14 push r13 push r12 push rbx push rax mov r14, r8 mov r15, rcx mov rbx, rdi lea r13, _ZTVN5minja12TemplateNodeE...
long long minja::SetNode::SetNode(long long a1, _QWORD *a2, long long a3, _QWORD *a4, __int128 *a5) { long long v7; // rax long long result; // rax __int128 v9; // xmm0 *(_QWORD *)a1 = &`vtable for'minja::TemplateNode + 2; *(_QWORD *)(a1 + 8) = *a2; v7 = a2[1]; *(_QWORD *)(a1 + 16) = v7; if ( v7 ) {...
SetNode: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX PUSH RAX MOV R14,R8 MOV R15,RCX MOV RBX,RDI LEA R13,[0x254fb8] ADD R13,0x10 MOV qword ptr [RDI],R13 MOV RAX,qword ptr [RSI] MOV qword ptr [RDI + 0x8],RAX MOV RAX,qword ptr [RSI + 0x8] MOV qword ptr [RDI + 0x10],RAX TEST RAX,RAX JZ 0x001c179b MOV RCX,qword p...
/* minja::SetNode::SetNode(minja::Location const&, std::__cxx11::string const&, std::vector<std::__cxx11::string, std::allocator<std::__cxx11::string > > const&, std::shared_ptr<minja::Expression>&&) */ void __thiscall minja::SetNode::SetNode (SetNode *this,Location *param_1,string *param_2,vector *pa...
61,379
my_caseup_utf32
eloqsql/strings/ctype-ucs2.c
static size_t my_caseup_utf32(CHARSET_INFO *cs, const char *src, size_t srclen, char *dst, size_t dstlen) { my_wc_t wc; int res; const char *srcend= src + srclen; char *dstend= dst + dstlen; MY_UNICASE_INFO *uni_plane= cs->caseinfo; DBUG_ASSERT(srclen <= dstlen); while ((src < srcend) &...
O3
c
my_caseup_utf32: movq %rdx, %rax cmpq $0x4, %rdx jl 0x4e859 pushq %rbp movq %rsp, %rbp pushq %rbx leaq (%rsi,%rax), %rdx addq %rcx, %r8 movq 0x78(%rdi), %rdi addq $0x4, %rcx movzbl (%rsi), %r9d shll $0x18, %r9d movzbl 0x1(%rsi), %r10d shll $0x10, %r10d orl %r9d, %r10d cmpl $0x10ffff, %r10d # imm = 0x10FFFF ja 0x...
my_caseup_utf32: mov rax, rdx cmp rdx, 4 jl locret_4E859 push rbp mov rbp, rsp push rbx lea rdx, [rsi+rax] add r8, rcx mov rdi, [rdi+78h] add rcx, 4 loc_4E7C8: movzx r9d, byte ptr [rsi] shl r9d, 18h movzx r10d, byte ptr [rsi+1] shl r10d, 10h or r10d, r9d cmp r...
long long my_caseup_utf32(long long a1, unsigned __int8 *a2, long long a3, long long a4, long long a5) { long long result; // rax unsigned long long v6; // rdx unsigned long long v7; // r8 unsigned long long *v8; // rdi unsigned long long v9; // rcx long long v10; // r10 long long v11; // r9 unsigned l...
my_caseup_utf32: MOV RAX,RDX CMP RDX,0x4 JL 0x0014e859 PUSH RBP MOV RBP,RSP PUSH RBX LEA RDX,[RSI + RAX*0x1] ADD R8,RCX MOV RDI,qword ptr [RDI + 0x78] ADD RCX,0x4 LAB_0014e7c8: MOVZX R9D,byte ptr [RSI] SHL R9D,0x18 MOVZX R10D,byte ptr [RSI + 0x1] SHL R10D,0x10 OR R10D,R9D CMP R10D,0x10ffff JA 0x0014e857 MOVZX EBX,byte ...
void my_caseup_utf32(long param_1,byte *param_2,long param_3,long param_4,long param_5) { ulong *puVar1; long lVar2; ulong uVar3; ulong uVar4; byte *pbVar5; byte *pbVar6; uint uVar7; if (3 < param_3) { puVar1 = *(ulong **)(param_1 + 0x78); uVar3 = param_4 + 4; pbVar5 = param_2; whil...
61,380
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
token_type scan() { // initially, skip the BOM if (position.chars_read_total == 0 && !skip_bom()) { error_message = "invalid BOM; must be 0xEF 0xBB 0xBF if given"; return token_type::parse_error; } // read next character and ignore whitespace ...
O2
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_EEEEE4scanEv: push rbp push rbx sub rsp, 18h mov rbx, rdi c...
long long 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::iterat...
scan: PUSH RBP PUSH RBX SUB RSP,0x18 MOV RBX,RDI CMP qword ptr [RDI + 0x20],0x0 JNZ 0x0013e2b0 MOV RDI,RBX CALL 0x0013e3d0 TEST AL,AL JZ 0x0013e305 LAB_0013e2b0: MOV RDI,RBX CALL 0x0013e412 PUSH 0xe POP RBP LAB_0013e2bb: MOV EAX,dword ptr [RBX + 0x14] CMP byte ptr [RBX + 0x10],0x1 JNZ 0x0013e2df CMP EAX,0x2f JNZ 0x0013...
/* 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,381
ma_read
eloqsql/libmariadb/libmariadb/ma_io.c
size_t ma_read(void *ptr, size_t size, size_t nmemb, MA_FILE *file) { size_t s= 0; if (!file) return -1; switch (file->type) { case MA_FILE_LOCAL: s= fread(ptr, size, nmemb, (FILE *)file->ptr); return s; break; #ifdef HAVE_REMOTEIO case MA_FILE_REMOTE: return rio_plugin->methods->mread(pt...
O0
c
ma_read: pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movq %rcx, -0x28(%rbp) movq $0x0, -0x30(%rbp) cmpq $0x0, -0x28(%rbp) jne 0x50f21 movq $-0x1, -0x8(%rbp) jmp 0x50f94 movq -0x28(%rbp), %rax movl (%rax), %eax movl %eax, -0x34(%rbp) subl $0x1, %eax je...
ma_read: push rbp mov rbp, rsp sub rsp, 40h mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov [rbp+var_20], rdx mov [rbp+var_28], rcx mov [rbp+var_30], 0 cmp [rbp+var_28], 0 jnz short loc_50F21 mov [rbp+var_8], 0FFFFFFFFFFFFFFFFh jmp short loc_50F94 loc_50F21: mov rax, [...
long long ma_read(long long a1, long long a2, long long a3, long long a4) { if ( !a4 ) return -1LL; if ( *(_DWORD *)a4 == 1 ) return fread(a1, a2, a3, *(_QWORD *)(a4 + 8)); if ( *(_DWORD *)a4 == 2 ) return (*(long long ( **)(long long, long long, long long, long long))(*(_QWORD *)(rio_plugin + 88LL) ...
ma_read: PUSH RBP MOV RBP,RSP SUB RSP,0x40 MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV qword ptr [RBP + -0x20],RDX MOV qword ptr [RBP + -0x28],RCX MOV qword ptr [RBP + -0x30],0x0 CMP qword ptr [RBP + -0x28],0x0 JNZ 0x00150f21 MOV qword ptr [RBP + -0x8],-0x1 JMP 0x00150f94 LAB_00150f21: MOV RAX,q...
size_t ma_read(void *param_1,size_t param_2,size_t param_3,int *param_4) { size_t local_10; if (param_4 == (int *)0x0) { local_10 = 0xffffffffffffffff; } else if (*param_4 == 1) { local_10 = fread(param_1,param_2,param_3,*(FILE **)(param_4 + 2)); } else if (*param_4 == 2) { local_10 = (**(c...
61,382
safe_hash_free
eloqsql/mysys/my_safehash.c
void safe_hash_free(SAFE_HASH *hash) { /* Test if safe_hash_init succeeded. This will also guard us against multiple free calls. */ if (hash->default_value) { my_hash_free(&hash->hash); mysql_rwlock_destroy(&hash->mutex); hash->default_value=0; } }
O3
c
safe_hash_free: cmpq $0x0, 0x108(%rdi) je 0xa5ed1 pushq %rbp movq %rsp, %rbp pushq %rbx pushq %rax movq %rdi, %rbx addq $0x98, %rdi callq 0x939dd movq 0x90(%rbx), %rdi testq %rdi, %rdi jne 0xa5ed2 movq %rbx, %rdi callq 0xa431c movq $0x0, 0x108(%rbx) addq $0x8, %rsp popq %rbx popq %rbp retq leaq 0x2e0137(%rip), %rax ...
safe_hash_free: cmp qword ptr [rdi+108h], 0 jz short locret_A5ED1 push rbp mov rbp, rsp push rbx push rax mov rbx, rdi add rdi, 98h call my_hash_free mov rdi, [rbx+90h] test rdi, rdi jnz short loc_A5ED2 loc_A5EB8: mov rdi, rbx call my_rw_destroy mov qword ptr [rbx+...
long long safe_hash_free(long long a1) { long long v2; // rdi long long result; // rax if ( *(_QWORD *)(a1 + 264) ) { my_hash_free(a1 + 152); v2 = *(_QWORD *)(a1 + 144); if ( v2 ) { ((void ( *)(long long))PSI_server[11])(v2); *(_QWORD *)(a1 + 144) = 0LL; } result = my_rw_de...
safe_hash_free: CMP qword ptr [RDI + 0x108],0x0 JZ 0x001a5ed1 PUSH RBP MOV RBP,RSP PUSH RBX PUSH RAX MOV RBX,RDI ADD RDI,0x98 CALL 0x001939dd MOV RDI,qword ptr [RBX + 0x90] TEST RDI,RDI JNZ 0x001a5ed2 LAB_001a5eb8: MOV RDI,RBX CALL 0x001a431c MOV qword ptr [RBX + 0x108],0x0 ADD RSP,0x8 POP RBX POP RBP LAB_001a5ed1: RET...
void safe_hash_free(long param_1) { if (*(long *)(param_1 + 0x108) != 0) { my_hash_free(param_1 + 0x98); if (*(long *)(param_1 + 0x90) != 0) { (**(code **)(PSI_server + 0x58))(); *(int8 *)(param_1 + 0x90) = 0; } my_rw_destroy(param_1); *(int8 *)(param_1 + 0x108) = 0; } return; } ...
61,383
mi_rec_pack
eloqsql/storage/myisam/mi_dynrec.c
uint _mi_rec_pack(MI_INFO *info, register uchar *to, register const uchar *from) { uint length,new_length,flag,bit,i; uchar *pos,*end,*startpos,*packpos; enum en_fieldtype type; reg3 MI_COLUMNDEF *rec; MI_BLOB *blob; DBUG_ENTER("_mi_rec_pack"); flag=0 ; bit=1; startpos=packpos=to; t...
O3
c
mi_rec_pack: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movq (%rdi), %rax movl 0x168(%rax), %r13d movl 0x18c(%rax), %ebx addq %rsi, %rbx testl %r13d, %r13d je 0x7a6e1 movq %rdx, %r12 movq 0x230(%rax), %r15 movq 0x48(%rdi), %rdx movq %rsi, -0x58(%rbp) movq %rsi, -0...
_mi_rec_pack: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 48h mov rax, [rdi] mov r13d, [rax+168h] mov ebx, [rax+18Ch] add rbx, rsi test r13d, r13d jz loc_7A6E1 mov r12, rdx mov r15, [rax+230h] mov rdx, [rdi+48h] mov [rbp+v...
long long mi_rec_pack(long long a1, _BYTE *a2, char *a3) { int v3; // r13d _BYTE *v4; // rbx long long v6; // r15 long long v7; // rdx long long v8; // r8 unsigned int v9; // ecx _BYTE *v10; // r13 long long v11; // rbx long long v12; // r14 long long v13; // r14 _BYTE *v14; // rdi long long v1...
_mi_rec_pack: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x48 MOV RAX,qword ptr [RDI] MOV R13D,dword ptr [RAX + 0x168] MOV EBX,dword ptr [RAX + 0x18c] ADD RBX,RSI TEST R13D,R13D JZ 0x0017a6e1 MOV R12,RDX MOV R15,qword ptr [RAX + 0x230] MOV RDX,qword ptr [RDI + 0x48] MOV qword ptr [RBP + -...
int _mi_rec_pack(long *param_1,int1 *param_2,ushort *param_3) { ushort uVar1; ushort *puVar2; int iVar3; uint uVar4; ulong uVar5; byte bVar7; long lVar8; byte *pbVar9; long lVar10; ushort *puVar11; uint uVar12; ulong __n; int iVar13; uint *puVar14; int1 *local_60; uint local_38; uint...
61,384
LefDefParser::defiBlockage::clear()
Efficient-TDP/thirdparty/Limbo/limbo/thirdparty/lefdef/5.8/def/def/defiBlockage.cpp
void defiBlockage::clear() { hasLayer_ = 0; hasPlacement_ = 0; hasComponent_ = 0; hasSlots_ = 0; hasFills_ = 0; hasPushdown_ = 0; hasExceptpgnet_ = 0; hasSoft_ = 0; maxDensity_ = -1; minSpacing_ = -1; width_ = -1; numRectangles_ = 0; mask_ = 0; }
O3
cpp
LefDefParser::defiBlockage::clear(): xorl %eax, %eax movl %eax, (%rdi) movq $0x0, 0x14(%rdi) xorps %xmm0, %xmm0 movups %xmm0, 0x2c(%rdi) movl %eax, 0x3c(%rdi) movabsq $-0x4010000000000000, %rcx # imm = 0xBFF0000000000000 movq %rcx, 0x40(%rdi) movq $-0x1, 0x48(%rdi) movl %eax, 0x50(%rdi) movl %eax, 0x58(%rdi) retq nop
_ZN12LefDefParser12defiBlockage5clearEv: xor eax, eax mov [rdi], eax mov qword ptr [rdi+14h], 0 xorps xmm0, xmm0 movups xmmword ptr [rdi+2Ch], xmm0 mov [rdi+3Ch], eax mov rcx, 0BFF0000000000000h mov [rdi+40h], rcx mov qword ptr [rdi+48h], 0FFFFFFFFFFFFFFFFh mov [rdi+50h], eax mov ...
long long LefDefParser::defiBlockage::clear(LefDefParser::defiBlockage *this) { long long result; // rax result = 0LL; *(_DWORD *)this = 0; *(_QWORD *)((char *)this + 20) = 0LL; *(_OWORD *)((char *)this + 44) = 0LL; *((_DWORD *)this + 15) = 0; *((_QWORD *)this + 8) = 0xBFF0000000000000LL; *((_QWORD *)...
clear: XOR EAX,EAX MOV dword ptr [RDI],EAX MOV qword ptr [RDI + 0x14],0x0 XORPS XMM0,XMM0 MOVUPS xmmword ptr [RDI + 0x2c],XMM0 MOV dword ptr [RDI + 0x3c],EAX MOV RCX,-0x4010000000000000 MOV qword ptr [RDI + 0x40],RCX MOV qword ptr [RDI + 0x48],-0x1 MOV dword ptr [RDI + 0x50],EAX MOV dword ptr [RDI + 0x58],EAX RET
/* LefDefParser::defiBlockage::clear() */ void __thiscall LefDefParser::defiBlockage::clear(defiBlockage *this) { *(int4 *)this = 0; *(int8 *)(this + 0x14) = 0; *(int8 *)(this + 0x2c) = 0; *(int8 *)(this + 0x34) = 0; *(int4 *)(this + 0x3c) = 0; *(int8 *)(this + 0x40) = 0xbff0000000000000; *(int8 *)(thi...
61,385
JS_ValueToAtom
bluesky950520[P]quickjs/quickjs.c
JSAtom JS_ValueToAtom(JSContext *ctx, JSValue val) { JSAtom atom; uint32_t tag; tag = JS_VALUE_GET_TAG(val); if (tag == JS_TAG_INT && (uint32_t)JS_VALUE_GET_INT(val) <= JS_ATOM_MAX_INT) { /* fast path for integer values */ atom = __JS_AtomFromUInt32(JS_VALUE_GET_INT(val)); } ...
O1
c
JS_ValueToAtom: pushq %rbx subq $0x10, %rsp movq %rsi, %rax movq %rsi, (%rsp) testl %edx, %edx sete %cl testl %eax, %eax setns %sil andb %cl, %sil cmpb $0x1, %sil jne 0x2811a orl $0x80000000, %eax # imm = 0x80000000 addq $0x10, %rsp popq %rbx retq movq %rdi, %rbx cmpl $-0x8, %edx jne 0x2813f movq (%rsp), %rdx mov...
JS_ValueToAtom: push rbx sub rsp, 10h mov rax, rsi mov [rsp+18h+var_18], rsi test edx, edx setz cl test eax, eax setns sil and sil, cl cmp sil, 1 jnz short loc_2811A or eax, 80000000h loc_28114: add rsp, 10h pop rbx retn loc_2811A: mov rbx, rdi cmp edx, 0FFFFFF...
long long JS_ValueToAtom(long long a1, long long a2, long long a3) { long long result; // rax long long v4; // rcx unsigned long long v5; // rax long long v6; // rax int v7; // edx long long v8; // rcx unsigned long long v9; // rax unsigned int *v10; // rsi long long v11; // r8 _DWORD *v12; // rcx ...
JS_ValueToAtom: PUSH RBX SUB RSP,0x10 MOV RAX,RSI MOV qword ptr [RSP],RSI TEST EDX,EDX SETZ CL TEST EAX,EAX SETNS SIL AND SIL,CL CMP SIL,0x1 JNZ 0x0012811a OR EAX,0x80000000 LAB_00128114: ADD RSP,0x10 POP RBX RET LAB_0012811a: MOV RBX,RDI CMP EDX,-0x8 JNZ 0x0012813f MOV RDX,qword ptr [RSP] MOV RCX,qword ptr [RBX + 0x18...
ulong JS_ValueToAtom(long param_1,long param_2,int8 param_3) { long lVar1; int *piVar2; long lVar3; uint uVar4; long lVar5; ulong uVar6; uint *puVar7; int1 auVar8 [12]; if ((int)(uint)param_2 < 0 || (int)param_3 != 0) { if ((int)param_3 == -8) { lVar5 = *(long *)(param_1 + 0x18); ...
61,386
JS_ValueToAtom
bluesky950520[P]quickjs/quickjs.c
JSAtom JS_ValueToAtom(JSContext *ctx, JSValue val) { JSAtom atom; uint32_t tag; tag = JS_VALUE_GET_TAG(val); if (tag == JS_TAG_INT && (uint32_t)JS_VALUE_GET_INT(val) <= JS_ATOM_MAX_INT) { /* fast path for integer values */ atom = __JS_AtomFromUInt32(JS_VALUE_GET_INT(val)); } ...
O2
c
JS_ValueToAtom: pushq %rbx testl %edx, %edx sete %al testl %esi, %esi setns %cl andb %al, %cl cmpb $0x1, %cl jne 0x21c88 orl $0x80000000, %esi # imm = 0x80000000 movl %esi, %eax popq %rbx retq movq %rdi, %rbx cmpl $-0x8, %edx jne 0x21cb3 movq 0x18(%rbx), %rbx movq %rbx, %rdi callq 0x21cdf movl %eax, %esi cmpl $0x...
JS_ValueToAtom: push rbx test edx, edx setz al test esi, esi setns cl and cl, al cmp cl, 1 jnz short loc_21C88 or esi, 80000000h loc_21C84: mov eax, esi pop rbx retn loc_21C88: mov rbx, rdi cmp edx, 0FFFFFFF8h jnz short loc_21CB3 mov rbx, [rbx+18h] mov rdi, rbx...
long long JS_ValueToAtom(long long a1, long long a2, int a3) { int atom_index; // esi long long v5; // rbx _DWORD *v6; // rax long long v7; // rax int v8; // edx if ( a3 == 0 && (int)a2 >= 0 ) return (unsigned int)(a2 | 0x80000000); if ( a3 == -8 ) { v5 = *(_QWORD *)(a1 + 24); atom_index =...
JS_ValueToAtom: PUSH RBX TEST EDX,EDX SETZ AL TEST ESI,ESI SETNS CL AND CL,AL CMP CL,0x1 JNZ 0x00121c88 OR ESI,0x80000000 LAB_00121c84: MOV EAX,ESI POP RBX RET LAB_00121c88: MOV RBX,RDI CMP EDX,-0x8 JNZ 0x00121cb3 MOV RBX,qword ptr [RBX + 0x18] MOV RDI,RBX CALL 0x00121cdf MOV ESI,EAX CMP EAX,0xe0 JL 0x00121c84 MOV RAX,...
ulong JS_ValueToAtom(long param_1,uint param_2,int param_3) { long lVar1; int *piVar2; ulong uVar3; int1 auVar4 [12]; if ((int)param_2 < 0 || param_3 != 0) { if (param_3 == -8) { lVar1 = *(long *)(param_1 + 0x18); param_2 = js_get_atom_index(lVar1); if (0xdf < (int)param_2) { ...
61,387
mysql_stmt_free_result_start
eloqsql/libmariadb/libmariadb/mariadb_async.c
int STDCALL mysql_stmt_free_result_start(my_bool *ret, MYSQL_STMT *stmt) { MK_ASYNC_START_BODY( mysql_stmt_free_result, stmt->mysql, { WIN_SET_NONBLOCKING(stmt->mysql) parms.stmt= stmt; }, TRUE, r_my_bool, /* If stmt->mysql==NULL then we will not block so can call directly. */ if (!stmt->mysql) ...
O0
c
mysql_stmt_free_result_start: pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq -0x18(%rbp), %rax cmpq $0x0, 0x38(%rax) jne 0x63018 movq -0x18(%rbp), %rdi callq 0x4efe0 movb %al, %cl movq -0x10(%rbp), %rax movb %cl, (%rax) movl $0x0, -0x4(%rbp) jmp 0x63126 movq -0x18(%rbp), ...
mysql_stmt_free_result_start: push rbp mov rbp, rsp sub rsp, 30h mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov rax, [rbp+var_18] cmp qword ptr [rax+38h], 0 jnz short loc_63018 mov rdi, [rbp+var_18] call mysql_stmt_free_result mov cl, al mov rax, [rbp+var_10] mov [rax]...
long long mysql_stmt_free_result_start(_BYTE *a1, long long a2) { long long v3; // [rsp+0h] [rbp-30h] BYREF _BYTE *v4; // [rsp+8h] [rbp-28h] int v5; // [rsp+14h] [rbp-1Ch] long long v6; // [rsp+18h] [rbp-18h] _BYTE *v7; // [rsp+20h] [rbp-10h] v7 = a1; v6 = a2; if ( *(_QWORD *)(a2 + 56) ) { v4 = ...
mysql_stmt_free_result_start: PUSH RBP MOV RBP,RSP SUB RSP,0x30 MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV RAX,qword ptr [RBP + -0x18] CMP qword ptr [RAX + 0x38],0x0 JNZ 0x00163018 MOV RDI,qword ptr [RBP + -0x18] CALL 0x0014efe0 MOV CL,AL MOV RAX,qword ptr [RBP + -0x10] MOV byte ptr [RAX],CL MO...
int4 mysql_stmt_free_result_start(int1 *param_1,long param_2) { int1 uVar1; long local_38; int4 *local_30; int local_24; long local_20; int1 *local_18; int4 local_c; local_20 = param_2; local_18 = param_1; if (*(long *)(param_2 + 0x38) == 0) { uVar1 = mysql_stmt_free_result(param_2); *l...
61,388
ast_create_begin
tsotchke[P]eshkol/src/frontend/ast/create/ast_create.c
AstNode* ast_create_begin(Arena* arena, AstNode** exprs, size_t expr_count, size_t line, size_t column) { AstNode* node = ast_create_node(arena, AST_BEGIN, line, column); if (!node) { return NULL; } node->as.begin.exprs = exprs; node->as.begin.expr_count = expr_count; return no...
O0
c
ast_create_begin: pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movq %rcx, -0x28(%rbp) movq %r8, -0x30(%rbp) movq -0x10(%rbp), %rdi movq -0x28(%rbp), %rdx movq -0x30(%rbp), %rcx movl $0xa, %esi callq 0x5160 movq %rax, -0x38(%rbp) cmpq $0x0, -0x38(%rbp) ...
ast_create_begin: push rbp mov rbp, rsp sub rsp, 40h mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov [rbp+var_20], rdx mov [rbp+var_28], rcx mov [rbp+var_30], r8 mov rdi, [rbp+var_10] mov rdx, [rbp+var_28] mov rcx, [rbp+var_30] mov esi, 0Ah call ast_create_node mov ...
long long ast_create_begin(long long a1, long long a2, long long a3, long long a4, long long a5) { long long node; // [rsp+8h] [rbp-38h] node = ast_create_node(a1, 10, a4, a5); if ( !node ) return 0LL; *(_QWORD *)(node + 72) = a2; *(_QWORD *)(node + 80) = a3; return node; }
ast_create_begin: PUSH RBP MOV RBP,RSP SUB RSP,0x40 MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV qword ptr [RBP + -0x20],RDX MOV qword ptr [RBP + -0x28],RCX MOV qword ptr [RBP + -0x30],R8 MOV RDI,qword ptr [RBP + -0x10] MOV RDX,qword ptr [RBP + -0x28] MOV RCX,qword ptr [RBP + -0x30] MOV ESI,0xa C...
long ast_create_begin(int8 param_1,int8 param_2,int8 param_3,int8 param_4, int8 param_5) { int8 local_10; local_10 = ast_create_node(param_1,10,param_4,param_5); if (local_10 == 0) { local_10 = 0; } else { *(int8 *)(local_10 + 0x48) = param_2; *(int8 *)(local_10 + 0x50) =...
61,389
ma_crypt_get_index_page_header_space
eloqsql/storage/maria/ma_crypt.c
uint ma_crypt_get_index_page_header_space(MARIA_SHARE *share) { if (share->base.born_transactional) { return CRYPT_SCHEME_1_KEY_VERSION_SIZE; } else { /* if the index is not transactional, we add 7 bytes LSN anyway to be used for counter block */ return LSN_STORE_SIZE + CRYPT_SCHEME_1_K...
O0
c
ma_crypt_get_index_page_header_space: pushq %rbp movq %rsp, %rbp movq %rdi, -0x10(%rbp) movq -0x10(%rbp), %rax cmpb $0x0, 0x44c(%rax) je 0x8a5ce movl $0x4, -0x4(%rbp) jmp 0x8a5d5 movl $0xb, -0x4(%rbp) movl -0x4(%rbp), %eax popq %rbp retq nopw (%rax,%rax)
ma_crypt_get_index_page_header_space: push rbp mov rbp, rsp mov [rbp+var_10], rdi mov rax, [rbp+var_10] cmp byte ptr [rax+44Ch], 0 jz short loc_8A5CE mov [rbp+var_4], 4 jmp short loc_8A5D5 loc_8A5CE: mov [rbp+var_4], 0Bh loc_8A5D5: mov eax, [rbp+var_4] pop rbp retn
long long ma_crypt_get_index_page_header_space(long long a1) { if ( *(_BYTE *)(a1 + 1100) ) return 4; else return 11; }
ma_crypt_get_index_page_header_space: PUSH RBP MOV RBP,RSP MOV qword ptr [RBP + -0x10],RDI MOV RAX,qword ptr [RBP + -0x10] CMP byte ptr [RAX + 0x44c],0x0 JZ 0x0018a5ce MOV dword ptr [RBP + -0x4],0x4 JMP 0x0018a5d5 LAB_0018a5ce: MOV dword ptr [RBP + -0x4],0xb LAB_0018a5d5: MOV EAX,dword ptr [RBP + -0x4] POP RBP RET
int4 ma_crypt_get_index_page_header_space(long param_1) { int4 local_c; if (*(char *)(param_1 + 0x44c) == '\0') { local_c = 0xb; } else { local_c = 4; } return local_c; }
61,390
fnv1a_hash
seiftnesse[P]memoryallocator/src/custom_alloc_util.c
uint32_t fnv1a_hash(const void *data, size_t len) { const uint8_t *bytes = (const uint8_t *) (data); uint32_t hash = 2166136261u; // FNV offset basis for (size_t i = 0; i < len; i++) { hash ^= bytes[i]; hash *= 16777619; // FNV prime } return hash; }
O0
c
fnv1a_hash: pushq %rbp movq %rsp, %rbp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rax movq %rax, -0x18(%rbp) movl $0x811c9dc5, -0x1c(%rbp) # imm = 0x811C9DC5 movq $0x0, -0x28(%rbp) movq -0x28(%rbp), %rax cmpq -0x10(%rbp), %rax jae 0x4147 movq -0x18(%rbp), %rax movq -0x28(%rbp), %rcx movzbl (%rax,%rc...
fnv1a_hash: push rbp mov rbp, rsp mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov rax, [rbp+var_8] mov [rbp+var_18], rax mov [rbp+var_1C], 811C9DC5h mov [rbp+var_28], 0 loc_4113: mov rax, [rbp+var_28] cmp rax, [rbp+var_10] jnb short loc_4147 mov rax, [rbp+var_18] mov rc...
long long fnv1a_hash(long long a1, unsigned long long a2) { unsigned long long i; // [rsp+0h] [rbp-28h] unsigned int v4; // [rsp+Ch] [rbp-1Ch] v4 = -2128831035; for ( i = 0LL; i < a2; ++i ) v4 = 16777619 * (v4 ^ *(unsigned __int8 *)(a1 + i)); return v4; }
fnv1a_hash: PUSH RBP MOV RBP,RSP 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 dword ptr [RBP + -0x1c],0x811c9dc5 MOV qword ptr [RBP + -0x28],0x0 LAB_00104113: MOV RAX,qword ptr [RBP + -0x28] CMP RAX,qword ptr [RBP + -0x10] JNC 0x001041...
uint fnv1a_hash(long param_1,ulong param_2) { int8 local_30; int4 local_24; local_24 = 0x811c9dc5; for (local_30 = 0; local_30 < param_2; local_30 = local_30 + 1) { local_24 = (*(byte *)(param_1 + local_30) ^ local_24) * 0x1000193; } return local_24; }
61,391
my_register_filename
eloqsql/mysys/my_open.c
File my_register_filename(File fd, const char *FileName, enum file_type type_of_file, uint error_message_number, myf MyFlags) { DBUG_ENTER("my_register_filename"); if ((int) fd >= MY_FILE_MIN) { my_atomic_add32_explicit(&my_file_opened, 1, MY_MEMORY_ORDER_RELAXED); if ((uint) fd >= my_file_limit || (...
O3
c
my_register_filename: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movq %r8, %r14 movq %rsi, %r15 testl %edi, %edi js 0x5d7a5 movl %edi, %ebx leaq 0x358f4d(%rip), %rax # 0x3b6694 lock incl (%rax) testl $0x2004, %r14d # imm = 0x2004 jne 0x5d7f4 leaq 0x2d8c22(%r...
my_register_filename: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx push rax mov r14, r8 mov r15, rsi test edi, edi js short loc_5D7A5 mov ebx, edi lea rax, my_file_opened lock inc dword ptr [rax] test r14d, 2004h jnz loc_5D7F4 lea rax, my...
long long my_register_filename(long long a1, const char *a2, int a3, unsigned int a4, __int16 a5) { unsigned int v6; // ebx long long v8; // rax long long v9; // rsi int v11; // ebx unsigned int *v12; // rax if ( (int)a1 < 0 ) { v11 = *(_DWORD *)__errno_location(a1); *(_DWORD *)my_thread_var(a1,...
my_register_filename: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX PUSH RAX MOV R14,R8 MOV R15,RSI TEST EDI,EDI JS 0x0015d7a5 MOV EBX,EDI LEA RAX,[0x4b6694] INC.LOCK dword ptr [RAX] TEST R14D,0x2004 JNZ 0x0015d7f4 LEA RAX,[0x436380] CMP dword ptr [RAX],EBX JBE 0x0015d7f4 MOV R13D,EDX LEA RAX,[0x4b6...
uint my_register_filename (uint param_1,int8 param_2,int4 param_3,int4 param_4,ulong param_5) { int iVar1; int8 uVar2; int *piVar3; int4 *puVar4; if ((int)param_1 < 0) { piVar3 = __errno_location(); iVar1 = *piVar3; piVar3 = (int *)_my_thread_var(); *piVar3 = iVar1; par...
61,392
add_shape_property
bluesky950520[P]quickjs/quickjs.c
static int add_shape_property(JSContext *ctx, JSShape **psh, JSObject *p, JSAtom atom, int prop_flags) { JSRuntime *rt = ctx->rt; JSShape *sh = *psh; JSShapeProperty *pr, *prop; uint32_t hash_mask, new_shape_hash = 0; intptr_t h; /* update the shape hash */ if ...
O1
c
add_shape_property: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movl %r8d, %ebp movl %ecx, %ebx movq %rsi, %r15 movq 0x18(%rdi), %r13 movq (%rsi), %r12 cmpb $0x0, 0x18(%r12) je 0x3c191 movl 0x1c(%r12), %eax xorl %ecx, %ecx subb 0x184(%r13), %cl shrl %cl, %eax shlq $0x3, %rax addq 0x190(...
add_shape_property: push rbp push r15 push r14 push r13 push r12 push rbx push rax mov ebp, r8d mov ebx, ecx mov r15, rsi mov r13, [rdi+18h] mov r12, [rsi] cmp byte ptr [r12+18h], 0 jz short loc_3C191 mov eax, [r12+1Ch] xor ecx, ecx sub cl, [r13+184h] shr ...
long long add_shape_property(long long a1, long long *a2, long long a3, int a4, int a5) { long long v8; // r13 long long v9; // r12 _QWORD *v10; // rax _QWORD *v11; // rcx long long v12; // rsi unsigned int v13; // r14d long long v14; // r14 long long v15; // rax _DWORD *v16; // rcx unsigned long l...
61,393
add_shape_property
bluesky950520[P]quickjs/quickjs.c
static int add_shape_property(JSContext *ctx, JSShape **psh, JSObject *p, JSAtom atom, int prop_flags) { JSRuntime *rt = ctx->rt; JSShape *sh = *psh; JSShapeProperty *pr, *prop; uint32_t hash_mask, new_shape_hash = 0; intptr_t h; /* update the shape hash */ if ...
O2
c
add_shape_property: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x18, %rsp movl %r8d, %ebp movl %ecx, %r14d movq %rdx, 0x10(%rsp) movq %rsi, %r13 movq %rdi, %r15 movq 0x18(%rdi), %rdi movq (%rsi), %rbx cmpb $0x0, 0x18(%rbx) movq %rdi, 0x8(%rsp) je 0x34fc5 movq %rbx, %rsi callq 0x34b2f movl 0...
add_shape_property: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 18h mov ebp, r8d mov r14d, ecx mov [rsp+48h+var_38], rdx mov r13, rsi mov r15, rdi mov rdi, [rdi+18h] mov rbx, [rsi] cmp byte ptr [rbx+18h], 0 mov [rsp+48h+var_40], rdi jz sh...
long long add_shape_property(long long a1, long long *a2, long long a3, int a4, int a5) { long long v8; // rdi long long v9; // rbx int v10; // r12d long long v11; // rax _DWORD *v12; // rcx unsigned long long v13; // r14 unsigned int v14; // ebp v8 = *(_QWORD *)(a1 + 24); v9 = *a2; if ( *(_BYTE *...
add_shape_property: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x18 MOV EBP,R8D MOV R14D,ECX MOV qword ptr [RSP + 0x10],RDX MOV R13,RSI MOV R15,RDI MOV RDI,qword ptr [RDI + 0x18] MOV RBX,qword ptr [RSI] CMP byte ptr [RBX + 0x18],0x0 MOV qword ptr [RSP + 0x8],RDI JZ 0x00134fc5 MOV RSI,RBX CALL 0x00134...
int4 add_shape_property(long param_1,long *param_2,int8 param_3,uint param_4,int param_5) { int8 uVar1; int *piVar2; int iVar3; long lVar4; long lVar5; int iVar6; ulong uVar7; uVar1 = *(int8 *)(param_1 + 0x18); lVar5 = *param_2; if (*(char *)(lVar5 + 0x18) == '\0') { iVar6 = 0; } else {...
61,394
ftxui::ButtonOption::Ascii()
Andrewchistyakov[P]flashcards_lyc/build_O1/_deps/ftxui-src/src/ftxui/component/component_options.cpp
ButtonOption ButtonOption::Ascii() { ButtonOption option; option.transform = [](const EntryState& s) { const std::string t = s.focused ? "[" + s.label + "]" // : " " + s.label + " "; return text(t); }; return option; }
O1
cpp
ftxui::ButtonOption::Ascii(): pushq %rbx subq $0x20, %rsp movq %rdi, %rbx callq 0x36f26 xorps %xmm0, %xmm0 movaps %xmm0, (%rsp) leaq 0xfcd(%rip), %rcx # 0x35a72 movq %rcx, 0x18(%rsp) leaq 0x116d(%rip), %rdx # 0x35c1e movq %rdx, 0x10(%rsp) movups 0x48(%rbx), %xmm1 movaps %xmm1, (%rsp) movups %xmm0, 0x48(%rbx)...
_ZN5ftxui12ButtonOption5AsciiEv: push rbx sub rsp, 20h mov rbx, rdi call _ZN5ftxui12ButtonOptionC2Ev; ftxui::ButtonOption::ButtonOption(void) xorps xmm0, xmm0 movaps [rsp+28h+var_28], xmm0 lea rcx, _ZNSt17_Function_handlerIFSt10shared_ptrIN5ftxui4NodeEERKNS1_10EntryStateEEZNS1_12ButtonOption5AsciiE...
ftxui::ButtonOption * ftxui::ButtonOption::Ascii(ftxui::ButtonOption *this) { long long ( *v1)(); // rax __int128 v3; // [rsp+0h] [rbp-28h] BYREF long long ( *v4)(); // [rsp+10h] [rbp-18h] long long ( *v5)(int, int, int, int, int, int, int, long long, int, int, int, long long, int, void *, int, long long); // [...
Ascii: PUSH RBX SUB RSP,0x20 MOV RBX,RDI CALL 0x00136f26 XORPS XMM0,XMM0 MOVAPS xmmword ptr [RSP],XMM0 LEA RCX,[0x135a72] MOV qword ptr [RSP + 0x18],RCX LEA RDX,[0x135c1e] MOV qword ptr [RSP + 0x10],RDX MOVUPS XMM1,xmmword ptr [RBX + 0x48] MOVAPS xmmword ptr [RSP],XMM1 MOVUPS xmmword ptr [RBX + 0x48],XMM0 MOV RAX,qword...
/* ftxui::ButtonOption::Ascii() */ ButtonOption * __thiscall ftxui::ButtonOption::Ascii(ButtonOption *this) { int8 local_28; int8 uStack_20; code *local_18; int8 local_10; ButtonOption(this); local_28 = *(int8 *)(this + 0x48); uStack_20 = *(int8 *)(this + 0x50); *(int8 *)(this + 0x48) = 0; *(int...
61,395
mp_shl_dec
bluesky950520[P]quickjs/libbf.c
static limb_t mp_shl_dec(limb_t *tab_r, const limb_t *tab, mp_size_t n, limb_t shift, limb_t low) { mp_size_t i; limb_t l, a, q, r; assert(shift >= 1 && shift < LIMB_DIGITS); l = low; for(i = 0; i < n; i++) { a = tab[i]; fast_shr_rem_dec(q, r, a, LIMB_DIGITS...
O0
c
mp_shl_dec: subq $0x58, %rsp movq %rdi, 0x50(%rsp) movq %rsi, 0x48(%rsp) movq %rdx, 0x40(%rsp) movq %rcx, 0x38(%rsp) movq %r8, 0x30(%rsp) movq 0x30(%rsp), %rax movq %rax, 0x20(%rsp) movq $0x0, 0x28(%rsp) movq 0x28(%rsp), %rax cmpq 0x40(%rsp), %rax jge 0xf3bac movq 0x48(%rsp), %rax movq 0x28(%rsp), %rcx movq (%rax,%rcx,...
mp_shl_dec: sub rsp, 58h mov [rsp+58h+var_8], rdi mov [rsp+58h+var_10], rsi mov [rsp+58h+var_18], rdx mov [rsp+58h+var_20], rcx mov [rsp+58h+var_28], r8 mov rax, [rsp+58h+var_28] mov [rsp+58h+var_38], rax mov [rsp+58h+var_30], 0 loc_F3B00: mov rax, [rsp+58h+var_30] cmp rax, [...
long long mp_shl_dec(long long a1, long long a2, long long a3, long long a4, long long a5) { long long v6; // [rsp+10h] [rbp-48h] long long v7; // [rsp+18h] [rbp-40h] long long i; // [rsp+28h] [rbp-30h] for ( i = 0LL; i < a3; ++i ) { v7 = *(_QWORD *)(a2 + 8 * i); v6 = fast_shr_dec(v7, (unsigned int)...
mp_shl_dec: SUB RSP,0x58 MOV qword ptr [RSP + 0x50],RDI MOV qword ptr [RSP + 0x48],RSI MOV qword ptr [RSP + 0x40],RDX MOV qword ptr [RSP + 0x38],RCX MOV qword ptr [RSP + 0x30],R8 MOV RAX,qword ptr [RSP + 0x30] MOV qword ptr [RSP + 0x20],RAX MOV qword ptr [RSP + 0x28],0x0 LAB_001f3b00: MOV RAX,qword ptr [RSP + 0x28] CMP...
long mp_shl_dec(long param_1,long param_2,long param_3,long param_4,long param_5) { long lVar1; long lVar2; long local_38; long local_30; local_38 = param_5; for (local_30 = 0; local_30 < param_3; local_30 = local_30 + 1) { lVar1 = *(long *)(param_2 + local_30 * 8); lVar2 = fast_shr_dec(lVar1,0...
61,396
ma_set_share_data_file_length
eloqsql/storage/maria/ma_state.c
void _ma_set_share_data_file_length(MARIA_SHARE *share, ulonglong new_length) { if (!share->internal_table) mysql_mutex_lock(&share->intern_lock); if (share->state.state.data_file_length < new_length) { share->state.state.data_file_length= new_length; if (new_length >= share->base.max_data_file_length...
O3
c
ma_set_share_data_file_length: pushq %rbp movq %rsp, %rbp pushq %r14 pushq %rbx movq %rsi, %r14 movq %rdi, %rbx cmpb $0x0, 0x7e2(%rdi) jne 0x43848 leaq 0x8f0(%rbx), %rdi cmpq $0x0, 0x930(%rbx) jne 0x4388f callq 0x29200 cmpq %r14, 0x40(%rbx) jae 0x43862 movq %r14, 0x40(%rbx) cmpq %r14, 0x368(%rbx) ja 0x43862 orb $0x10, ...
_ma_set_share_data_file_length: push rbp mov rbp, rsp push r14 push rbx mov r14, rsi mov rbx, rdi cmp byte ptr [rdi+7E2h], 0 jnz short loc_43848 lea rdi, [rbx+8F0h] cmp qword ptr [rbx+930h], 0 jnz short loc_4388F call _pthread_mutex_lock loc_43848: cmp [rbx+40h], r14 jnb ...
long long ma_set_share_data_file_length(long long a1, unsigned long long a2) { long long v3; // rdi long long result; // rax long long v5; // rdi long long v6; // rbx if ( !*(_BYTE *)(a1 + 2018) ) { v3 = a1 + 2288; if ( *(_QWORD *)(a1 + 2352) ) result = psi_mutex_lock(v3, (long long)"/worksp...
_ma_set_share_data_file_length: PUSH RBP MOV RBP,RSP PUSH R14 PUSH RBX MOV R14,RSI MOV RBX,RDI CMP byte ptr [RDI + 0x7e2],0x0 JNZ 0x00143848 LEA RDI,[RBX + 0x8f0] CMP qword ptr [RBX + 0x930],0x0 JNZ 0x0014388f CALL 0x00129200 LAB_00143848: CMP qword ptr [RBX + 0x40],R14 JNC 0x00143862 MOV qword ptr [RBX + 0x40],R14 CMP...
void _ma_set_share_data_file_length(long param_1,ulong param_2) { if (*(char *)(param_1 + 0x7e2) == '\0') { if (*(long *)(param_1 + 0x930) == 0) { pthread_mutex_lock((pthread_mutex_t *)(param_1 + 0x8f0)); } else { psi_mutex_lock((pthread_mutex_t *)(param_1 + 0x8f0), "/wo...
61,397
mysql_stmt_close
eloqsql/libmariadb/libmariadb/mariadb_stmt.c
my_bool STDCALL mysql_stmt_close(MYSQL_STMT *stmt) { my_bool rc= 1; if (stmt) { if (stmt->mysql && stmt->mysql->net.pvio) mysql_stmt_internal_reset(stmt, 1); rc= net_stmt_close(stmt, 1); free(stmt->extension); free(stmt); } return(rc); }
O0
c
mysql_stmt_close: pushq %rbp movq %rsp, %rbp subq $0x10, %rsp movq %rdi, -0x8(%rbp) movb $0x1, -0x9(%rbp) cmpq $0x0, -0x8(%rbp) je 0x29838 movq -0x8(%rbp), %rax cmpq $0x0, 0x38(%rax) je 0x2980e movq -0x8(%rbp), %rax movq 0x38(%rax), %rax cmpq $0x0, (%rax) je 0x2980e movq -0x8(%rbp), %rdi movl $0x1, %esi callq 0x28700 m...
mysql_stmt_close: push rbp mov rbp, rsp sub rsp, 10h mov [rbp+var_8], rdi mov [rbp+var_9], 1 cmp [rbp+var_8], 0 jz short loc_29838 mov rax, [rbp+var_8] cmp qword ptr [rax+38h], 0 jz short loc_2980E mov rax, [rbp+var_8] mov rax, [rax+38h] cmp qword ptr [rax], 0 jz ...
char mysql_stmt_close(long long a1) { char v2; // [rsp+7h] [rbp-9h] v2 = 1; if ( a1 ) { if ( *(_QWORD *)(a1 + 56) && **(_QWORD **)(a1 + 56) ) mysql_stmt_internal_reset(a1, 1); v2 = net_stmt_close(a1, 1); free(*(_QWORD *)(a1 + 832)); free(a1); } return v2; }
mysql_stmt_close: PUSH RBP MOV RBP,RSP SUB RSP,0x10 MOV qword ptr [RBP + -0x8],RDI MOV byte ptr [RBP + -0x9],0x1 CMP qword ptr [RBP + -0x8],0x0 JZ 0x00129838 MOV RAX,qword ptr [RBP + -0x8] CMP qword ptr [RAX + 0x38],0x0 JZ 0x0012980e MOV RAX,qword ptr [RBP + -0x8] MOV RAX,qword ptr [RAX + 0x38] CMP qword ptr [RAX],0x0 ...
int1 mysql_stmt_close(void *param_1) { int1 local_11; local_11 = 1; if (param_1 != (void *)0x0) { if ((*(long *)((long)param_1 + 0x38) != 0) && (**(long **)((long)param_1 + 0x38) != 0)) { mysql_stmt_internal_reset(param_1,1); } local_11 = net_stmt_close(param_1,1); free(*(void **)((long...
61,398
mysql_stmt_close
eloqsql/libmariadb/libmariadb/mariadb_stmt.c
my_bool STDCALL mysql_stmt_close(MYSQL_STMT *stmt) { my_bool rc= 1; if (stmt) { if (stmt->mysql && stmt->mysql->net.pvio) mysql_stmt_internal_reset(stmt, 1); rc= net_stmt_close(stmt, 1); free(stmt->extension); free(stmt); } return(rc); }
O3
c
mysql_stmt_close: testq %rdi, %rdi je 0x20624 pushq %rbp movq %rsp, %rbp pushq %r14 pushq %rbx movq %rdi, %rbx movq 0x38(%rdi), %rax testq %rax, %rax je 0x205f8 cmpq $0x0, (%rax) je 0x205f8 movq %rbx, %rdi movl $0x1, %esi callq 0x1fcd4 movq %rbx, %rdi movl $0x1, %esi callq 0x1fe36 movl %eax, %r14d movq 0x340(%rbx), %rd...
mysql_stmt_close: test rdi, rdi jz short loc_20624 push rbp mov rbp, rsp push r14 push rbx mov rbx, rdi mov rax, [rdi+38h] test rax, rax jz short loc_205F8 cmp qword ptr [rax], 0 jz short loc_205F8 mov rdi, rbx mov esi, 1 call mysql_stmt_internal_reset loc_205F8:...
char mysql_stmt_close(long long a1) { _QWORD *v1; // rax char v2; // r14 if ( !a1 ) return 1; v1 = *(_QWORD **)(a1 + 56); if ( v1 ) { if ( *v1 ) mysql_stmt_internal_reset(a1, 1); } v2 = net_stmt_close(a1, 1); free(*(_QWORD *)(a1 + 832)); free(a1); return v2; }
mysql_stmt_close: TEST RDI,RDI JZ 0x00120624 PUSH RBP MOV RBP,RSP PUSH R14 PUSH RBX MOV RBX,RDI MOV RAX,qword ptr [RDI + 0x38] TEST RAX,RAX JZ 0x001205f8 CMP qword ptr [RAX],0x0 JZ 0x001205f8 MOV RDI,RBX MOV ESI,0x1 CALL 0x0011fcd4 LAB_001205f8: MOV RDI,RBX MOV ESI,0x1 CALL 0x0011fe36 MOV R14D,EAX MOV RDI,qword ptr [RB...
int4 mysql_stmt_close(void *param_1) { int4 uVar1; if (param_1 != (void *)0x0) { if ((*(long **)((long)param_1 + 0x38) != (long *)0x0) && (**(long **)((long)param_1 + 0x38) != 0)) { mysql_stmt_internal_reset(param_1,1); } uVar1 = net_stmt_close(param_1,1); free(*(void **)((long)par...
61,399
Ort::GetAvailableProviders[abi:cxx11]()
Depths-CPP/onnxruntime-linux-x64-gpu-1.19.2/include/onnxruntime_cxx_inline.h
inline std::vector<std::string> GetAvailableProviders() { char** providers; int len; auto release_fn = [&len](char** providers) { // This should always return nullptr. ThrowOnError(GetApi().ReleaseAvailableProviders(providers, len)); }; ThrowOnError(GetApi().GetAvailableProviders(&providers, &len));...
O0
c
Ort::GetAvailableProviders[abi:cxx11](): subq $0x68, %rsp movq %rdi, 0x18(%rsp) movq %rdi, %rax movq %rax, 0x8(%rsp) movq %rdi, 0x60(%rsp) leaq 0x54(%rsp), %rax movq %rax, 0x10(%rsp) movq %rax, 0x48(%rsp) callq 0x2e750 movq 0x10(%rsp), %rsi movq 0x3e8(%rax), %rax leaq 0x58(%rsp), %rdi callq *%rax movq %rax, %rdi callq ...
_ZN3Ort21GetAvailableProvidersB5cxx11Ev: sub rsp, 68h mov [rsp+68h+var_50], rdi mov rax, rdi mov [rsp+68h+var_60], rax mov [rsp+68h+var_8], rdi lea rax, [rsp+68h+var_14] mov [rsp+68h+var_58], rax mov [rsp+68h+var_20], rax call _ZN3Ort6GetApiEv; Ort::GetApi(void) mov rsi, [rsp+68h+...
Ort * Ort::GetAvailableProviders[abi:cxx11](Ort *a1) { long long Api; // rax int v2; // eax int v3; // edx int v4; // ecx int v5; // r8d int v6; // r9d int i; // [rsp+20h] [rbp-48h] _BYTE v9[16]; // [rsp+38h] [rbp-30h] BYREF int *v10; // [rsp+48h] [rbp-20h] BYREF int v11; // [rsp+54h] [rbp-14h] BYRE...
GetAvailableProviders[abi:cxx11]: SUB RSP,0x68 MOV qword ptr [RSP + 0x18],RDI MOV RAX,RDI MOV qword ptr [RSP + 0x8],RAX MOV qword ptr [RSP + 0x60],RDI LEA RAX,[RSP + 0x54] MOV qword ptr [RSP + 0x10],RAX MOV qword ptr [RSP + 0x48],RAX CALL 0x0012e750 MOV RSI,qword ptr [RSP + 0x10] MOV RAX,qword ptr [RAX + 0x3e8] LEA RDI...
/* WARNING: Removing unreachable block (ram,0x0012c3e4) */ /* Ort::GetAvailableProviders[abi:cxx11]() */ Ort * __thiscall Ort::GetAvailableProviders_abi_cxx11_(Ort *this) { long lVar1; OrtStatus *pOVar2; int local_48; unique_ptr<char*,Ort::GetAvailableProviders[abi:cxx11]()::_lambda(char**)_1_> local_30 [16]...