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
25,600
my_uca_copy_page
eloqsql/strings/ctype-uca.c
static my_bool my_uca_copy_page(MY_CHARSET_LOADER *loader, const MY_UCA_WEIGHT_LEVEL *src, MY_UCA_WEIGHT_LEVEL *dst, size_t page) { uint chc, size= 256 * dst->lengths[page] * sizeof(uint16); if (!(dst->weights[page]= (uint16 *) (loader->once_alloc)(size))) retu...
O0
c
my_uca_copy_page: 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 -0x20(%rbp), %rax movq 0x8(%rax), %rax movq -0x28(%rbp), %rcx movzbl (%rax,%rcx), %eax shll $0x8, %eax cltq shlq %rax movl %eax, -0x30(%rbp) movq -0x10(%rbp), %r...
my_uca_copy_page: 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_20] mov rax, [rax+8] mov rcx, [rbp+var_28] movzx eax, byte ptr [rax+rcx] shl eax, 8 cdqe shl rax, 1 mov [rbp...
char my_uca_copy_page(long long a1, long long a2, long long a3, long long a4) { long long v4; // rax unsigned int v6; // [rsp+0h] [rbp-30h] unsigned int i; // [rsp+4h] [rbp-2Ch] v6 = *(unsigned __int8 *)(*(_QWORD *)(a3 + 8) + a4) << 9; v4 = (*(long long ( **)(_QWORD))(a1 + 128))(v6); *(_QWORD *)(*(_QWORD ...
my_uca_copy_page: 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 + -0x20] MOV RAX,qword ptr [RAX + 0x8] MOV RCX,qword ptr [RBP + -0x28] MOVZX EAX,byte ptr [RAX + RCX*0x1] SHL EAX,0x8...
int1 my_uca_copy_page(long param_1,long param_2,long param_3,long param_4) { size_t __n; long lVar1; int4 local_34; int1 local_9; __n = (long)(int)((uint)*(byte *)(*(long *)(param_3 + 8) + param_4) << 8) << 1; lVar1 = (**(code **)(param_1 + 0x80))(__n); *(long *)(*(long *)(param_3 + 0x10) + param_4 *...
25,601
common_lcs(std::vector<int, std::allocator<int>> const&, std::vector<int, std::allocator<int>> const&)
llama.cpp/common/common.cpp
struct llama_context_params common_context_params_to_llama(const common_params & params) { auto cparams = llama_context_default_params(); cparams.n_ctx = params.n_ctx; cparams.n_seq_max = params.n_parallel; cparams.n_batch = params.n_batch; cparams.n_ubatch = ...
O3
cpp
common_lcs(std::vector<int, std::allocator<int>> const&, std::vector<int, std::allocator<int>> const&): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movq (%rdi), %r13 movq 0x8(%rdi), %rbp cmpq %rbp, %r13 je 0xf9f6e movq %rsi, %rbx movq (%rsi), %rax movq 0x8(%rsi), %r15 cmpq %r15, %...
_Z10common_lcsRKSt6vectorIiSaIiEES3_: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 48h mov r13, [rdi] mov rbp, [rdi+8] cmp r13, rbp jz loc_F9F6E mov rbx, rsi mov rax, [rsi] mov r15, [rsi+8] cmp rax, r15 jz loc_F9F6E mov r14, rdi sub r...
unsigned long long common_lcs(long long *a1, long long *a2) { long long v2; // r13 long long v3; // rbp long long v5; // r15 unsigned long long v7; // r15 unsigned long long v8; // r8 long long v9; // r9 unsigned long long v10; // rbp long long v11; // r12 long long v12; // r12 unsigned long long v...
common_lcs: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x48 MOV R13,qword ptr [RDI] MOV RBP,qword ptr [RDI + 0x8] CMP R13,RBP JZ 0x001f9f6e MOV RBX,RSI MOV RAX,qword ptr [RSI] MOV R15,qword ptr [RSI + 0x8] CMP RAX,R15 JZ 0x001f9f6e MOV R14,RDI SUB R15,RAX SAR R15,0x2 INC R15 XOR EAX,EAX LEA RDX,[RSP ...
/* common_lcs(std::vector<int, std::allocator<int> > const&, std::vector<int, std::allocator<int> > const&) */ ulong common_lcs(vector *param_1,vector *param_2) { int iVar1; long lVar2; long lVar3; long lVar4; long lVar5; ulong uVar6; ulong *puVar7; ulong uVar8; ulong *puVar9; ulong uVar10; ...
25,602
qdevtools::QSizeEdit::QSizeEdit(QWidget*)
HuaiminNotSleepYet[P]QDevTools/qdevtools.cpp
explicit QSizeEdit(QWidget* parent = nullptr) : BuiltinEditor(parent) { w_ = new QSpinBox; h_ = new QSpinBox; w_->setRange(std::numeric_limits<int>::min(), std::numeric_limits<int>::max()); h_->setRange(std::numeric_limits<int>::min(), std::numeric_limits<int>::max()); auto...
O0
cpp
qdevtools::QSizeEdit::QSizeEdit(QWidget*): pushq %rbp movq %rsp, %rbp subq $0x160, %rsp # imm = 0x160 movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rdi movq %rdi, -0xd8(%rbp) movq -0x10(%rbp), %rsi callq 0x12680 movq -0xd8(%rbp), %rax leaq 0x1f70b(%rip), %rcx # 0x503c0 movq %rcx, %rdx ad...
_ZN9qdevtools9QSizeEditC2EP7QWidget: push rbp mov rbp, rsp sub rsp, 160h mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov rdi, [rbp+var_8]; this mov [rbp+var_D8], rdi mov rsi, [rbp+var_10]; QWidget * call _ZN9qdevtools13BuiltinEditorC2EP7QWidget; qdevtools::BuiltinEditor::BuiltinEditor(Q...
void qdevtools::QSizeEdit::QSizeEdit(QSpinBox **this, QWidget *a2) { int v2; // eax int v3; // eax QSpinBox *v4; // rsi QLayout *v5; // [rsp+18h] [rbp-148h] QSpinBox *v6; // [rsp+20h] [rbp-140h] QLayout *v7; // [rsp+28h] [rbp-138h] void *v8; // [rsp+30h] [rbp-130h] QLayout *v9; // [rsp+38h] [rbp-128h] ...
QSizeEdit: PUSH RBP MOV RBP,RSP SUB RSP,0x160 MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV RDI,qword ptr [RBP + -0x8] MOV qword ptr [RBP + -0xd8],RDI MOV RSI,qword ptr [RBP + -0x10] CALL 0x00112680 MOV RAX,qword ptr [RBP + -0xd8] LEA RCX,[0x1503c0] MOV RDX,RCX ADD RDX,0x10 MOV qword ptr [RAX],RDX ...
/* qdevtools::QSizeEdit::QSizeEdit(QWidget*) */ void __thiscall qdevtools::QSizeEdit::QSizeEdit(QSizeEdit *this,QWidget *param_1) { int8 uVar1; int iVar2; QSpinBox *pQVar3; QHBoxLayout *pQVar4; QLabel *pQVar5; int1 local_b0 [8]; code *local_a8; int8 uStack_a0; int *local_98; int8 local_90; int1...
25,603
qdevtools::QSizeEdit::QSizeEdit(QWidget*)
HuaiminNotSleepYet[P]QDevTools/qdevtools.cpp
explicit QSizeEdit(QWidget* parent = nullptr) : BuiltinEditor(parent) { w_ = new QSpinBox; h_ = new QSpinBox; w_->setRange(std::numeric_limits<int>::min(), std::numeric_limits<int>::max()); h_->setRange(std::numeric_limits<int>::min(), std::numeric_limits<int>::max()); auto...
O1
cpp
qdevtools::QSizeEdit::QSizeEdit(QWidget*): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movq %rdi, %rbx xorl %edx, %edx callq 0xf760 leaq 0xf0cd(%rip), %rax # 0x2d3f0 leaq 0x10(%rax), %rcx movq %rcx, (%rbx) addq $0x1d0, %rax # imm = 0x1D0 movq %rax, 0x10(%rbx) movl ...
_ZN9qdevtools9QSizeEditC2EP7QWidget: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 48h mov rbx, rdi xor edx, edx call __ZN7QWidgetC2EPS_6QFlagsIN2Qt10WindowTypeEE; QWidget::QWidget(QWidget*,QFlags<Qt::WindowType>) lea rax, _ZTVN9qdevtools9QSizeEditE; `vtable for'qde...
void qdevtools::QSizeEdit::QSizeEdit(QSpinBox **this, QWidget *a2) { QSpinBox *v2; // r14 QSpinBox *v3; // r14 QHBoxLayout *v4; // r14 long long v5; // r12 long long v6; // r12 QSpinBox *v7; // r14 long long v8; // rax QSpinBox *v9; // r14 long long v10; // rax __int128 v11; // [rsp+0h] [rbp-78h] B...
QSizeEdit: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x48 MOV RBX,RDI XOR EDX,EDX CALL 0x0010f760 LEA RAX,[0x12d3f0] LEA RCX,[RAX + 0x10] MOV qword ptr [RBX],RCX ADD RAX,0x1d0 MOV qword ptr [RBX + 0x10],RAX LAB_0011e334: MOV EDI,0x28 CALL 0x0010f910 LAB_0011e33e: MOV R14,RAX MOV RDI,RAX XOR ESI,ESI ...
/* qdevtools::QSizeEdit::QSizeEdit(QWidget*) */ void __thiscall qdevtools::QSizeEdit::QSizeEdit(QSizeEdit *this,QWidget *param_1) { int8 uVar1; int *puVar2; int *puVar3; QSpinBox *pQVar4; QHBoxLayout *this_00; QLabel *pQVar5; int4 *puVar6; int iVar7; QArrayData *local_78; int8 uStack_70; int8 l...
25,604
qdevtools::QSizeEdit::QSizeEdit(QWidget*)
HuaiminNotSleepYet[P]QDevTools/qdevtools.cpp
explicit QSizeEdit(QWidget* parent = nullptr) : BuiltinEditor(parent) { w_ = new QSpinBox; h_ = new QSpinBox; w_->setRange(std::numeric_limits<int>::min(), std::numeric_limits<int>::max()); h_->setRange(std::numeric_limits<int>::min(), std::numeric_limits<int>::max()); auto...
O3
cpp
qdevtools::QSizeEdit::QSizeEdit(QWidget*): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movq %rdi, %rbx xorl %edx, %edx callq 0xf760 leaq 0xe357(%rip), %rax # 0x2c3f0 leaq 0x10(%rax), %rcx movq %rcx, (%rbx) addq $0x1d0, %rax # imm = 0x1D0 movq %rax, 0x10(%rbx) movl ...
_ZN9qdevtools9QSizeEditC2EP7QWidget: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 48h mov rbx, rdi xor edx, edx call __ZN7QWidgetC2EPS_6QFlagsIN2Qt10WindowTypeEE; QWidget::QWidget(QWidget*,QFlags<Qt::WindowType>) lea rax, _ZTVN9qdevtools9QSizeEditE; `vtable for'qde...
void qdevtools::QSizeEdit::QSizeEdit(QSpinBox **this, QWidget *a2) { QSpinBox *v2; // r14 QSpinBox *v3; // r14 QHBoxLayout *v4; // r14 long long v5; // r12 long long v6; // r12 QSpinBox *v7; // r14 long long v8; // rax QSpinBox *v9; // r14 long long v10; // rax __int128 v11; // [rsp+0h] [rbp-78h] B...
QSizeEdit: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x48 MOV RBX,RDI XOR EDX,EDX CALL 0x0010f760 LEA RAX,[0x12c3f0] LEA RCX,[RAX + 0x10] MOV qword ptr [RBX],RCX ADD RAX,0x1d0 MOV qword ptr [RBX + 0x10],RAX LAB_0011e0aa: MOV EDI,0x28 CALL 0x0010f910 LAB_0011e0b4: MOV R14,RAX MOV RDI,RAX XOR ESI,ESI ...
/* qdevtools::QSizeEdit::QSizeEdit(QWidget*) */ void __thiscall qdevtools::QSizeEdit::QSizeEdit(QSizeEdit *this,QWidget *param_1) { int8 uVar1; int *puVar2; int *puVar3; QSpinBox *pQVar4; QHBoxLayout *this_00; QLabel *pQVar5; int4 *puVar6; int iVar7; QArrayData *local_78; int8 uStack_70; int8 l...
25,605
evmone::instr::core::mcopy(evmone::StackTop, long, evmone::ExecutionState&)
corpus-core[P]colibri-stateless/build_O3/_deps/evmone_external-src/lib/evmone/instructions.hpp
inline Result mcopy(StackTop stack, int64_t gas_left, ExecutionState& state) noexcept { const auto& dst_u256 = stack.pop(); const auto& src_u256 = stack.pop(); const auto& size_u256 = stack.pop(); if (!check_memory(gas_left, state.memory, std::max(dst_u256, src_u256), size_u256)) return {EVMC_O...
O3
cpp
evmone::instr::core::mcopy(evmone::StackTop, long, evmone::ExecutionState&): pushq %rbp pushq %r15 pushq %r14 pushq %rbx pushq %rax movq %rsi, %rbx movq %rdi, %r14 leaq -0x20(%rdi), %rax movq 0x10(%rdi), %rsi movq 0x18(%rdi), %rcx movq -0x10(%rdi), %rdi movq -0x8(%r14), %r8 movq %rsi, %r9 xorq %rdi, %r9 movq %rcx, %r10...
_ZN6evmone5instr4core5mcopyENS_8StackTopElRNS_14ExecutionStateE: push rbp push r15 push r14 push rbx push rax mov rbx, rsi mov r14, rdi lea rax, [rdi-20h] mov rsi, [rdi+10h] mov rcx, [rdi+18h] mov rdi, [rdi-10h] mov r8, [r14-8] mov r9, rsi xor r9, rdi mov r10, rcx ...
long long evmone::instr::core::mcopy(const __m128i *a1, char *a2, long long a3) { const __m128i *v5; // rax long long v6; // rsi long long v7; // rcx long long v8; // rdi long long v9; // r8 _QWORD *v10; // r15 bool v11; // cf bool v12; // cl __m128i v13; // xmm1 unsigned int v14; // ebp evmone::...
mcopy: PUSH RBP PUSH R15 PUSH R14 PUSH RBX PUSH RAX MOV RBX,RSI MOV R14,RDI LEA RAX,[RDI + -0x20] MOV RSI,qword ptr [RDI + 0x10] MOV RCX,qword ptr [RDI + 0x18] MOV RDI,qword ptr [RDI + -0x10] MOV R8,qword ptr [R14 + -0x8] MOV R9,RSI XOR R9,RDI MOV R10,RCX XOR R10,R8 OR R10,R9 JNZ 0x001423cd MOV RSI,qword ptr [R14] MOV ...
/* evmone::instr::core::mcopy(evmone::StackTop, long, evmone::ExecutionState&) */ int1 [16] evmone::instr::core::mcopy(ulong *param_1,long param_2,long param_3) { size_t __n; long lVar1; bool bVar2; ulong *puVar3; ulong uVar4; ulong uVar5; int8 uVar6; ulong uVar7; ulong uVar8; int1 auVar9 [16]; ...
25,606
fmt::v11::format_system_error(fmt::v11::detail::buffer<char>&, int, char const*)
zkingston[P]unknot/build_O0/_deps/fmt-src/include/fmt/format-inl.h
FMT_FUNC void format_system_error(detail::buffer<char>& out, int error_code, const char* message) noexcept { FMT_TRY { auto ec = std::error_code(error_code, std::generic_category()); detail::write(appender(out), std::system_error(ec, message).what()); return; }
O0
c
fmt::v11::format_system_error(fmt::v11::detail::buffer<char>&, int, char const*): subq $0xb8, %rsp movq %rdi, 0xb0(%rsp) movl %esi, 0xac(%rsp) movq %rdx, 0xa0(%rsp) movl 0xac(%rsp), %eax movl %eax, 0x24(%rsp) callq 0x12600 movl 0x24(%rsp), %esi movq %rax, %rdx leaq 0x90(%rsp), %rdi callq 0xa74b0 movq 0xb0(%rsp), %rsi l...
_ZN3fmt3v1119format_system_errorERNS0_6detail6bufferIcEEiPKc: sub rsp, 0B8h mov [rsp+0B8h+var_8], rdi mov [rsp+0B8h+var_C], esi mov [rsp+0B8h+var_18], rdx mov eax, [rsp+0B8h+var_C] mov [rsp+0B8h+var_94], eax call __ZNSt3_V216generic_categoryEv; std::_V2::generic_category(void) mov esi, [r...
void fmt::v11::format_system_error(std::_V2 *a1, unsigned int a2, long long a3) { long long v3; // rax long long v4; // rsi _BYTE v5[36]; // [rsp+58h] [rbp-60h] BYREF long long v6; // [rsp+88h] [rbp-30h] BYREF unsigned int v7; // [rsp+90h] [rbp-28h] BYREF long long v8; // [rsp+98h] [rbp-20h] long long v9...
format_system_error: SUB RSP,0xb8 MOV qword ptr [RSP + 0xb0],RDI MOV dword ptr [RSP + 0xac],ESI MOV qword ptr [RSP + 0xa0],RDX MOV EAX,dword ptr [RSP + 0xac] MOV dword ptr [RSP + 0x24],EAX CALL 0x00112600 MOV ESI,dword ptr [RSP + 0x24] MOV RDX,RAX LEA RDI,[RSP + 0x90] CALL 0x001a74b0 MOV RSI,qword ptr [RSP + 0xb0] LAB_...
/* fmt::v11::format_system_error(fmt::v11::detail::buffer<char>&, int, char const*) */ void fmt::v11::format_system_error(buffer *param_1,int param_2,char *param_3) { error_category *peVar1; int8 uVar2; system_error local_60 [48]; int8 local_30; int4 local_28 [2]; int4 uStack_20; int4 uStack_1c; char...
25,607
google::protobuf::StringReplace(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>, std::allocator<char>> const&, bool)
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/stubs/strutil.cc
std::string StringReplace(const std::string &s, const std::string &oldsub, const std::string &newsub, bool replace_all) { std::string ret; StringReplace(s, oldsub, newsub, replace_all, &ret); return ret; }
O3
cpp
google::protobuf::StringReplace(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>, std::allocator<char>> const&, bool): pushq %r15 pushq %r1...
_ZN6google8protobuf13StringReplaceERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_S8_b: push r15 push r14 push rbx mov rbx, rdi lea r15, [rdi+10h] mov [rdi], r15 mov qword ptr [rdi+8], 0 mov byte ptr [rdi+10h], 0 mov rdi, rsi mov rsi, rdx mov rdx, rcx mov ecx, r8d ...
long long google::protobuf::StringReplace(long long a1, _QWORD *a2, _QWORD *a3, _QWORD *a4, char a5) { *(_QWORD *)a1 = a1 + 16; *(_QWORD *)(a1 + 8) = 0LL; *(_BYTE *)(a1 + 16) = 0; google::protobuf::StringReplace(a2, a3, a4, a5, a1); return a1; }
StringReplace: PUSH R15 PUSH R14 PUSH RBX MOV RBX,RDI LEA R15,[RDI + 0x10] MOV qword ptr [RDI],R15 MOV qword ptr [RDI + 0x8],0x0 MOV byte ptr [RDI + 0x10],0x0 LAB_00186ccb: MOV RDI,RSI MOV RSI,RDX MOV RDX,RCX MOV ECX,R8D MOV R8,RBX CALL 0x00186bf8 LAB_00186cdf: MOV RAX,RBX POP RBX POP R14 POP R15 RET
/* google::protobuf::StringReplace(std::__cxx11::string const&, std::__cxx11::string const&, std::__cxx11::string const&, bool) */ protobuf * __thiscall google::protobuf::StringReplace (protobuf *this,string *param_1,string *param_2,string *param_3,bool param_4) { *(protobuf **)this = this + 0x10; *...
25,608
my_uca_scanner_contraction_find
eloqsql/strings/ctype-uca.c
static const MY_CONTRACTION * my_uca_scanner_contraction_find(my_uca_scanner *scanner, my_wc_t *wc, size_t max_char_length) { size_t clen= 1; int flag; const uchar *s, *beg[MY_UCA_MAX_CONTRACTION]; memset((void*) beg, 0, sizeof(beg)); /* Scan all contraction candidates */ fo...
O0
c
my_uca_scanner_contraction_find: pushq %rbp movq %rsp, %rbp subq $0x80, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movq $0x1, -0x28(%rbp) leaq -0x70(%rbp), %rdi xorl %esi, %esi movl $0x30, %edx callq 0x24180 movq -0x10(%rbp), %rax movq 0x8(%rax), %rax movq %rax, -0x38(%rbp) movl $0x4, -0x...
my_uca_scanner_contraction_find: push rbp mov rbp, rsp sub rsp, 80h mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov [rbp+var_20], rdx mov [rbp+var_28], 1 lea rdi, [rbp+var_70] xor esi, esi mov edx, 30h ; '0' call _memset mov rax, [rbp+var_10] mov rax, [rax+8] mov [r...
unsigned long long my_uca_scanner_contraction_find(_QWORD *a1, long long a2, unsigned long long a3) { long long v3; // rdi unsigned long long v4; // rcx unsigned long long v6; // [rsp+0h] [rbp-80h] int v7; // [rsp+Ch] [rbp-74h] _QWORD v8[7]; // [rsp+10h] [rbp-70h] BYREF long long v9; // [rsp+48h] [rbp-38h]...
my_uca_scanner_contraction_find: PUSH RBP MOV RBP,RSP SUB RSP,0x80 MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV qword ptr [RBP + -0x20],RDX MOV qword ptr [RBP + -0x28],0x1 LEA RDI,[RBP + -0x70] XOR ESI,ESI MOV EDX,0x30 CALL 0x00124180 MOV RAX,qword ptr [RBP + -0x10] MOV RAX,qword ptr [RAX + 0x8] ...
long my_uca_scanner_contraction_find(long *param_1,long param_2,ulong param_3) { char cVar1; int iVar2; long lVar3; long local_78 [7]; long local_40; int local_34; ulong local_30; ulong local_28; long local_20; long *local_18; local_30 = 1; local_28 = param_3; local_20 = param_2; local_...
25,609
my_uni_utf8mb3
eloqsql/strings/ctype-utf8.c
static int my_uni_utf8mb3(CHARSET_INFO *cs __attribute__((unused)), my_wc_t wc, uchar *r, uchar *e) { if (wc < 0x80) { if (r >= e) return MY_CS_TOOSMALL; *r= (uchar) wc; return 1; } if (wc < 0x800) { if (r + 2 > e) return MY_CS_TOOSMALLN(2); /* U+0080....
O0
c
my_uni_utf8mb3: pushq %rbp movq %rsp, %rbp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movq %rcx, -0x28(%rbp) cmpq $0x80, -0x18(%rbp) jae 0x6428c movq -0x20(%rbp), %rax cmpq -0x28(%rbp), %rax jb 0x64274 movl $0xffffff9b, -0x4(%rbp) # imm = 0xFFFFFF9B jmp 0x64380 movq -0x18(%rbp), %rax movb %al,...
my_uni_utf8mb3: 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 cmp [rbp+var_18], 80h jnb short loc_6428C mov rax, [rbp+var_20] cmp rax, [rbp+var_28] jb short loc_64274 mov [rbp+var_4], 0FFFFFF9Bh jmp loc_6...
long long my_uni_utf8mb3(long long a1, unsigned long long a2, _BYTE *a3, unsigned long long a4) { if ( a2 >= 0x80 ) { if ( a2 >= 0x800 ) { if ( a2 >= 0x10000 ) { return 0; } else if ( (unsigned long long)(a3 + 3) <= a4 ) { *a3 = (a2 >> 12) | 0xE0; a3[1]...
my_uni_utf8mb3: 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 CMP qword ptr [RBP + -0x18],0x80 JNC 0x0016428c MOV RAX,qword ptr [RBP + -0x20] CMP RAX,qword ptr [RBP + -0x28] JC 0x00164274 MOV dword ptr [RBP + -0x4],0x...
int4 my_uni_utf8mb3(int8 param_1,ulong param_2,byte *param_3,byte *param_4) { byte bVar1; int4 local_c; bVar1 = (byte)param_2; if (param_2 < 0x80) { if (param_3 < param_4) { *param_3 = bVar1; local_c = 1; } else { local_c = 0xffffff9b; } } else if (param_2 < 0x800) { ...
25,610
my_strntoull_8bit
eloqsql/strings/ctype-simple.c
ulonglong my_strntoull_8bit(CHARSET_INFO *cs, const char *nptr, size_t l, int base, char **endptr, int *err) { int negative; register ulonglong cutoff; register uint cutlim; register ulonglong i; register const char *s, *e; const char *save; int overflow; *err= 0; /* Initialize error ind...
O3
c
my_strntoull_8bit: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx movl $0x0, (%r9) leaq (%rsi,%rdx), %r11 movq %rsi, %r10 testq %rdx, %rdx jle 0xb52e5 movq 0x40(%rdi), %rax movq %rsi, %r10 movzbl (%r10), %edx testb $0x8, 0x1(%rax,%rdx) je 0xb52e5 incq %r10 cmpq %r11, %r10 jb 0xb52d2 c...
my_strntoull_8bit: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx mov dword ptr [r9], 0 lea r11, [rsi+rdx] mov r10, rsi test rdx, rdx jle short loc_B52E5 mov rax, [rdi+40h] mov r10, rsi loc_B52D2: movzx edx, byte ptr [r10] test byte ptr [rax+rdx+...
long long my_strntoull_8bit( long long a1, unsigned __int8 *a2, long long a3, int a4, unsigned __int8 **a5, _DWORD *a6) { unsigned __int8 *v6; // r11 unsigned __int8 *v7; // r10 unsigned __int8 v8; // di unsigned __int8 *v9; // r10 unsigned long long v10; // ra...
my_strntoull_8bit: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX MOV dword ptr [R9],0x0 LEA R11,[RSI + RDX*0x1] MOV R10,RSI TEST RDX,RDX JLE 0x001b52e5 MOV RAX,qword ptr [RDI + 0x40] MOV R10,RSI LAB_001b52d2: MOVZX EDX,byte ptr [R10] TEST byte ptr [RAX + RDX*0x1 + 0x1],0x8 JZ 0x001b52e5 INC R10 CMP ...
ulong my_strntoull_8bit(long param_1,byte *param_2,long param_3,int param_4,ulong *param_5, int4 *param_6) { byte bVar1; byte bVar2; int1 auVar3 [16]; int1 auVar4 [16]; ulong uVar5; ulong uVar6; ulong uVar7; byte *pbVar8; byte *pbVar9; byte bVar10; ulong uVar11; ulong uV...
25,611
void google::protobuf::DescriptorBuilder::AllocateOptions<google::protobuf::MethodDescriptor>(google::protobuf::MethodDescriptor::OptionsType const&, google::protobuf::MethodDescriptor*, int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, google::protobuf::internal::FlatAllocator...
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/descriptor.cc
void DescriptorBuilder::AllocateOptions( const typename DescriptorT::OptionsType& orig_options, DescriptorT* descriptor, int options_field_tag, const std::string& option_name, internal::FlatAllocator& alloc) { std::vector<int> options_path; descriptor->GetLocationPath(&options_path); options_path.push...
O0
cpp
void google::protobuf::DescriptorBuilder::AllocateOptions<google::protobuf::MethodDescriptor>(google::protobuf::MethodDescriptor::OptionsType const&, google::protobuf::MethodDescriptor*, int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, google::protobuf::internal::FlatAllocator...
_ZN6google8protobuf17DescriptorBuilder15AllocateOptionsINS0_16MethodDescriptorEEEvRKNT_11OptionsTypeEPS4_iRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_8internal13FlatAllocatorE: sub rsp, 88h mov [rsp+88h+var_8], rdi mov [rsp+88h+var_10], rsi mov [rsp+88h+var_18], rdx mov [rsp+88h+var_1...
AllocateOptions<google::protobuf::MethodDescriptor>: SUB RSP,0x88 MOV qword ptr [RSP + 0x80],RDI MOV qword ptr [RSP + 0x78],RSI MOV qword ptr [RSP + 0x70],RDX MOV dword ptr [RSP + 0x6c],ECX MOV qword ptr [RSP + 0x60],R8 MOV qword ptr [RSP + 0x58],R9 MOV RAX,qword ptr [RSP + 0x80] MOV qword ptr [RSP + 0x20],RAX LEA RDI,...
/* void google::protobuf::DescriptorBuilder::AllocateOptions<google::protobuf::MethodDescriptor>(google::protobuf::MethodDescriptor::OptionsType const&, google::protobuf::MethodDescriptor*, int, std::__cxx11::string const&, google::protobuf::internal::FlatAllocator&) */ void __thiscall google::protobuf::Des...
25,612
void google::protobuf::DescriptorBuilder::AllocateOptions<google::protobuf::MethodDescriptor>(google::protobuf::MethodDescriptor::OptionsType const&, google::protobuf::MethodDescriptor*, int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, google::protobuf::internal::FlatAllocator...
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/descriptor.cc
void DescriptorBuilder::AllocateOptions( const typename DescriptorT::OptionsType& orig_options, DescriptorT* descriptor, int options_field_tag, const std::string& option_name, internal::FlatAllocator& alloc) { std::vector<int> options_path; descriptor->GetLocationPath(&options_path); options_path.push...
O3
cpp
void google::protobuf::DescriptorBuilder::AllocateOptions<google::protobuf::MethodDescriptor>(google::protobuf::MethodDescriptor::OptionsType const&, google::protobuf::MethodDescriptor*, int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, google::protobuf::internal::FlatAllocator...
_ZN6google8protobuf17DescriptorBuilder15AllocateOptionsINS0_15OneofDescriptorEEEvRKNT_11OptionsTypeEPS4_iRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERNS0_8internal13FlatAllocatorE: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 28h mov r14, r9 mov rbx, r8 mov ...
void google::protobuf::DescriptorBuilder::AllocateOptions<google::protobuf::OneofDescriptor>( long long a1, long long a2, long long a3, int a4, long long a5, long long a6) { long long v11; // rsi int v12; // [rsp+Ch] [rbp-4Ch] BYREF __int128 v13; // [rsp+10h] [rbp-...
AllocateOptions<google::protobuf::OneofDescriptor>: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x28 MOV R14,R9 MOV RBX,R8 MOV EBP,ECX MOV R15,RDX MOV R12,RSI MOV R13,RDI MOV dword ptr [RSP + 0xc],ECX XORPS XMM0,XMM0 LEA RSI,[RSP + 0x10] MOVAPS xmmword ptr [RSI],XMM0 MOV qword ptr [RSI + 0x10],0x0 LAB...
/* void google::protobuf::DescriptorBuilder::AllocateOptions<google::protobuf::OneofDescriptor>(google::protobuf::OneofDescriptor::OptionsType const&, google::protobuf::OneofDescriptor*, int, std::__cxx11::string const&, google::protobuf::internal::FlatAllocator&) */ void __thiscall google::protobuf::Descri...
25,613
process_str_arg
eloqsql/strings/my_vsnprintf.c
static char *process_str_arg(CHARSET_INFO *cs, char *to, const char *end, longlong length_arg, size_t width, char *par, uint print_type, my_bool nice_cut) { int well_formed_error; uint dots= 0; size_t plen, left_len= (size_t) (end - to) + 1, slen=0; my_b...
O3
c
process_str_arg: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movq %r8, %r15 movq %rdi, -0x58(%rbp) movq %rdx, -0x50(%rbp) movq %rdx, %r14 movq %rsi, -0x38(%rbp) subq %rsi, %r14 leaq 0x1(%r14), %rbx movq %rcx, %r13 negq %r13 movq %rcx, -0x40(%rbp) cmovsq %rcx, %r13 ...
process_str_arg: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 48h mov r15, r8 mov [rbp+var_58], rdi mov [rbp+var_50], rdx mov r14, rdx mov [rbp+var_38], rsi sub r14, rsi lea rbx, [r14+1] mov r13, rcx neg r13 mov [rbp+var_40...
long long process_str_arg( long long a1, _BYTE *a2, unsigned long long a3, long long a4, unsigned long long a5, const char *a6, char a7, char a8) { unsigned long long v9; // r14 unsigned long long v10; // rbx long long v11; // r13 const char *v12;...
process_str_arg: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x48 MOV R15,R8 MOV qword ptr [RBP + -0x58],RDI MOV qword ptr [RBP + -0x50],RDX MOV R14,RDX MOV qword ptr [RBP + -0x38],RSI SUB R14,RSI LEA RBX,[R14 + 0x1] MOV R13,RCX NEG R13 MOV qword ptr [RBP + -0x40],RCX CMOVS R13,RCX TEST R9...
int1 * process_str_arg(long param_1,int1 *param_2,int1 *param_3,ulong param_4,ulong param_5, char *param_6,uint param_7,char param_8) { char cVar1; void *pvVar2; uint uVar3; uint uVar4; size_t sVar5; int1 *puVar6; void *__s; long lVar7; char *__string; long lVar8; ulong uVar9; c...
25,614
mi_keydef_write
eloqsql/storage/myisam/mi_open.c
uint mi_keydef_write(File file, MI_KEYDEF *keydef) { uchar buff[MI_KEYDEF_SIZE]; uchar *ptr=buff; *ptr++ = (uchar) keydef->keysegs; *ptr++ = keydef->key_alg; /* Rtree or Btree */ mi_int2store(ptr,keydef->flag); ptr +=2; mi_int2store(ptr,keydef->block_length); ptr +=2; mi_int2store(ptr,keydef->keylengt...
O0
c
mi_keydef_write: pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movq %fs:0x28, %rax movq %rax, -0x8(%rbp) movl %edi, -0x18(%rbp) movq %rsi, -0x20(%rbp) leaq -0x14(%rbp), %rcx movq %rcx, -0x28(%rbp) movq -0x20(%rbp), %rax movb 0x8(%rax), %dl movq -0x28(%rbp), %rax movq %rax, %rsi incq %rsi movq %rsi, -0x28(%rbp) movb %dl, ...
mi_keydef_write: push rbp mov rbp, rsp sub rsp, 40h mov rax, fs:28h mov [rbp+var_8], rax mov [rbp+var_18], edi mov [rbp+var_20], rsi lea rcx, [rbp+var_14] mov [rbp+var_28], rcx mov rax, [rbp+var_20] mov dl, [rax+8] mov rax, [rbp+var_28] mov rsi, rax inc rsi mov ...
_BOOL8 mi_keydef_write(unsigned int a1, long long a2) { __int16 v2; // kr00_2 __int16 v3; // kr02_2 __int16 v4; // kr04_2 __int16 v5; // kr06_2 __int16 v6; // kr08_2 _BYTE v8[12]; // [rsp+2Ch] [rbp-14h] BYREF unsigned long long v9; // [rsp+38h] [rbp-8h] v9 = __readfsqword(0x28u); v8[0] = *(_BYTE *)(...
mi_keydef_write: PUSH RBP MOV RBP,RSP SUB RSP,0x40 MOV RAX,qword ptr FS:[0x28] MOV qword ptr [RBP + -0x8],RAX MOV dword ptr [RBP + -0x18],EDI MOV qword ptr [RBP + -0x20],RSI LEA RCX,[RBP + -0x14] MOV qword ptr [RBP + -0x28],RCX MOV RAX,qword ptr [RBP + -0x20] MOV DL,byte ptr [RAX + 0x8] MOV RAX,qword ptr [RBP + -0x28] ...
bool mi_keydef_write(int4 param_1,long param_2) { long lVar1; long in_FS_OFFSET; int1 local_44; int1 uStack_43; int1 local_40; int1 uStack_3f; int1 local_3c; int1 uStack_3b; int1 local_38; int1 uStack_37; int1 local_34; int1 uStack_33; int1 local_1c; int1 local_1b; int1 local_1a; int1 ...
25,615
JS_ToCStringLen2
bluesky950520[P]quickjs/quickjs.c
const char *JS_ToCStringLen2(JSContext *ctx, size_t *plen, JSValue val1, BOOL cesu8) { JSValue val; JSString *str, *str_new; int pos, len, c, c1; JSObject *p; uint8_t *q; if (JS_VALUE_GET_TAG(val1) == JS_TAG_STRING) { val = js_dup(val1); goto go; } val = JS_ToString(ctx...
O3
c
JS_ToCStringLen2: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movl %r8d, %ebx movq %rcx, %rbp movq %rdx, %r12 movq %rsi, %r14 cmpl $-0x7, %ebp jne 0x2073f incl (%r12) movq %r12, %r13 jmp 0x207ab movq %rdi, %r15 movq %r12, %rsi movq %rbp, %rdx xorl %ecx, %ecx callq 0x27518 cmpl $0x...
JS_ToCStringLen2: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 28h mov ebx, r8d mov rbp, rcx mov r12, rdx mov r14, rsi cmp ebp, 0FFFFFFF9h jnz short loc_2073F inc dword ptr [r12] mov r13, r12 jmp short loc_207AB loc_2073F: mov r15, rdi mov ...
int * JS_ToCStringLen2(long long a1, long long *a2, _DWORD *a3, long long a4, int a5) { unsigned int v6; // ebp _DWORD *v7; // r12 long long *v8; // r14 int *v9; // r13 long long v10; // rax unsigned int v11; // edx int *PropertyInternal2; // rax unsigned int v13; // edx long long v14; // rax int v1...
JS_ToCStringLen2: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x28 MOV EBX,R8D MOV RBP,RCX MOV R12,RDX MOV R14,RSI CMP EBP,-0x7 JNZ 0x0012073f INC dword ptr [R12] MOV R13,R12 JMP 0x001207ab LAB_0012073f: MOV R15,RDI MOV RSI,R12 MOV RDX,RBP XOR ECX,ECX CALL 0x00127518 CMP EDX,0x6 JNZ 0x0012079f CMP EBP...
int * JS_ToCStringLen2(long param_1,ulong *param_2,int *param_3,int8 param_4,int param_5) { byte bVar1; ushort uVar2; int8 uVar3; int1 auVar4 [12]; long lVar5; long lVar6; uint uVar7; ulong uVar8; byte *pbVar9; byte *pbVar10; byte bVar11; int iVar12; uint uVar13; int *piVar14; int *piVar...
25,616
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 0x28286 movl %esi, %r14d movq %rdi, %rbx testl %esi, %esi je 0x28291 decl %r14d xorl %r15d, %r15d movq (%rbx,%r15,8), %rdi movl %r14d, %esi callq 0x2824a 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_28286 mov r14d, esi mov rbx, rdi test esi, esi jz short loc_28291 dec r14d xor r15d, r15d loc_28269: 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 0x00128286 MOV R14D,ESI MOV RBX,RDI TEST ESI,ESI JZ 0x00128291 DEC R14D XOR R15D,R15D LAB_00128269: MOV RDI,qword ptr [RBX + R15*0x8] MOV ESI,R14D CALL 0x0012824a INC R15 CMP R15,0x100 JNZ 0x00128269 MOV RDI,RBX JMP 0x00128295 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...
25,617
LefDefParser::lefiCorrectionEdge::addResistance()
Efficient-TDP/thirdparty/Limbo/limbo/thirdparty/lefdef/5.8/lef/lef/lefiCrossTalk.cpp
void lefiCorrectionEdge::addResistance() { lefiCorrectionResistance *r; if (numResistances_ == resistancesAllocated_) { int max; lefiCorrectionResistance **ne; int i; if (resistancesAllocated_ == 0) { max = resistanc...
O3
cpp
LefDefParser::lefiCorrectionEdge::addResistance(): pushq %r15 pushq %r14 pushq %rbx movq %rdi, %rbx movl 0x8(%rdi), %eax cmpl 0xc(%rdi), %eax jne 0x57491 leal (%rax,%rax), %ecx testl %eax, %eax movl $0x2, %eax cmovnel %ecx, %eax movl %eax, 0xc(%rbx) movslq %eax, %r15 leaq (,%r15,8), %rdi callq 0x30c15 movq %rax, %r14 s...
_ZN12LefDefParser18lefiCorrectionEdge13addResistanceEv: push r15 push r14 push rbx mov rbx, rdi mov eax, [rdi+8] cmp eax, [rdi+0Ch] jnz short loc_57491 lea ecx, [rax+rax] test eax, eax mov eax, 2 cmovnz eax, ecx mov [rbx+0Ch], eax movsxd r15, eax lea rdi, ds:0[r15*8]; this ...
long long LefDefParser::lefiCorrectionEdge::addResistance(LefDefParser::lefiCorrectionEdge *this, void *a2) { int v2; // eax int v3; // ecx bool v4; // zf int v5; // eax int v6; // r15d long long v7; // r14 int v8; // r15d long long i; // rcx _QWORD *v10; // r14 long long v11; // rcx long long re...
addResistance: PUSH R15 PUSH R14 PUSH RBX MOV RBX,RDI MOV EAX,dword ptr [RDI + 0x8] CMP EAX,dword ptr [RDI + 0xc] JNZ 0x00157491 LEA ECX,[RAX + RAX*0x1] TEST EAX,EAX MOV EAX,0x2 CMOVNZ EAX,ECX MOV dword ptr [RBX + 0xc],EAX MOVSXD R15,EAX LEA RDI,[R15*0x8] CALL 0x00130c15 MOV R14,RAX SAR R15D,0x1 TEST R15D,R15D JLE 0x00...
/* LefDefParser::lefiCorrectionEdge::addResistance() */ void LefDefParser::lefiCorrectionEdge::addResistance(void) { int iVar1; int iVar2; long lVar3; int8 *puVar4; int8 uVar5; ulong uVar6; ulong in_RSI; long in_RDI; iVar1 = *(int *)(in_RDI + 8); if (iVar1 == *(int *)(in_RDI + 0xc)) { iVar...
25,618
CLI::App::_parse_single(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>>>>&, bool&)
MikePodsytnik[P]TCRtrie/build_O3/_deps/cli11-src/include/CLI/impl/App_inl.hpp
CLI11_INLINE bool App::_parse_single(std::vector<std::string> &args, bool &positional_only) { bool retval = true; detail::Classifier classifier = positional_only ? detail::Classifier::NONE : _recognize(args.back()); switch(classifier) { case detail::Classifier::POSITIONAL_MARK: args.pop_back(); ...
O3
cpp
CLI::App::_parse_single(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>>>>&, bool&): pushq %rbp pushq %r15 pushq %r14 pushq %rbx subq $0x48, %rsp movq %rdx, %r14 movq %rsi, %r15 movq ...
_ZN3CLI3App13_parse_singleERSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS7_EERb: push rbp push r15 push r14 push rbx sub rsp, 48h mov r14, rdx mov r15, rsi mov rbx, rdi cmp byte ptr [rdx], 0 jz short loc_1E7FE loc_1E7CE: xor ebp, ebp; jumptable 000000000001E...
long long CLI::App::_parse_single(long long a1, long long a2, _BYTE *a3, int a4, int a5, int a6) { unsigned int v6; // ebp unsigned int v9; // eax long long v10; // rax _QWORD *v11; // rdi _QWORD *v12; // rax long long v13; // rax long long v15; // rax _QWORD *v16; // rdi _QWORD *v17; // rax long l...
_parse_single: PUSH RBP PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x48 MOV R14,RDX MOV R15,RSI MOV RBX,RDI CMP byte ptr [RDX],0x0 JZ 0x0011e7fe caseD_0: XOR EBP,EBP MOV RDI,RBX MOV RSI,R15 XOR EDX,EDX CALL 0x0012059c TEST AL,AL JZ 0x0011e8fb MOV BPL,0x1 CMP byte ptr [RBX + 0x29c],0x1 JNZ 0x0011e8fb MOV byte ptr [R14],0x1 JMP ...
/* CLI::App::_parse_single(std::vector<std::__cxx11::string, std::allocator<std::__cxx11::string > >&, bool&) */ ulong __thiscall CLI::App::_parse_single(App *this,vector *param_1,bool *param_2) { long lVar1; char cVar2; int4 uVar3; ulong uVar4; long *plVar5; HorribleError *pHVar6; int8 unaff_RBP; ...
25,619
inline_mysql_file_pwrite
eloqsql/include/mysql/psi/mysql_file.h
static inline size_t inline_mysql_file_pwrite( #ifdef HAVE_PSI_FILE_INTERFACE const char *src_file, uint src_line, #endif File file, const uchar *buffer, size_t count, my_off_t offset, myf flags) { size_t result; #ifdef HAVE_PSI_FILE_INTERFACE struct PSI_file_locker *locker; PSI_file_locker_state state; siz...
O0
c
inline_mysql_file_pwrite: pushq %rbp movq %rsp, %rbp subq $0xa0, %rsp movq 0x10(%rbp), %rax movq %rdi, -0x10(%rbp) movl %esi, -0x14(%rbp) movl %edx, -0x18(%rbp) movq %rcx, -0x20(%rbp) movq %r8, -0x28(%rbp) movq %r9, -0x30(%rbp) leaq 0x2019ec(%rip), %rax # 0x246648 movq (%rax), %rax movq 0x158(%rax), %rax movl -0x18(...
inline_mysql_file_pwrite_1: push rbp mov rbp, rsp sub rsp, 0A0h mov rax, [rbp+arg_0] mov [rbp+var_10], rdi mov [rbp+var_14], esi mov [rbp+var_18], edx mov [rbp+var_20], rcx mov [rbp+var_28], r8 mov [rbp+var_30], r9 lea rax, PSI_server mov rax, [rax] mov rax, [rax+158h]...
long long inline_mysql_file_pwrite_1( long long a1, unsigned int a2, unsigned int a3, long long a4, long long a5, long long a6, long long a7) { long long v8; // [rsp+0h] [rbp-A0h] long long v9; // [rsp+8h] [rbp-98h] _BYTE v10[72]; // [rsp+18h] [rbp-88h] BYR...
inline_mysql_file_pwrite: PUSH RBP MOV RBP,RSP SUB RSP,0xa0 MOV RAX,qword ptr [RBP + 0x10] 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 qword ptr [RBP + -0x28],R8 MOV qword ptr [RBP + -0x30],R9 LEA RAX,[0x346648] MOV RAX,qword ptr [R...
long inline_mysql_file_pwrite (int8 param_1,int4 param_2,int4 param_3,int8 param_4, long param_5,int8 param_6,ulong param_7) { long local_a8; long local_a0; long local_98; int1 local_90 [72]; long local_48; long local_40; int8 local_38; long local_30; int8 local_28; i...
25,620
mi_memmap_file
eloqsql/storage/myisam/mi_packrec.c
my_bool _mi_memmap_file(MI_INFO *info) { MYISAM_SHARE *share=info->s; my_bool eom; DBUG_ENTER("mi_memmap_file"); if (!info->s->file_map) { my_off_t data_file_length= share->state.state.data_file_length; if (myisam_mmap_size != SIZE_T_MAX) { mysql_mutex_lock(&THR_LOCK_myisam_mmap); e...
O0
c
mi_memmap_file: pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movq %rdi, -0x10(%rbp) movq -0x10(%rbp), %rax movq (%rax), %rax movq %rax, -0x18(%rbp) movq -0x10(%rbp), %rax movq (%rax), %rax cmpq $0x0, 0x270(%rax) jne 0xbd6b8 movq -0x18(%rbp), %rax movq 0x40(%rax), %rax movq %rax, -0x28(%rbp) leaq 0x202cd9(%rip), %rax ...
_mi_memmap_file: push rbp mov rbp, rsp sub rsp, 30h mov [rbp+var_10], rdi mov rax, [rbp+var_10] mov rax, [rax] mov [rbp+var_18], rax mov rax, [rbp+var_10] mov rax, [rax] cmp qword ptr [rax+270h], 0 jnz loc_BD6B8 mov rax, [rbp+var_18] mov rax, [rax+40h] mov [rbp+var...
char mi_memmap_file(unsigned int *a1) { unsigned long long v1; // rcx unsigned long long v3; // [rsp+8h] [rbp-28h] bool v4; // [rsp+17h] [rbp-19h] _QWORD *v5; // [rsp+18h] [rbp-18h] v5 = *(_QWORD **)a1; if ( *(_QWORD *)(*(_QWORD *)a1 + 624LL) ) goto LABEL_17; v3 = v5[8]; if ( myisam_mmap_size == -...
_mi_memmap_file: PUSH RBP MOV RBP,RSP SUB RSP,0x30 MOV qword ptr [RBP + -0x10],RDI MOV RAX,qword ptr [RBP + -0x10] MOV RAX,qword ptr [RAX] MOV qword ptr [RBP + -0x18],RAX MOV RAX,qword ptr [RBP + -0x10] MOV RAX,qword ptr [RAX] CMP qword ptr [RAX + 0x270],0x0 JNZ 0x001bd6b8 MOV RAX,qword ptr [RBP + -0x18] MOV RAX,qword ...
int1 _mi_memmap_file(long *param_1) { long lVar1; ulong uVar2; bool bVar3; char cVar4; ulong uVar5; lVar1 = *param_1; if (*(long *)(*param_1 + 0x270) == 0) { uVar2 = *(ulong *)(lVar1 + 0x40); if (myisam_mmap_size == -1) { bVar3 = 0xfffffffffffffff8 < uVar2; } else { inline...
25,621
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) }
O3
c
mysql_fetch_row_start_internal: pushq %rbp movq %rsp, %rbp pushq %rbx pushq %rax movq (%rdi), %rdi movq 0x78(%rdi), %rax movq 0x480(%rax), %rax movq 0x28(%rax), %rbx callq 0x1ff10 movq %rax, 0x8(%rbx) movl $0x0, (%rbx) addq $0x8, %rsp popq %rbx popq %rbp retq
mysql_fetch_row_start_internal: push rbp mov rbp, rsp push rbx push rax mov rdi, [rdi] mov rax, [rdi+78h] mov rax, [rax+480h] mov rbx, [rax+28h] call mysql_fetch_row mov [rbx+8], rax mov dword ptr [rbx], 0 add rsp, 8 pop rbx pop rbp retn
long long mysql_fetch_row_start_internal(long long *a1) { long long v1; // rdi long long v2; // rbx long long result; // rax v1 = *a1; v2 = *(_QWORD *)(*(_QWORD *)(*(_QWORD *)(v1 + 120) + 1152LL) + 40LL); result = mysql_fetch_row(v1); *(_QWORD *)(v2 + 8) = result; *(_DWORD *)v2 = 0; return result; }...
mysql_fetch_row_start_internal: PUSH RBP MOV RBP,RSP PUSH RBX PUSH RAX MOV RDI,qword ptr [RDI] MOV RAX,qword ptr [RDI + 0x78] MOV RAX,qword ptr [RAX + 0x480] MOV RBX,qword ptr [RAX + 0x28] CALL 0x0011ff10 MOV qword ptr [RBX + 0x8],RAX MOV dword ptr [RBX],0x0 ADD RSP,0x8 POP RBX POP RBP RET
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(); *(int8 *)(puVar1 + 2) = uVar2; *puVar1 = 0; return; }
25,622
nglog::AddLogSink(nglog::LogSink*)
ng-log[P]ng-log/src/logging.cc
void AddLogSink(LogSink* destination) { LogDestination::AddLogSink(destination); }
O1
cpp
nglog::AddLogSink(nglog::LogSink*): pushq %rbx subq $0x10, %rsp movq %rdi, 0x8(%rsp) leaq 0x2452b(%rip), %rdi # 0x2fb58 callq 0x7840 cmpl $0x23, %eax je 0xb69c cmpq $0x0, 0x24511(%rip) # 0x2fb50 jne 0xb660 movl $0x18, %edi callq 0x7530 xorps %xmm0, %xmm0 movups %xmm0, (%rax) movq $0x0, 0x10(%rax) movq %rax, 0x2...
_ZN5nglog10AddLogSinkEPNS_7LogSinkE: push rbx sub rsp, 10h mov [rsp+18h+var_10], rdi lea rdi, _ZN5nglog14LogDestination11sink_mutex_E; nglog::LogDestination::sink_mutex_ call _pthread_rwlock_wrlock cmp eax, 23h ; '#' jz short loc_B69C cmp cs:_ZN5nglog14LogDestination6sinks_E, 0; nglog::Lo...
long long nglog::AddLogSink(nglog *this, nglog::LogSink *a2) { long long v2; // rax long long v3; // rdi nglog **v4; // rsi nglog *v6; // [rsp+8h] [rbp-10h] BYREF v6 = this; if ( (unsigned int)pthread_rwlock_wrlock(&nglog::LogDestination::sink_mutex_) == 35 ) std::__throw_system_error(35); if ( !ngl...
AddLogSink: PUSH RBX SUB RSP,0x10 MOV qword ptr [RSP + 0x8],RDI LEA RDI,[0x12fb58] CALL 0x00107840 CMP EAX,0x23 JZ 0x0010b69c CMP qword ptr [0x0012fb50],0x0 JNZ 0x0010b660 LAB_0010b641: MOV EDI,0x18 CALL 0x00107530 XORPS XMM0,XMM0 MOVUPS xmmword ptr [RAX],XMM0 MOV qword ptr [RAX + 0x10],0x0 MOV qword ptr [0x0012fb50],R...
/* nglog::AddLogSink(nglog::LogSink*) */ void nglog::AddLogSink(LogSink *param_1) { int8 *puVar1; vector<nglog::LogSink*,std::allocator<nglog::LogSink*>> *pvVar2; int iVar3; LogSink *local_10; local_10 = param_1; iVar3 = pthread_rwlock_wrlock((pthread_rwlock_t *)LogDestination::sink_mutex_); if (iVa...
25,623
ImageClearBackground
csit-sgu[P]mit-game-2025-team-tyler/Libraries/raylib/src/rtextures.c
void ImageClearBackground(Image *dst, Color color) { // Security check to avoid program crash if ((dst->data == NULL) || (dst->width == 0) || (dst->height == 0)) return; // Fill in first pixel based on image format ImageDrawPixel(dst, 0, 0, color); unsigned char *pSrcPixel = (unsigned char *)dst->...
O2
c
ImageClearBackground: cmpq $0x0, (%rdi) je 0x84c0f pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx movq %rdi, %rbx cmpl $0x0, 0x8(%rdi) je 0x84c06 cmpl $0x0, 0xc(%rbx) je 0x84c06 movl %esi, %ecx movq %rbx, %rdi xorl %esi, %esi xorl %edx, %edx callq 0x84c10 movq (%rbx), %r14 movl 0x14(%rbx), %edx pushq $0x1 popq ...
ImageClearBackground: cmp qword ptr [rdi], 0 jz short locret_84C0F push r15 push r14 push r13 push r12 push rbx mov rbx, rdi cmp dword ptr [rdi+8], 0 jz short loc_84C06 cmp dword ptr [rbx+0Ch], 0 jz short loc_84C06 mov ecx, esi mov rdi, rbx xor esi, esi xor ...
void ImageClearBackground(long long *a1, unsigned int a2) { long long v2; // r14 long long PixelDataSize; // r15 long long v4; // r12 long long i; // r13 if ( *a1 && *((_DWORD *)a1 + 2) && *((_DWORD *)a1 + 3) ) { ImageDrawPixel(a1, 0LL, 0LL, a2); v2 = *a1; PixelDataSize = (int)GetPixelDataSize...
ImageClearBackground: CMP qword ptr [RDI],0x0 JZ 0x00184c0f PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX MOV RBX,RDI CMP dword ptr [RDI + 0x8],0x0 JZ 0x00184c06 CMP dword ptr [RBX + 0xc],0x0 JZ 0x00184c06 MOV ECX,ESI MOV RDI,RBX XOR ESI,ESI XOR EDX,EDX CALL 0x00184c10 MOV R14,qword ptr [RBX] MOV EDX,dword ptr [RBX + 0x...
void ImageClearBackground(long *param_1,int4 param_2) { void *__src; int iVar1; void *__dest; long lVar2; if (((*param_1 != 0) && ((int)param_1[1] != 0)) && (*(int *)((long)param_1 + 0xc) != 0)) { ImageDrawPixel(param_1,0,0,param_2); __src = (void *)*param_1; iVar1 = GetPixelDataSize(1,1,*(in...
25,624
ImPlot::HelpMarker(char const*)
zkingston[P]unknot/build_O1/_deps/implot-src/implot.cpp
static void HelpMarker(const char* desc) { ImGui::TextDisabled("(?)"); if (ImGui::IsItemHovered()) { ImGui::BeginTooltip(); ImGui::PushTextWrapPos(ImGui::GetFontSize() * 35.0f); ImGui::TextUnformatted(desc); ImGui::PopTextWrapPos(); ImGui::EndTooltip(); } }
O1
cpp
ImPlot::HelpMarker(char const*): pushq %rbx movq %rdi, %rbx leaq 0x1d53ca(%rip), %rdi # 0x29ba24 xorl %eax, %eax callq 0x2569c6 xorl %edi, %edi callq 0x21a2c2 testb %al, %al je 0xc6698 callq 0x22cb07 callq 0x229868 mulss 0x1d3532(%rip), %xmm0 # 0x299bb0 callq 0x22919e movq %rbx, %rdi xorl %esi, %esi callq 0x256802...
_ZN6ImPlotL10HelpMarkerEPKc: push rbx mov rbx, rdi lea rdi, asc_29BA24; "(?)" xor eax, eax call _ZN5ImGui12TextDisabledEPKcz; ImGui::TextDisabled(char const*,...) xor edi, edi; this call _ZN5ImGui13IsItemHoveredEi; ImGui::IsItemHovered(int) test al, al jz short loc_C6698 call _ZN5ImG...
long long ImPlot::HelpMarker(ImPlot *this, const char *a2, float a3) { long long result; // rax const char *v4; // rdx ImGui::TextDisabled((ImGui *)"(?)", a2); result = ImGui::IsItemHovered(0LL, (int)a2); if ( (_BYTE)result ) { ImGui::BeginTooltip(0LL); ImGui::GetFontSize(0LL); ImGui::PushText...
HelpMarker: PUSH RBX MOV RBX,RDI LEA RDI,[0x39ba24] XOR EAX,EAX CALL 0x003569c6 XOR EDI,EDI CALL 0x0031a2c2 TEST AL,AL JZ 0x001c6698 CALL 0x0032cb07 CALL 0x00329868 MULSS XMM0,dword ptr [0x00399bb0] CALL 0x0032919e MOV RDI,RBX XOR ESI,ESI CALL 0x00356802 CALL 0x0032926c POP RBX JMP 0x0032cc9c LAB_001c6698: POP RBX RET
/* ImPlot::HelpMarker(char const*) */ void ImPlot::HelpMarker(char *param_1) { char cVar1; float fVar2; ImGui::TextDisabled("(?)"); cVar1 = ImGui::IsItemHovered(0); if (cVar1 != '\0') { ImGui::BeginTooltip(); fVar2 = (float)ImGui::GetFontSize(); ImGui::PushTextWrapPos(fVar2 * DAT_00399bb0); ...
25,625
str_to_TIME
eloqsql/libmariadb/libmariadb/ma_stmt_codec.c
int str_to_TIME(const char *str, size_t length, MYSQL_TIME *tm) { const char *p = str; const char *end = str + length; int is_time = 0; if (!p) goto error; while (p < end && isspace(*p)) p++; while (p < end && isspace(end[-1])) end--; if (end -p < 5) goto error; if (*p == '-') { ...
O3
c
str_to_TIME: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x18, %rsp movq %rdx, %r10 testq %rdi, %rdi je 0x23ada movq %rsi, %r11 movq %rdi, %r15 movq %rdi, %rbx testq %rsi, %rsi movq %r10, -0x40(%rbp) movq %rsi, %r12 jle 0x23997 leaq (%r15,%r11), %r14 callq 0x134c0 movq %r12, ...
str_to_TIME: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 18h mov r10, rdx test rdi, rdi jz loc_23ADA mov r11, rsi mov r15, rdi mov rbx, rdi test rsi, rsi mov [rbp+var_40], r10 mov r12, rsi jle short loc_23997 lea r14, [...
long long str_to_TIME(_BYTE *a1, long long a2, long long a3) { long long v3; // r10 long long v4; // r11 _BYTE *v5; // r15 unsigned __int8 *v6; // rbx long long *v8; // rax long long v9; // rax long long v10; // rax _BYTE *v11; // rcx long long v12; // r13 signed long long v13; // r14 long long *...
str_to_TIME: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x18 MOV R10,RDX TEST RDI,RDI JZ 0x00123ada MOV R11,RSI MOV R15,RDI MOV RBX,RDI TEST RSI,RSI MOV qword ptr [RBP + -0x40],R10 MOV R12,RSI JLE 0x00123997 LEA R14,[R15 + R11*0x1] CALL 0x001134c0 MOV R11,R12 MOV RAX,qword ptr [RAX] MOV R...
int8 str_to_TIME(char *param_1,long param_2,int *param_3) { char cVar1; long lVar2; int iVar3; ushort **ppuVar4; long lVar5; ulong uVar6; ulong uVar7; char *pcVar8; long lVar9; int iVar10; char *pcVar11; bool bVar12; char *local_40; char *local_38; if (param_1 != (char *)0x0) { pc...
25,626
mi_mempack_get_block_info
eloqsql/storage/myisam/mi_packrec.c
static uchar *_mi_mempack_get_block_info(MI_INFO *myisam, MI_BIT_BUFF *bit_buff, MI_BLOCK_INFO *info, uchar **rec_buff_p, uchar *header) { header+= read_p...
O0
c
mi_mempack_get_block_info: 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 %r8, -0x30(%rbp) movq -0x10(%rbp), %rax movq (%rax), %rax movzbl 0x244(%rax), %edi movq -0x30(%rbp), %rsi movq -0x20(%rbp), %rdx addq $0x18, %rdx callq ...
_mi_mempack_get_block_info: 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 [rbp+var_30], r8 mov rax, [rbp+var_10] mov rax, [rax] movzx edi, byte ptr [rax+244h] mov rsi, [rbp+var_30] mov rdx, ...
unsigned __int8 * mi_mempack_get_block_info( long long a1, long long a2, long long a3, long long *a4, unsigned __int8 *a5) { unsigned __int8 *v6; // [rsp+0h] [rbp-30h] v6 = &a5[(unsigned int)read_pack_length_0(*(unsigned __int8 *)(*(_QWORD *)a1 + 580LL), a5, (_QWORD *)(a3 + ...
_mi_mempack_get_block_info: 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 qword ptr [RBP + -0x30],R8 MOV RAX,qword ptr [RBP + -0x10] MOV RAX,qword ptr [RAX] MOVZX EDI,byte ptr [RAX + 0x244] MOV RSI,qw...
long _mi_mempack_get_block_info(long *param_1,long param_2,long param_3,long *param_4,long param_5) { uint uVar1; long lVar2; long local_38; uVar1 = read_pack_length(*(int1 *)(*param_1 + 0x244),param_5,param_3 + 0x18); local_38 = param_5 + (ulong)uVar1; if (*(int *)(*param_1 + 0x188) != 0) { uVar1 ...
25,627
reset_events_waits_history()
eloqsql/storage/perfschema/pfs_events_waits.cc
void reset_events_waits_history(void) { global_thread_container.apply_all(fct_reset_events_waits_history); }
O3
cpp
reset_events_waits_history(): pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %rbx leaq 0x39e3d8(%rip), %rax # 0x3d2620 movq (%rax), %rcx imulq $0xb0, %rcx, %rsi xorl %edi, %edi leaq 0x39763d(%rip), %r8 # 0x3cb898 movabsq $0x2e8ba2e8ba2e8ba3, %r9 # imm = 0x2E8BA2E8BA2E8BA3 movabsq $0x3fffffffffffffc, %r10...
_Z26reset_events_waits_historyv: push rbp mov rbp, rsp push r15 push r14 push rbx lea rax, events_waits_history_per_thread mov rcx, [rax] imul rsi, rcx, 0B0h xor edi, edi lea r8, global_thread_container mov r9, 2E8BA2E8BA2E8BA3h mov r10, 3FFFFFFFFFFFFFCh movdqa xmm0, cs:xmmwo...
unsigned long long reset_events_waits_history(void) { long long v0; // rcx long long v1; // rsi long long v2; // rdi __m128i si128; // xmm0 __m128i v4; // xmm1 __m128i v5; // xmm2 unsigned long long result; // rax long long v7; // rdx unsigned long long v8; // r11 unsigned long long v9; // rbx lon...
reset_events_waits_history: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH RBX LEA RAX,[0x4d2620] MOV RCX,qword ptr [RAX] IMUL RSI,RCX,0xb0 XOR EDI,EDI LEA R8,[0x4cb898] MOV R9,0x2e8ba2e8ba2e8ba3 MOV R10,0x3fffffffffffffc MOVDQA XMM0,xmmword ptr [0x00185650] MOVDQA XMM1,xmmword ptr [0x00185630] MOVDQA XMM2,xmmword ptr [0x...
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */ /* WARNING: Unknown calling convention -- yet parameter storage is locked */ /* reset_events_waits_history() */ void reset_events_waits_history(void) { long lVar1; int1 auVar2 [16]; int1 auVar3 [16]; int1 auVar4 [16]; long...
25,628
my_fill_utf8mb3_mb
eloqsql/strings/ctype-utf8.c
static void my_fill_utf8mb3_mb(CHARSET_INFO *cs, char *str, size_t length, int fill) { char *end= str + length; char buf[10]; char buflen= my_ci_native_to_mb(cs, (my_wc_t) fill, (uchar*) buf, (uchar*) buf + sizeof(buf)); DBUG_ASSERT(buflen > 0); for ( ; str + buflen <= en...
O0
c
my_fill_utf8mb3_mb: pushq %rbp movq %rsp, %rbp subq $0x50, %rsp movq %fs:0x28, %rax movq %rax, -0x8(%rbp) movq %rdi, -0x20(%rbp) movq %rsi, -0x28(%rbp) movq %rdx, -0x30(%rbp) movl %ecx, -0x34(%rbp) movq -0x28(%rbp), %rax addq -0x30(%rbp), %rax movq %rax, -0x40(%rbp) movq -0x20(%rbp), %rax movq 0xb8(%rax), %rax movq 0xd...
my_fill_utf8mb3_mb: push rbp mov rbp, rsp sub rsp, 50h mov rax, fs:28h mov [rbp+var_8], rax mov [rbp+var_20], rdi mov [rbp+var_28], rsi mov [rbp+var_30], rdx mov [rbp+var_34], ecx mov rax, [rbp+var_28] add rax, [rbp+var_30] mov [rbp+var_40], rax mov rax, [rbp+var_20] m...
unsigned long long my_fill_utf8mb3_mb(long long a1, _BYTE *a2, long long a3, int a4) { _BYTE *v4; // rax char i; // [rsp+Fh] [rbp-41h] unsigned long long v7; // [rsp+10h] [rbp-40h] _BYTE *v8; // [rsp+28h] [rbp-28h] _BYTE v9[10]; // [rsp+3Eh] [rbp-12h] BYREF unsigned long long v10; // [rsp+48h] [rbp-8h] BYR...
my_fill_utf8mb3_mb: PUSH RBP MOV RBP,RSP SUB RSP,0x50 MOV RAX,qword ptr FS:[0x28] MOV qword ptr [RBP + -0x8],RAX MOV qword ptr [RBP + -0x20],RDI MOV qword ptr [RBP + -0x28],RSI MOV qword ptr [RBP + -0x30],RDX MOV dword ptr [RBP + -0x34],ECX MOV RAX,qword ptr [RBP + -0x28] ADD RAX,qword ptr [RBP + -0x30] MOV qword ptr [...
void my_fill_utf8mb3_mb(long param_1,int1 *param_2,long param_3,int param_4) { char cVar1; long in_FS_OFFSET; int1 *local_30; int1 local_1a [10]; long local_10; local_10 = *(long *)(in_FS_OFFSET + 0x28); cVar1 = (**(code **)(*(long *)(param_1 + 0xb8) + 0xd8))(param_1,(long)param_4,local_1a,&local_10)...
25,629
minja::Parser::parseIdentifier()
monkey531[P]llama/common/minja.hpp
std::shared_ptr<VariableExpr> parseIdentifier() { static std::regex ident_regex(R"((?!(?:not|is|and|or|del)\b)[a-zA-Z_]\w*)"); auto location = get_location(); auto ident = consumeToken(ident_regex); if (ident.empty()) return nullptr; return std::make_shared<VariableExpr...
O0
cpp
minja::Parser::parseIdentifier(): subq $0x78, %rsp movq %rdi, (%rsp) movq %rdi, %rax movq %rax, 0x8(%rsp) movq %rdi, 0x70(%rsp) movq %rsi, 0x68(%rsp) movq 0x68(%rsp), %rax movq %rax, 0x10(%rsp) leaq 0x197055(%rip), %rax # 0x2a6420 cmpb $0x0, (%rax) jne 0x10f421 leaq 0x197049(%rip), %rdi # 0x2a6420 callq 0x5a600 c...
_ZN5minja6Parser15parseIdentifierEv: sub rsp, 78h mov [rsp+78h+var_78], rdi mov rax, rdi mov [rsp+78h+var_70], rax mov [rsp+78h+var_8], rdi mov [rsp+78h+var_10], rsi mov rax, [rsp+78h+var_10] mov [rsp+78h+var_68], rax lea rax, _ZGVZN5minja6Parser15parseIdentifierEvE11ident_regexB5cxx...
minja::Parser * minja::Parser::parseIdentifier(minja::Parser *this, long long a2) { int v2; // ecx int v3; // r8d int v4; // r9d minja::Parser *v6; // [rsp+8h] [rbp-70h] _BYTE v7[32]; // [rsp+20h] [rbp-58h] BYREF _BYTE v8[40]; // [rsp+40h] [rbp-38h] BYREF long long v9; // [rsp+68h] [rbp-10h] minja::Pars...
25,630
minja::Parser::parseIdentifier()
monkey531[P]llama/common/minja.hpp
std::shared_ptr<VariableExpr> parseIdentifier() { static std::regex ident_regex(R"((?!(?:not|is|and|or|del)\b)[a-zA-Z_]\w*)"); auto location = get_location(); auto ident = consumeToken(ident_regex); if (ident.empty()) return nullptr; return std::make_shared<VariableExpr...
O2
cpp
minja::Parser::parseIdentifier(): pushq %r14 pushq %rbx subq $0x38, %rsp movq %rsi, %r14 movq %rdi, %rbx leaq 0x9da24(%rip), %rax # 0xff260 movb (%rax), %al testb %al, %al je 0x618a3 movq %rsp, %rdi movq %r14, %rsi callq 0x60c90 leaq 0x9d9ec(%rip), %rdx # 0xff240 leaq 0x18(%rsp), %rdi pushq $0x1 popq %rcx movq ...
_ZN5minja6Parser15parseIdentifierEv: push r14 push rbx sub rsp, 38h mov r14, rsi mov rbx, rdi lea rax, _ZGVZN5minja6Parser15parseIdentifierEvE11ident_regexB5cxx11; `guard variable for'minja::Parser::parseIdentifier(void)::ident_regex mov al, [rax] test al, al jz short loc_618A3 loc_618...
minja::Parser * minja::Parser::parseIdentifier(minja::Parser *this, _QWORD *a2) { long long v3; // [rsp+0h] [rbp-48h] BYREF long long v4; // [rsp+8h] [rbp-40h] BYREF _QWORD v5[6]; // [rsp+18h] [rbp-30h] BYREF if ( !(_BYTE)`guard variable for'minja::Parser::parseIdentifier(void)::ident_regex[abi:cxx11] && _...
parseIdentifier: PUSH R14 PUSH RBX SUB RSP,0x38 MOV R14,RSI MOV RBX,RDI LEA RAX,[0x1ff260] MOV AL,byte ptr [RAX] TEST AL,AL JZ 0x001618a3 LAB_00161842: MOV RDI,RSP MOV RSI,R14 CALL 0x00160c90 LAB_0016184d: LEA RDX,[0x1ff240] LEA RDI,[RSP + 0x18] PUSH 0x1 POP RCX MOV RSI,R14 CALL 0x001610b4 CMP qword ptr [RSP + 0x20],0x...
/* minja::Parser::parseIdentifier() */ void minja::Parser::parseIdentifier(void) { int iVar1; Location *in_RDI; string asStack_48 [8]; __shared_count<(__gnu_cxx::_Lock_policy)2> local_40 [16]; string local_30 [8]; long local_28; if (parseIdentifier()::ident_regex_abi_cxx11_ == '\0') { iVar1 = __...
25,631
stbi__build_huffman
dmazzella[P]pylunasvg/lunasvg/plutovg/source/plutovg-stb-image.h
static int stbi__build_huffman(stbi__huffman *h, int *count) { int i,j,k=0; unsigned int code; // build size list for each symbol (from JPEG spec) for (i=0; i < 16; ++i) { for (j=0; j < count[i]; ++j) { h->size[k++] = (stbi_uc) (i+1); if(k >= 257) return stbi__err("bad size list","Co...
O1
c
stbi__build_huffman: pushq %rbp pushq %r14 pushq %rbx movq %rdi, %rbx leaq 0x500(%rdi), %rax xorl %ecx, %ecx leaq 0xe25e(%rip), %r14 # 0x26805 xorl %edx, %edx cmpl $0x0, (%rsi,%rcx,4) jle 0x185f1 leal 0x1(%rcx), %edi movslq %edx, %r9 cmpl $0x101, %r9d # imm = 0x101 movl $0x100, %r8d # imm = 0...
stbi__build_huffman: push rbp push r14 push rbx mov rbx, rdi lea rax, [rdi+500h] xor ecx, ecx lea r14, aBadSizeList; "bad size list" xor edx, edx loc_185A9: cmp dword ptr [rsi+rcx*4], 0 jle short loc_185F1 lea edi, [rcx+1] movsxd r9, edx cmp r9d, 101h mov r8d, 100h cmov...
long long stbi__build_huffman(long long a1, long long a2) { long long v3; // rcx const char *v4; // r14 int v5; // edx int v6; // r8d int v7; // r8d long long v8; // r10 int v9; // edx long long v10; // rax int v11; // ebp long long v12; // rcx long long v13; // rsi long long result; // rax l...
stbi__build_huffman: PUSH RBP PUSH R14 PUSH RBX MOV RBX,RDI LEA RAX,[RDI + 0x500] XOR ECX,ECX LEA R14,[0x126805] XOR EDX,EDX LAB_001185a9: CMP dword ptr [RSI + RCX*0x4],0x0 JLE 0x001185f1 LEA EDI,[RCX + 0x1] MOVSXD R9,EDX CMP R9D,0x101 MOV R8D,0x100 CMOVGE R8D,R9D MOV R10D,R9D ADD R9,RAX NEG R8D ADD R8,R10 XOR R10D,R10...
int8 stbi__build_huffman(void *param_1,long param_2) { ushort uVar1; ulong uVar2; byte bVar3; uint uVar4; long lVar5; int iVar6; int iVar7; long lVar8; char *pcVar9; long *in_FS_OFFSET; lVar5 = 0; pcVar9 = "bad size list"; iVar6 = 0; do { if (0 < *(int *)(param_2 + lVar5 * 4)) { ...
25,632
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
reference operator[](typename object_t::key_type key) { // implicitly convert null value to an empty object if (is_null()) { m_data.m_type = value_t::object; m_data.m_value.object = create<object_t>(); assert_invariant(); } // operator[] o...
O1
cpp
nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned c...
_ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvEixES9_: push rbp; char push r15; int push r14; __int64 push rbx; int sub rsp, 28h mov rbx, rsi mov r14, rdi cmp byte ptr [rdi], 0 ...
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>::operator[]( long long a1, long long *a2) { long long v2; // rax ...
operator[]: PUSH RBP PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x28 MOV RBX,RSI MOV R14,RDI CMP byte ptr [RDI],0x0 JNZ 0x001ad634 MOV byte ptr [R14],0x1 MOV EDI,0x20 CALL 0x0011b8b0 XORPS XMM0,XMM0 MOVUPS xmmword ptr [RAX],XMM0 MOV qword ptr [RAX + 0x10],0x0 MOV qword ptr [R14 + 0x8],RAX MOV RDI,R14 MOV ESI,0x1 CALL 0x0015980...
/* 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>::operator[](std::__cxx11::strin...
25,633
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
reference operator[](typename object_t::key_type key) { // implicitly convert null value to an empty object if (is_null()) { m_data.m_type = value_t::object; m_data.m_value.object = create<object_t>(); assert_invariant(); } // operator[] o...
O3
cpp
nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned c...
_ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvEixES9_: push rbp; char push r15; int push r14; __int64 push rbx; int sub rsp, 28h mov rbx, rsi mov r14, rdi mov al, [rdi] test ...
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>::operator[]( long long a1, long long *a2) { char v2; // al long ...
operator[]: PUSH RBP PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x28 MOV RBX,RSI MOV R14,RDI MOV AL,byte ptr [RDI] TEST AL,AL JNZ 0x001abcaa MOV byte ptr [R14],0x1 MOV EDI,0x20 CALL 0x0011a8b0 XORPS XMM0,XMM0 MOVUPS xmmword ptr [RAX],XMM0 MOV qword ptr [RAX + 0x10],0x0 MOV qword ptr [R14 + 0x8],RAX MOV RDI,R14 MOV ESI,0x1 CALL...
/* 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>::operator[](std::__cxx11::strin...
25,634
my_strnncollsp_tis620
eloqsql/strings/ctype-tis620.c
static int my_strnncollsp_tis620(CHARSET_INFO * cs __attribute__((unused)), const uchar *a0, size_t a_length, const uchar *b0, size_t b_length) { uchar buf[80], *end, *a, *b, *alloced= NULL; size_t length; int res= 0; a= buf; if ((a_length + b_length +2) > (int) sizeof(buf)) alloced= a= (uchar*...
O0
c
my_strnncollsp_tis620: pushq %rbp movq %rsp, %rbp subq $0xe0, %rsp movq %fs:0x28, %rax movq %rax, -0x8(%rbp) movq %rdi, -0x68(%rbp) movq %rsi, -0x70(%rbp) movq %rdx, -0x78(%rbp) movq %rcx, -0x80(%rbp) movq %r8, -0x88(%rbp) movq $0x0, -0xa8(%rbp) movl $0x0, -0xb4(%rbp) leaq -0x60(%rbp), %rax movq %rax, -0x98(%rbp) movq ...
my_strnncollsp_tis620: push rbp mov rbp, rsp sub rsp, 0E0h mov rax, fs:28h mov [rbp+var_8], rax mov [rbp+var_68], rdi mov [rbp+var_70], rsi mov [rbp+var_78], rdx mov [rbp+var_80], rcx mov [rbp+var_88], r8 mov [rbp+var_A8], 0 mov [rbp+var_B4], 0 lea rax, [rbp+var_60] mo...
long long my_strnncollsp_tis620(long long a1, long long a2, long long a3, long long a4, long long a5) { unsigned __int8 *v5; // rax unsigned __int8 *v6; // rcx int v8; // [rsp+10h] [rbp-D0h] unsigned int v9; // [rsp+14h] [rbp-CCh] unsigned long long v10; // [rsp+18h] [rbp-C8h] unsigned __int8 *v11; // [rsp...
my_strnncollsp_tis620: PUSH RBP MOV RBP,RSP SUB RSP,0xe0 MOV RAX,qword ptr FS:[0x28] MOV qword ptr [RBP + -0x8],RAX MOV qword ptr [RBP + -0x68],RDI MOV qword ptr [RBP + -0x70],RSI MOV qword ptr [RBP + -0x78],RDX MOV qword ptr [RBP + -0x80],RCX MOV qword ptr [RBP + -0x88],R8 MOV qword ptr [RBP + -0xa8],0x0 MOV dword ptr...
int my_strnncollsp_tis620 (int8 param_1,void *param_2,size_t param_3,void *param_4,size_t param_5) { byte *pbVar1; byte *__dest; ulong uVar2; ulong uVar3; byte *pbVar4; long in_FS_OFFSET; int local_d8; int local_d4; ulong local_d0; int local_bc; byte *local_b0; byte *local_a8; ...
25,635
my_strnncollsp_tis620
eloqsql/strings/ctype-tis620.c
static int my_strnncollsp_tis620(CHARSET_INFO * cs __attribute__((unused)), const uchar *a0, size_t a_length, const uchar *b0, size_t b_length) { uchar buf[80], *end, *a, *b, *alloced= NULL; size_t length; int res= 0; a= buf; if ((a_length + b_length +2) > (int) sizeof(buf)) alloced= a= (uchar*...
O3
c
my_strnncollsp_tis620: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x68, %rsp movq %r8, %r14 movq %rcx, -0x90(%rbp) movq %rdx, %r15 movq %rsi, %rbx movq %fs:0x28, %rax movq %rax, -0x30(%rbp) leaq (%rdx,%r8), %rsi addq $0x2, %rsi cmpq $0x51, %rsi jb 0x3f8cc movl $0x8, %edx xor...
my_strnncollsp_tis620: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 68h mov r14, r8 mov [rbp+var_90], rcx mov r15, rdx mov rbx, rsi mov rax, fs:28h mov [rbp+var_30], rax lea rsi, [rdx+r8] add rsi, 2 cmp rsi, 51h ; 'Q' jb s...
long long my_strnncollsp_tis620(long long a1, long long a2, unsigned long long a3, long long a4, unsigned long long a5) { unsigned long long v8; // rsi unsigned __int8 *v9; // r12 unsigned long long v10; // rax unsigned __int8 *v11; // rcx int v12; // r13d int v13; // edx unsigned int v14; // r13d long...
my_strnncollsp_tis620: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x68 MOV R14,R8 MOV qword ptr [RBP + -0x90],RCX MOV R15,RDX MOV RBX,RSI MOV RAX,qword ptr FS:[0x28] MOV qword ptr [RBP + -0x30],RAX LEA RSI,[RDX + R8*0x1] ADD RSI,0x2 CMP RSI,0x51 JC 0x0013f8cc MOV EDX,0x8 XOR EDI,EDI CALL ...
int my_strnncollsp_tis620 (int8 param_1,void *param_2,ulong param_3,void *param_4,ulong param_5) { byte *pbVar1; byte bVar2; byte *__dest; byte *pbVar3; ulong uVar4; int iVar5; long in_FS_OFFSET; byte *local_90; byte local_88 [80]; long local_38; local_38 = *(long *)(in_FS_OFFSE...
25,636
nlohmann::json_abi_v3_11_3::detail::serializer<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::...
monkey531[P]llama/common/json.hpp
void dump_float(number_float_t x) { // NaN / inf if (!std::isfinite(x)) { o->write_characters("null", 4); return; } // If number_float_t is an IEEE-754 single or double precision number, // use the Grisu2 algorithm to produce short numbers whi...
O2
cpp
nlohmann::json_abi_v3_11_3::detail::serializer<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::...
_ZN8nlohmann16json_abi_v3_11_36detail10serializerINS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEEE10dump_floatEd: movq rax, xmm0 btr rax, 3Fh ; '?' mov rcx, 7FF0000000000000h cmp rax, rcx jl _ZN8nlohmann16json_...
long long nlohmann::json_abi_v3_11_3::detail::serializer<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>>::dump_float( _QWORD *a1, ...
dump_float: MOVQ RAX,XMM0 BTR RAX,0x3f MOV RCX,0x7ff0000000000000 CMP RAX,RCX JL 0x00186ca4 MOV RDI,qword ptr [RDI] MOV RAX,qword ptr [RDI] MOV RAX,qword ptr [RAX + 0x8] LEA RSI,[0x1b33c7] PUSH 0x4 POP RDX JMP RAX
/* nlohmann::json_abi_v3_11_3::detail::serializer<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 ...
25,637
nlohmann::json_abi_v3_11_3::detail::serializer<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::...
monkey531[P]llama/common/json.hpp
void dump_float(number_float_t x) { // NaN / inf if (!std::isfinite(x)) { o->write_characters("null", 4); return; } // If number_float_t is an IEEE-754 single or double precision number, // use the Grisu2 algorithm to produce short numbers whi...
O3
cpp
nlohmann::json_abi_v3_11_3::detail::serializer<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::...
_ZN8nlohmann16json_abi_v3_11_36detail10serializerINS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEEE10dump_floatEd: push r14 push rbx push rax mov rbx, rdi movq rax, xmm0 btr rax, 3Fh ; '?' mov rcx, 7FF000000...
long long nlohmann::json_abi_v3_11_3::detail::serializer<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>>::dump_float( _QWORD *a1, ...
dump_float: PUSH R14 PUSH RBX PUSH RAX MOV RBX,RDI MOVQ RAX,XMM0 BTR RAX,0x3f MOV RCX,0x7ff0000000000000 CMP RAX,RCX JL 0x001b663f MOV RDI,qword ptr [RBX] MOV RAX,qword ptr [RDI] MOV RAX,qword ptr [RAX + 0x8] LEA RSI,[0x1ef3d7] MOV EDX,0x4 ADD RSP,0x8 POP RBX POP R14 JMP RAX LAB_001b663f: LEA R14,[RBX + 0x10] LEA RSI,[...
/* nlohmann::json_abi_v3_11_3::detail::serializer<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 ...
25,638
AimRTCodeGenerator::GenNamespaceEndStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&)
aimrt_mujoco_sim/_deps/aimrt-src/src/tools/protoc_plugin_cpp_gen_aimrt_cpp_rpc/main.cc
static std::string GenNamespaceEndStr(const std::string& ns) { std::vector<std::string> namespace_vec = SplitToVec(ns, "."); std::reverse(namespace_vec.begin(), namespace_vec.end()); std::string result; for (const auto& itr : namespace_vec) { result += ("} // namespace " + itr + "\n"); } ...
O0
cpp
AimRTCodeGenerator::GenNamespaceEndStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&): subq $0x108, %rsp # imm = 0x108 movq %rdi, 0x10(%rsp) movq %rdi, %rax movq %rax, 0x18(%rsp) movq %rdi, 0x100(%rsp) movq %rsi, 0xf8(%rsp) movq 0xf8(%rsp), %rax movq %rax, 0x20(%rsp) l...
_ZN18AimRTCodeGenerator18GenNamespaceEndStrERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE: sub rsp, 108h mov [rsp+108h+var_F8], rdi; void * mov rax, rdi mov qword ptr [rsp+108h+var_F0], rax; int mov [rsp+108h+var_8], rdi mov qword ptr [rsp+108h+var_10], rsi mov rax, qword ptr [rsp+1...
void * AimRTCodeGenerator::GenNamespaceEndStr(void *a1, long long a2) { int v2; // ecx int v3; // r8d int v4; // r9d int v6; // [rsp+0h] [rbp-108h] int *v7; // [rsp+8h] [rbp-100h] void *v8; // [rsp+10h] [rbp-F8h] int v9[2]; // [rsp+18h] [rbp-F0h] int v10; // [rsp+20h] [rbp-E8h] int *v11; // [rsp+28h] ...
GenNamespaceEndStr: SUB RSP,0x108 MOV qword ptr [RSP + 0x10],RDI MOV RAX,RDI MOV qword ptr [RSP + 0x18],RAX MOV qword ptr [RSP + 0x100],RDI MOV qword ptr [RSP + 0xf8],RSI MOV RAX,qword ptr [RSP + 0xf8] MOV qword ptr [RSP + 0x20],RAX LEA RDI,[RSP + 0xbf] MOV qword ptr [RSP + 0x28],RDI CALL 0x00113760 MOV RDX,qword ptr [...
/* WARNING: Removing unreachable block (ram,0x00116105) */ /* AimRTCodeGenerator::GenNamespaceEndStr(std::__cxx11::string const&) */ AimRTCodeGenerator * __thiscall AimRTCodeGenerator::GenNamespaceEndStr(AimRTCodeGenerator *this,string *param_1) { byte bVar1; string local_d8 [32]; string local_b8 [32]; int8 ...
25,639
AimRTCodeGenerator::GenNamespaceEndStr(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&)
aimrt_mujoco_sim/_deps/aimrt-src/src/tools/protoc_plugin_cpp_gen_aimrt_cpp_rpc/main.cc
static std::string GenNamespaceEndStr(const std::string& ns) { std::vector<std::string> namespace_vec = SplitToVec(ns, "."); std::reverse(namespace_vec.begin(), namespace_vec.end()); std::string result; for (const auto& itr : namespace_vec) { result += ("} // namespace " + itr + "\n"); } ...
O3
cpp
AimRTCodeGenerator::GenNamespaceEndStr(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 $0x68, %rsp movq %rsi, %r14 movq %rdi, %rbx leaq 0x18(%rsp), %rbp movq %rbp, -0x10(%rbp) leaq 0xa3a28(%rip), %rsi # 0x...
_ZN18AimRTCodeGenerator18GenNamespaceEndStrERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 68h mov r14, rsi mov rbx, rdi lea rbp, [rsp+98h+var_80] mov [rbp-10h], rbp lea rsi, aWhichIsNotDefi+77h; "." lea ...
long long AimRTCodeGenerator::GenNamespaceEndStr(long long a1, long long a2) { unsigned long long v2; // r14 long long v3; // r13 unsigned long long v4; // r15 long long v5; // rax __int128 *v6; // rcx void *v8; // [rsp+8h] [rbp-90h] BYREF long long v9; // [rsp+10h] [rbp-88h] __int128 v10; // [rsp+18h]...
GenNamespaceEndStr: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x68 MOV R14,RSI MOV RBX,RDI LEA RBP,[RSP + 0x18] MOV qword ptr [RBP + -0x10],RBP LAB_00112aaf: LEA RSI,[0x1b64de] LEA RDX,[0x1b64df] LEA RDI,[RSP + 0x8] CALL 0x001137ec LAB_00112ac7: LEA RDI,[RSP + 0x30] LEA RDX,[RSP + 0x8] MOV RSI,R14 M...
/* AimRTCodeGenerator::GenNamespaceEndStr(std::__cxx11::string const&) */ AimRTCodeGenerator * __thiscall AimRTCodeGenerator::GenNamespaceEndStr(AimRTCodeGenerator *this,string *param_1) { long *plVar1; long *plVar2; string *psVar3; string *this_00; string *psVar4; string *psVar5; long *local_90; ulo...
25,640
Spu::TickChannel(int)
sp1187[P]veesem/src/core/spg200/spu.cc
void Spu::TickChannel(int channel_index) { auto& channel = channel_data_[channel_index]; uint32_t phase_acc = channel.phase_acc + channel.phase; channel.phase_acc = phase_acc & 0x7ffff; if (phase_acc >= 0x80000) { if (channel_fiq_enable_[channel_index]) { channel_fiq_status_[channel_index] = true; ...
O3
cpp
Spu::TickChannel(int): pushq %r15 pushq %r14 pushq %rbx movl %esi, %ebx movslq %esi, %rcx imulq $0x38, %rcx, %rax movl 0x6040(%rdi,%rax), %edx addl 0x6044(%rdi,%rax), %edx movl %edx, %esi andl $0x7ffff, %esi # imm = 0x7FFFF movl %esi, 0x6044(%rdi,%rax) cmpl $0x80000, %edx # imm = 0x80000 jb 0xc194 mov...
_ZN3Spu11TickChannelEi: push r15 push r14 push rbx mov ebx, esi movsxd rcx, esi imul rax, rcx, 38h ; '8' mov edx, [rdi+rax+6040h] add edx, [rdi+rax+6044h] mov esi, edx and esi, 7FFFFh mov [rdi+rax+6044h], esi cmp edx, 80000h jb loc_C194 mov r14, rdi lea r15, [rdi+ra...
char Spu::TickChannel(Spu *this, int a2) { long long v2; // rax unsigned int v3; // edx unsigned int *v4; // r15 long long v5; // rdx __int16 v6; // cx char v7; // cl unsigned __int8 v8; // cl v2 = 56LL * a2; v3 = *(_DWORD *)((char *)this + v2 + 24644) + *(_DWORD *)((char *)this + v2 + 24640); *(_...
TickChannel: PUSH R15 PUSH R14 PUSH RBX MOV EBX,ESI MOVSXD RCX,ESI IMUL RAX,RCX,0x38 MOV EDX,dword ptr [RDI + RAX*0x1 + 0x6040] ADD EDX,dword ptr [RDI + RAX*0x1 + 0x6044] MOV ESI,EDX AND ESI,0x7ffff MOV dword ptr [RDI + RAX*0x1 + 0x6044],ESI CMP EDX,0x80000 JC 0x0010c194 MOV R14,RDI LEA R15,[RDI + RAX*0x1] ADD R15,0x60...
/* Spu::TickChannel(int) */ void __thiscall Spu::TickChannel(Spu *this,int param_1) { int iVar1; ushort uVar2; long lVar3; Spu SVar4; ushort uVar5; Spu *pSVar6; lVar3 = (long)param_1 * 0x38; iVar1 = *(int *)(this + lVar3 + 0x6044); *(uint *)(this + lVar3 + 0x6044) = *(int *)(this + lVar3 + 0x604...
25,641
nglog::ReadEntireFile[abi:cxx11](_IO_FILE*)
ng-log[P]ng-log/src/googletest.h
static inline string ReadEntireFile(FILE* file) { const size_t file_size = GetFileSize(file); std::vector<char> content(file_size); size_t bytes_last_read = 0; // # of bytes read in the last fread() size_t bytes_read = 0; // # of bytes read so far fseek(file, 0, SEEK_SET); // Keep reading the file...
O0
c
nglog::ReadEntireFile[abi:cxx11](_IO_FILE*): pushq %rbp movq %rsp, %rbp subq $0xb0, %rsp movq %rdi, -0x80(%rbp) movq %rdi, %rax movq %rax, -0x78(%rbp) movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x10(%rbp), %rdi callq 0xc730 movq %rax, -0x18(%rbp) movq -0x18(%rbp), %rax movq %rax, -0x70(%rbp) leaq -0x31(%rbp), %...
_ZN5nglogL14ReadEntireFileB5cxx11EP8_IO_FILE: push rbp mov rbp, rsp sub rsp, 0B0h mov [rbp+var_80], rdi mov rax, rdi mov [rbp+var_78], rax mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov rdi, [rbp+var_10] call _ZN5nglogL11GetFileSizeEP8_IO_FILE; nglog::GetFileSize(_IO_FILE *) mov ...
long long nglog::ReadEntireFile[abi:cxx11](long long a1, long long a2) { long long v2; // rax long long v4; // [rsp+8h] [rbp-A8h] unsigned long long v5; // [rsp+10h] [rbp-A0h] bool v6; // [rsp+27h] [rbp-89h] unsigned long long v7; // [rsp+40h] [rbp-70h] char v8; // [rsp+57h] [rbp-59h] BYREF unsigned long...
ReadEntireFile[abi:cxx11]: PUSH RBP MOV RBP,RSP SUB RSP,0xb0 MOV qword ptr [RBP + -0x80],RDI MOV RAX,RDI MOV qword ptr [RBP + -0x78],RAX MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV RDI,qword ptr [RBP + -0x10] CALL 0x0010c730 MOV qword ptr [RBP + -0x18],RAX MOV RAX,qword ptr [RBP + -0x18] MOV qwor...
/* nglog::ReadEntireFile[abi:cxx11](_IO_FILE*) */ nglog * __thiscall nglog::ReadEntireFile_abi_cxx11_(nglog *this,_IO_FILE *param_1) { ulong uVar1; long lVar2; char *pcVar3; bool local_91; allocator local_61; ulong local_60; size_t local_58; allocator local_39; vector<char,std::allocator<char>> loc...
25,642
cs_enter
eloqsql/strings/ctype.c
static int cs_enter(MY_XML_PARSER *st,const char *attr, size_t len) { struct my_cs_file_info *i= (struct my_cs_file_info *)st->user_data; const struct my_cs_file_section_st *s= cs_file_sec(attr,len); int state= s ? s->state : 0; switch (state) { case 0: i->loader->reporter(WARNING_LEVEL, "Unknown LDML ...
O3
c
cs_enter: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movq %rdx, %r15 movq %rsi, %r14 movq 0x140(%rdi), %rbx leaq 0x29b2c9(%rip), %r13 # 0x2f5570 leaq 0x86a3(%rip), %r12 # 0x62951 movq %r14, %rdi movq %r12, %rsi movq %r15, %rdx callq 0x24130 testl %eax, %eax jne ...
cs_enter: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx push rax mov r15, rdx mov r14, rsi mov rbx, [rdi+140h] lea r13, sec lea r12, aIndexXml+6; "xml" loc_5A2AE: mov rdi, r14 mov rsi, r12 mov rdx, r15 call _strncmp test eax, eax jnz ...
long long cs_enter(long long a1, const char *a2, long long a3) { long long v4; // rbx char *v5; // r13 char *v6; // r12 int v8; // eax v4 = *(_QWORD *)(a1 + 320); v5 = (char *)&sec; v6 = "xml"; while ( (unsigned int)strncmp(a2, v6, a3) || v6[a3] ) { v6 = (char *)*((_QWORD *)v5 + 3); v5 += 16...
cs_enter: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX PUSH RAX MOV R15,RDX MOV R14,RSI MOV RBX,qword ptr [RDI + 0x140] LEA R13,[0x3f5570] LEA R12,[0x162951] LAB_0015a2ae: MOV RDI,R14 MOV RSI,R12 MOV RDX,R15 CALL 0x00124130 TEST EAX,EAX JNZ 0x0015a2c7 CMP byte ptr [R12 + R15*0x1],0x0 JZ 0x0015a307 ...
int8 cs_enter(long param_1,char *param_2,size_t param_3) { long lVar1; int iVar2; int8 uVar3; char *__s2; int *piVar4; lVar1 = *(long *)(param_1 + 0x140); piVar4 = &sec; __s2 = "xml"; while ((iVar2 = strncmp(param_2,__s2,param_3), iVar2 != 0 || (__s2[param_3] != '\0'))) { __s2 = *(char **)(pi...
25,643
js_worker_finalizer
bluesky950520[P]quickjs/quickjs-libc.c
static void js_worker_finalizer(JSRuntime *rt, JSValue val) { JSThreadState *ts = js_get_thread_state(rt); JSWorkerData *worker = JS_GetOpaque(val, ts->worker_class_id); if (worker) { js_free_message_pipe(worker->recv_pipe); js_free_message_pipe(worker->send_pipe); js_free_port(rt, w...
O0
c
js_worker_finalizer: subq $0x28, %rsp movq %rsi, 0x18(%rsp) movq %rdx, 0x20(%rsp) movq %rdi, 0x10(%rsp) movq 0x10(%rsp), %rdi callq 0x115d0 movq %rax, 0x8(%rsp) movq 0x8(%rsp), %rax movl 0x7c(%rax), %edx movq 0x18(%rsp), %rdi movq 0x20(%rsp), %rsi callq 0x38350 movq %rax, (%rsp) cmpq $0x0, (%rsp) je 0x16fdd movq (%rsp)...
js_worker_finalizer: sub rsp, 28h mov [rsp+28h+var_10], rsi mov [rsp+28h+var_8], rdx mov [rsp+28h+var_18], rdi mov rdi, [rsp+28h+var_18] call js_get_thread_state mov [rsp+28h+var_20], rax mov rax, [rsp+28h+var_20] mov edx, [rax+7Ch] mov rdi, [rsp+28h+var_10] mov rsi, [rsp+28h+...
long long * js_worker_finalizer(long long a1, long long a2, long long a3, int a4, int a5, int a6) { long long *result; // rax long long *v7; // [rsp+0h] [rbp-28h] long long thread_state; // [rsp+8h] [rbp-20h] thread_state = js_get_thread_state(a1, a2, a3, a4, a5, a6); result = (long long *)JS_GetOpaque(a2, a...
js_worker_finalizer: SUB RSP,0x28 MOV qword ptr [RSP + 0x18],RSI MOV qword ptr [RSP + 0x20],RDX MOV qword ptr [RSP + 0x10],RDI MOV RDI,qword ptr [RSP + 0x10] CALL 0x001115d0 MOV qword ptr [RSP + 0x8],RAX MOV RAX,qword ptr [RSP + 0x8] MOV EDX,dword ptr [RAX + 0x7c] MOV RDI,qword ptr [RSP + 0x18] MOV RSI,qword ptr [RSP +...
void js_worker_finalizer(int8 param_1,int8 param_2,int8 param_3) { long lVar1; int8 *puVar2; lVar1 = js_get_thread_state(param_1); puVar2 = (int8 *)JS_GetOpaque(param_2,param_3,*(int4 *)(lVar1 + 0x7c)); if (puVar2 != (int8 *)0x0) { js_free_message_pipe(*puVar2); js_free_message_pipe(puVar2[1]); ...
25,644
js_worker_finalizer
bluesky950520[P]quickjs/quickjs-libc.c
static void js_worker_finalizer(JSRuntime *rt, JSValue val) { JSThreadState *ts = js_get_thread_state(rt); JSWorkerData *worker = JS_GetOpaque(val, ts->worker_class_id); if (worker) { js_free_message_pipe(worker->recv_pipe); js_free_message_pipe(worker->send_pipe); js_free_port(rt, w...
O2
c
js_worker_finalizer: pushq %r15 pushq %r14 pushq %rbx movq %rdx, %r14 movq %rsi, %r15 movq %rdi, %rbx callq 0x1028a movl 0x7c(%rax), %edx movq %r15, %rdi movq %r14, %rsi callq 0x211f2 testq %rax, %rax je 0x12ed9 movq %rax, %r14 movq (%rax), %rdi callq 0x10360 movq 0x8(%r14), %rdi callq 0x10360 movq 0x10(%r14), %rsi mov...
js_worker_finalizer: push r15 push r14 push rbx mov r14, rdx mov r15, rsi mov rbx, rdi call js_get_thread_state mov edx, [rax+7Ch] mov rdi, r15 mov rsi, r14 call JS_GetOpaque test rax, rax jz short loc_12ED9 mov r14, rax mov rdi, [rax] call js_free_message_pipe ...
long long * js_worker_finalizer(long long a1, long long a2, long long a3, int a4, int a5, int a6) { long long thread_state; // rax long long *result; // rax long long *v9; // r14 char v10; // [rsp+0h] [rbp-18h] thread_state = js_get_thread_state(a1, a2, a3, a4, a5, a6, v10); result = (long long *)JS_GetOpa...
js_worker_finalizer: PUSH R15 PUSH R14 PUSH RBX MOV R14,RDX MOV R15,RSI MOV RBX,RDI CALL 0x0011028a MOV EDX,dword ptr [RAX + 0x7c] MOV RDI,R15 MOV RSI,R14 CALL 0x001211f2 TEST RAX,RAX JZ 0x00112ed9 MOV R14,RAX MOV RDI,qword ptr [RAX] CALL 0x00110360 MOV RDI,qword ptr [R14 + 0x8] CALL 0x00110360 MOV RSI,qword ptr [R14 +...
void js_worker_finalizer(int8 param_1,int8 param_2,int8 param_3) { long lVar1; int8 *puVar2; lVar1 = js_get_thread_state(); puVar2 = (int8 *)JS_GetOpaque(param_2,param_3,*(int4 *)(lVar1 + 0x7c)); if (puVar2 != (int8 *)0x0) { js_free_message_pipe(*puVar2); js_free_message_pipe(puVar2[1]); js_f...
25,645
string_buffer_putc16
bluesky950520[P]quickjs/quickjs.c
static int string_buffer_putc16(StringBuffer *s, uint32_t c) { if (likely(s->len < s->size)) { if (s->is_wide_char) { s->str->u.str16[s->len++] = c; return 0; } else if (c < 0x100) { s->str->u.str8[s->len++] = c; return 0; } } return st...
O1
c
string_buffer_putc16: movslq 0x10(%rdi), %rax cmpl 0x14(%rdi), %eax jge 0x47819 cmpl $0x0, 0x18(%rdi) je 0x477ff movq 0x8(%rdi), %rcx leal 0x1(%rax), %edx movl %edx, 0x10(%rdi) movw %si, 0x18(%rcx,%rax,2) jmp 0x47816 cmpl $0xff, %esi ja 0x47819 movq 0x8(%rdi), %rcx leal 0x1(%rax), %edx movl %edx, 0x10(%rdi) movb %sil, ...
string_buffer_putc16: movsxd rax, dword ptr [rdi+10h] cmp eax, [rdi+14h] jge short string_buffer_putc_slow cmp dword ptr [rdi+18h], 0 jz short loc_477FF mov rcx, [rdi+8] lea edx, [rax+1] mov [rdi+10h], edx mov [rcx+rax*2+18h], si jmp short loc_47816 loc_477FF: cmp esi, 0FFh ja ...
long long string_buffer_putc16(long long a1, unsigned int a2) { long long v2; // rax long long v3; // rcx long long v4; // rcx v2 = *(int *)(a1 + 16); if ( (int)v2 < *(_DWORD *)(a1 + 20) ) { if ( *(_DWORD *)(a1 + 24) ) { v3 = *(_QWORD *)(a1 + 8); *(_DWORD *)(a1 + 16) = v2 + 1; *(...
25,646
string_buffer_putc16
bluesky950520[P]quickjs/quickjs.c
static int string_buffer_putc16(StringBuffer *s, uint32_t c) { if (likely(s->len < s->size)) { if (s->is_wide_char) { s->str->u.str16[s->len++] = c; return 0; } else if (c < 0x100) { s->str->u.str8[s->len++] = c; return 0; } } return st...
O2
c
string_buffer_putc16: movslq 0x10(%rdi), %rax cmpl 0x14(%rdi), %eax jge 0x3dd30 cmpl $0x0, 0x18(%rdi) je 0x3dd16 movq 0x8(%rdi), %rcx leal 0x1(%rax), %edx movl %edx, 0x10(%rdi) movw %si, 0x18(%rcx,%rax,2) jmp 0x3dd2d cmpl $0xff, %esi ja 0x3dd30 movq 0x8(%rdi), %rcx leal 0x1(%rax), %edx movl %edx, 0x10(%rdi) movb %sil, ...
string_buffer_putc16: movsxd rax, dword ptr [rdi+10h] cmp eax, [rdi+14h] jge short string_buffer_putc_slow cmp dword ptr [rdi+18h], 0 jz short loc_3DD16 mov rcx, [rdi+8] lea edx, [rax+1] mov [rdi+10h], edx mov [rcx+rax*2+18h], si jmp short loc_3DD2D loc_3DD16: cmp esi, 0FFh ja ...
long long string_buffer_putc16(long long a1, unsigned int a2) { long long v2; // rax long long v3; // rcx long long v4; // rcx v2 = *(int *)(a1 + 16); if ( (int)v2 < *(_DWORD *)(a1 + 20) ) { if ( *(_DWORD *)(a1 + 24) ) { v3 = *(_QWORD *)(a1 + 8); *(_DWORD *)(a1 + 16) = v2 + 1; *(...
string_buffer_putc16: MOVSXD RAX,dword ptr [RDI + 0x10] CMP EAX,dword ptr [RDI + 0x14] JGE 0x0013dd30 CMP dword ptr [RDI + 0x18],0x0 JZ 0x0013dd16 MOV RCX,qword ptr [RDI + 0x8] LEA EDX,[RAX + 0x1] MOV dword ptr [RDI + 0x10],EDX MOV word ptr [RCX + RAX*0x2 + 0x18],SI JMP 0x0013dd2d LAB_0013dd16: CMP ESI,0xff JA 0x0013dd...
int4 string_buffer_putc16(long param_1,uint param_2) { int iVar1; iVar1 = *(int *)(param_1 + 0x10); if (iVar1 < *(int *)(param_1 + 0x14)) { if (*(int *)(param_1 + 0x18) != 0) { *(int *)(param_1 + 0x10) = iVar1 + 1; *(short *)(*(long *)(param_1 + 8) + 0x18 + (long)iVar1 * 2) = (short)param_2; ...
25,647
OpenSubdiv::v3_6_0::Bfr::PatchTreeBuilder::PatchTreeBuilder(OpenSubdiv::v3_6_0::Far::TopologyRefiner&, OpenSubdiv::v3_6_0::Bfr::PatchTreeBuilder::Options const&)
NVIDIA-RTX[P]OSD-Lite/opensubdiv/bfr/patchTreeBuilder.cpp
PatchTreeBuilder::PatchTreeBuilder(TopologyRefiner & faceRefiner, Options const & options) : _patchTree(new PatchTree), _faceRefiner(faceRefiner), _faceAtRoot(0), _patchBuilder(0) { // // Adaptive refinement in Far requires smooth level <= sharp level, //...
O3
cpp
OpenSubdiv::v3_6_0::Bfr::PatchTreeBuilder::PatchTreeBuilder(OpenSubdiv::v3_6_0::Far::TopologyRefiner&, OpenSubdiv::v3_6_0::Bfr::PatchTreeBuilder::Options const&): pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x10, %rsp movq %rdx, %r14 movq %rsi, %r12 movq %rdi, %rbx movl $0xb0, %edi callq 0x3a210 movq %...
_ZN10OpenSubdiv6v3_6_03Bfr16PatchTreeBuilderC2ERNS0_3Far15TopologyRefinerERKNS2_7OptionsE: push r15; Alternative name is 'OpenSubdiv::v3_6_0::Bfr::PatchTreeBuilder::PatchTreeBuilder(OpenSubdiv::v3_6_0::Far::TopologyRefiner &, OpenSubdiv::v3_6_0::Bfr::PatchTreeBuilder::Options const&)' push r14 push r13 push ...
long long OpenSubdiv::v3_6_0::Bfr::PatchTreeBuilder::PatchTreeBuilder( OpenSubdiv::v3_6_0::Bfr::PatchTreeBuilder *this, int *a2, _BYTE *a3) { OpenSubdiv::v3_6_0::Bfr::PatchTree *v6; // r15 _QWORD *v7; // r15 unsigned __int8 v8; // al int v9; // r13d _DWORD *v10; // rax long long v11...
PatchTreeBuilder: PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x10 MOV R14,RDX MOV R12,RSI MOV RBX,RDI MOV EDI,0xb0 CALL 0x0013a210 MOV R15,RAX LAB_001902c7: MOV RDI,RAX CALL 0x0013b840 MOV qword ptr [RBX],R15 MOV qword ptr [RBX + 0x8],R12 MOV dword ptr [RBX + 0x10],0x0 LEA R15,[RBX + 0x18] XORPS XMM0,XMM0 MOV...
/* OpenSubdiv::v3_6_0::Bfr::PatchTreeBuilder::PatchTreeBuilder(OpenSubdiv::v3_6_0::Far::TopologyRefiner&, OpenSubdiv::v3_6_0::Bfr::PatchTreeBuilder::Options const&) */ void __thiscall OpenSubdiv::v3_6_0::Bfr::PatchTreeBuilder::PatchTreeBuilder (PatchTreeBuilder *this,TopologyRefiner *param_1,Options *par...
25,648
google::protobuf::FileDescriptor::FindServiceByName(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&) const
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/descriptor.cc
const ServiceDescriptor* FileDescriptor::FindServiceByName( ConstStringParam key) const { return tables_->FindNestedSymbol(this, key).service_descriptor(); }
O3
cpp
google::protobuf::FileDescriptor::FindServiceByName(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&) const: pushq %r14 pushq %rbx subq $0x38, %rsp movq 0x80(%rdi), %rbx movups (%rsi), %xmm0 leaq 0x10(%rsp), %rax movups %xmm0, 0x8(%rax) movq %rdi, 0x18(%rax) leaq 0x8(%rsp), %r14 mov...
_ZNK6google8protobuf14FileDescriptor17FindServiceByNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE: push r14 push rbx sub rsp, 38h mov rbx, [rdi+80h] movups xmm0, xmmword ptr [rsi] lea rax, [rsp+48h+var_38] movups xmmword ptr [rax+8], xmm0 mov [rax+18h], rdi lea r14, [rsp+48h+var...
_BYTE * google::protobuf::FileDescriptor::FindServiceByName(long long a1, __int128 *a2) { long long v2; // rbx unsigned long long v3; // rax long long node; // rax _BYTE *v5; // rcx _BYTE *result; // rax char *v7; // [rsp+8h] [rbp-40h] BYREF char v8; // [rsp+10h] [rbp-38h] BYREF __int128 v9; // [rsp+18h...
FindServiceByName: PUSH R14 PUSH RBX SUB RSP,0x38 MOV RBX,qword ptr [RDI + 0x80] MOVUPS XMM0,xmmword ptr [RSI] LEA RAX,[RSP + 0x10] MOVUPS xmmword ptr [RAX + 0x8],XMM0 MOV qword ptr [RAX + 0x18],RDI LEA R14,[RSP + 0x8] MOV qword ptr [R14],RAX MOV byte ptr [RAX],0xb MOV RDI,R14 CALL 0x0013b1a0 MOV RCX,RAX XOR EDX,EDX DI...
/* google::protobuf::FileDescriptor::FindServiceByName(std::__cxx11::string const&) const */ char * __thiscall google::protobuf::FileDescriptor::FindServiceByName(FileDescriptor *this,string *param_1) { _Hashtable<google::protobuf::Symbol,google::protobuf::Symbol,std::allocator<google::protobuf::Symbol>,std::__det...
25,649
Catch::TestSpecParser::processNameChar(char)
AlayaLite/build_O3/_deps/libcoro-src/test/catch_amalgamated.cpp
void TestSpecParser::processNameChar( char c ) { if( c == '[' ) { if( m_substring == "exclude:" ) m_exclusion = true; else endMode(); startNewMode( Tag ); } }
O3
cpp
Catch::TestSpecParser::processNameChar(char): cmpb $0x5b, %sil jne 0x6305d pushq %rbx movq %rdi, %rbx addq $0x40, %rdi leaq 0x7ae7b(%rip), %rsi # 0xddeba callq 0x2f448 testl %eax, %eax je 0x63052 movq %rbx, %rdi callq 0x62e56 jmp 0x63056 movb $0x1, 0x8(%rbx) movl $0x3, (%rbx) popq %rbx retq
_ZN5Catch14TestSpecParser15processNameCharEc: cmp sil, 5Bh ; '[' jnz short locret_6305D push rbx mov rbx, rdi add rdi, 40h ; '@' lea rsi, aExclude; "exclude:" call _ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7compareEPKc; std::string::compare(char const*) test eax, eax jz sho...
void Catch::TestSpecParser::processNameChar(Catch::TestSpecParser *this, char a2) { if ( a2 == 91 ) { if ( !(unsigned int)std::string::compare((_QWORD *)this + 8, (long long)"exclude:") ) *((_BYTE *)this + 8) = 1; else Catch::TestSpecParser::endMode(this); *(_DWORD *)this = 3; } }
processNameChar: CMP SIL,0x5b JNZ 0x0016305d PUSH RBX MOV RBX,RDI ADD RDI,0x40 LEA RSI,[0x1ddeba] CALL 0x0012f448 TEST EAX,EAX JZ 0x00163052 MOV RDI,RBX CALL 0x00162e56 JMP 0x00163056 LAB_00163052: MOV byte ptr [RBX + 0x8],0x1 LAB_00163056: MOV dword ptr [RBX],0x3 POP RBX LAB_0016305d: RET
/* Catch::TestSpecParser::processNameChar(char) */ void __thiscall Catch::TestSpecParser::processNameChar(TestSpecParser *this,char param_1) { int iVar1; if (param_1 == '[') { iVar1 = std::__cxx11::string::compare((string *)(this + 0x40),"exclude:"); if (iVar1 == 0) { this[8] = (TestSpecParser)0...
25,650
mariadb_reconnect
eloqsql/libmariadb/libmariadb/mariadb_lib.c
my_bool STDCALL mariadb_reconnect(MYSQL *mysql) { MYSQL tmp_mysql; struct my_hook_data hook_data; struct mysql_async_context *ctxt= NULL; LIST *li_stmt= mysql->stmts; /* check if connection handler is active */ if (IS_CONNHDLR_ACTIVE(mysql)) { if (mysql->extension->conn_hdlr->plugin && mysql->extensi...
O3
c
mariadb_reconnect: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x528, %rsp # imm = 0x528 movq %rdi, %rbx movq %fs:0x28, %rax movq %rax, -0x30(%rbp) movq 0x4c8(%rdi), %r14 movq 0x4f0(%rdi), %rax testq %rax, %rax je 0x15cfd movq (%rax), %rax testq %rax, %rax je 0x15c...
mariadb_reconnect: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 528h mov rbx, rdi mov rax, fs:28h mov [rbp+var_30], rax mov r14, [rdi+4C8h] mov rax, [rdi+4F0h] test rax, rax jz short loc_15CFD mov rax, [rax] test rax, rax jz ...
char mariadb_reconnect(_QWORD *a1, long long a2, long long a3) { long long v3; // r14 long long **v4; // rax long long *v5; // rax long long v6; // rax long long ( *v7)(_QWORD *, long long, long long, unsigned long long); // rax int v9; // eax long long v10; // rax long long v11; // rax long long v12...
mariadb_reconnect: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x528 MOV RBX,RDI MOV RAX,qword ptr FS:[0x28] MOV qword ptr [RBP + -0x30],RAX MOV R14,qword ptr [RDI + 0x4c8] MOV RAX,qword ptr [RDI + 0x4f0] TEST RAX,RAX JZ 0x00115cfd MOV RAX,qword ptr [RAX] TEST RAX,RAX JZ 0x00115cfd MOV RAX...
int8 mariadb_reconnect(long *param_1) { long *plVar1; code *UNRECOVERED_JUMPTABLE; int *__src; int iVar2; int8 uVar3; long lVar4; long lVar5; long lVar6; long in_FS_OFFSET; int1 local_530 [144]; int4 local_4a0; int1 local_499 [512]; int1 local_299 [249]; int1 local_1a0 [80]; int8 local_1...
25,651
mujoco::GlobalTable<mjpPlugin_>::GetByKeyUnsafe(std::basic_string_view<char, std::char_traits<char>>, int*, int)
aimrt_mujoco_sim/_deps/mujoco-src/src/engine/engine_global_table.h
const T* GetByKeyUnsafe(std::string_view key, int* slot, int nslot) { if (slot) *slot = -1; if (key.empty()) { return nullptr; } TableBlock<T>* block = &first_block_; int found_slot = 0; while (block) { for (int i = 0; i < TableBlock<T>::kBlockSize && found_slot < nslot; ...
O0
c
mujoco::GlobalTable<mjpPlugin_>::GetByKeyUnsafe(std::basic_string_view<char, std::char_traits<char>>, int*, int): subq $0x88, %rsp movq %rsi, 0x70(%rsp) movq %rdx, 0x78(%rsp) movq %rdi, 0x68(%rsp) movq %rcx, 0x60(%rsp) movl %r8d, 0x5c(%rsp) movq 0x68(%rsp), %rax movq %rax, 0x8(%rsp) cmpq $0x0, 0x60(%rsp) je 0xe7b2d mov...
_ZN6mujoco11GlobalTableI10mjpPlugin_E14GetByKeyUnsafeESt17basic_string_viewIcSt11char_traitsIcEEPii: sub rsp, 88h mov [rsp+88h+var_18], rsi mov [rsp+88h+var_10], rdx mov [rsp+88h+var_20], rdi mov [rsp+88h+var_28], rcx mov [rsp+88h+var_2C], r8d mov rax, [rsp+88h+var_20] mov [rsp+88h+var_8...
_anonymous_namespace_ ** mujoco::GlobalTable<mjpPlugin_>::GetByKeyUnsafe( long long a1, const char *a2, long long a3, _DWORD *a4, int a5) { long long v5; // rdx bool v7; // [rsp+7h] [rbp-81h] long long v8; // [rsp+30h] [rbp-58h] BYREF const char *v9; // [rsp+38h] [rbp-50h...
GetByKeyUnsafe: SUB RSP,0x88 MOV qword ptr [RSP + 0x70],RSI MOV qword ptr [RSP + 0x78],RDX MOV qword ptr [RSP + 0x68],RDI MOV qword ptr [RSP + 0x60],RCX MOV dword ptr [RSP + 0x5c],R8D MOV RAX,qword ptr [RSP + 0x68] MOV qword ptr [RSP + 0x8],RAX CMP qword ptr [RSP + 0x60],0x0 JZ 0x001e7b2d MOV RAX,qword ptr [RSP + 0x60]...
/* mujoco::GlobalTable<mjpPlugin_>::GetByKeyUnsafe(std::basic_string_view<char, std::char_traits<char> >, int*, int) */ mjpPlugin_ * mujoco::GlobalTable<mjpPlugin_>::GetByKeyUnsafe (long param_1,int8 param_2,int8 param_3,int *param_4,int param_5) { ulong uVar1; int1 auVar2 [16]; int1 local_58 [16]...
25,652
Catch::TextFlow::Column::const_iterator::calcLength()
AlayaLite/build_O3/_deps/libcoro-src/test/catch_amalgamated.cpp
void Column::const_iterator::calcLength() { m_addHyphen = false; m_parsedTo = m_lineStart; std::string const& current_line = m_column.m_string; if ( current_line[m_lineStart] == '\n' ) { ++m_parsedTo; } const auto maxLineLength = ...
O3
cpp
Catch::TextFlow::Column::const_iterator::calcLength(): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movb $0x0, 0x20(%rdi) movq (%rdi), %r15 movq 0x8(%rdi), %rbx movq %rbx, 0x18(%rdi) movq (%r15), %r9 cmpb $0xa, (%r9,%rbx) movq %rbx, %rax jne 0x636ac leaq 0x1(%rbx), %rax movq %rax, ...
_ZN5Catch8TextFlow6Column14const_iterator10calcLengthEv: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 28h mov byte ptr [rdi+20h], 0 mov r15, [rdi] mov rbx, [rdi+8] mov [rdi+18h], rbx mov r9, [r15] cmp byte ptr [r9+rbx], 0Ah mov rax, rbx jnz short l...
unsigned long long Catch::TextFlow::Column::const_iterator::calcLength( Catch::TextFlow::Column::const_iterator *this) { long long *v1; // r15 unsigned long long v2; // rbx long long v3; // r9 unsigned long long result; // rax long long v5; // rcx unsigned long long v6; // rsi unsigned long long ...
calcLength: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x28 MOV byte ptr [RDI + 0x20],0x0 MOV R15,qword ptr [RDI] MOV RBX,qword ptr [RDI + 0x8] MOV qword ptr [RDI + 0x18],RBX MOV R9,qword ptr [R15] CMP byte ptr [R9 + RBX*0x1],0xa MOV RAX,RBX JNZ 0x001636ac LEA RAX,[RBX + 0x1] MOV qword ptr [RDI + 0x1...
/* Catch::TextFlow::Column::const_iterator::calcLength() */ void __thiscall Catch::TextFlow::Column::const_iterator::calcLength(const_iterator *this) { ulong uVar1; byte bVar2; long *plVar3; ulong uVar4; long lVar5; ulong uVar6; ulong uVar7; ulong uVar8; long lVar9; void *pvVar10; ulong uVar11;...
25,653
my_strnncollsp_nchars_generic
eloqsql/strings/ctype.c
int my_strnncollsp_nchars_generic(CHARSET_INFO *cs, const uchar *str1, size_t len1, const uchar *str2, size_t len2, size_t nchars) { int error; len1= my_well_formed_length(cs, (const char *) str1, ...
O0
c
my_strnncollsp_nchars_generic: pushq %rbp movq %rsp, %rbp subq $0x40, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq %rcx, -0x20(%rbp) movq %r8, -0x28(%rbp) movq %r9, -0x30(%rbp) movq -0x8(%rbp), %rdi movq -0x10(%rbp), %rsi movq -0x10(%rbp), %rdx addq -0x18(%rbp), %rdx movq -0x30(%rbp), %...
my_strnncollsp_nchars_generic: push rbp mov rbp, rsp sub rsp, 40h mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov [rbp+var_18], rdx mov [rbp+var_20], rcx mov [rbp+var_28], r8 mov [rbp+var_30], r9 mov rdi, [rbp+var_8] mov rsi, [rbp+var_10] mov rdx, [rbp+var_10] add rdx, ...
long long my_strnncollsp_nchars_generic( long long a1, long long a2, long long a3, long long a4, long long a5, long long a6) { _BYTE v7[4]; // [rsp+Ch] [rbp-34h] BYREF long long v8; // [rsp+10h] [rbp-30h] long long v9; // [rsp+18h] [rbp-28h] long long v10; // [rs...
my_strnncollsp_nchars_generic: PUSH RBP MOV RBP,RSP SUB RSP,0x40 MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV qword ptr [RBP + -0x18],RDX MOV qword ptr [RBP + -0x20],RCX MOV qword ptr [RBP + -0x28],R8 MOV qword ptr [RBP + -0x30],R9 MOV RDI,qword ptr [RBP + -0x8] MOV RSI,qword ptr [RBP + -0x10] MOV...
void my_strnncollsp_nchars_generic (long param_1,long param_2,long param_3,long param_4,long param_5,int8 param_6) { int1 local_3c [4]; int8 local_38; long local_30; long local_28; long local_20; long local_18; long local_10; local_38 = param_6; local_30 = param_5; local_28 = par...
25,654
bool minja::Value::get<bool>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, bool) const
monkey531[P]llama/common/minja.hpp
T get(const std::string & key, T default_value) const { if (!contains(key)) return default_value; return at(key).get<T>(); }
O1
cpp
bool minja::Value::get<bool>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, bool) const: pushq %r15 pushq %r14 pushq %rbx subq $0x50, %rsp movl %edx, %ebx movq %rsi, %r15 movq %rdi, %r14 callq 0x5a51a testb %al, %al je 0x7d908 movq %rsp, %rbx movq %rbx, %rdi movq %r15, %rsi callq...
_ZNK5minja5Value3getIbEET_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_: push r15 push r14 push rbx sub rsp, 50h mov ebx, edx mov r15, rsi mov r14, rdi call _ZNK5minja5Value8containsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE; minja::Value::contains(std::string const&...
long long minja::Value::get<bool>(minja::Value *this, long long a2, unsigned int a3) { _QWORD *v4; // rax unsigned int v5; // eax long long v6; // rdi signed __int32 v7; // eax __int128 v9; // [rsp+0h] [rbp-68h] BYREF volatile signed __int32 *v10; // [rsp+18h] [rbp-50h] volatile signed __int32 *v11; // [...
get<bool>: PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x50 MOV EBX,EDX MOV R15,RSI MOV R14,RDI CALL 0x0015a51a TEST AL,AL JZ 0x0017d908 MOV RBX,RSP MOV RDI,RBX MOV RSI,R15 CALL 0x00147b26 LAB_0017d87a: MOV RDI,R14 MOV RSI,RBX CALL 0x0015a0de MOV RDI,RAX CALL 0x00144990 LAB_0017d88d: MOV EBX,EAX LEA R14,[RSP + 0x40] MOV RDI,R14...
/* bool minja::Value::get<bool>(std::__cxx11::string const&, bool) const */ bool __thiscall minja::Value::get<bool>(Value *this,string *param_1,bool param_2) { int *piVar1; char cVar2; int iVar3; Value *this_00; Value aVStack_68 [8]; long *local_60; _Sp_counted_base<(__gnu_cxx::_Lock_policy)2> *local_5...
25,655
bool minja::Value::get<bool>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, bool) const
monkey531[P]llama/common/minja.hpp
T get(const std::string & key, T default_value) const { if (!contains(key)) return default_value; return at(key).get<T>(); }
O3
cpp
bool minja::Value::get<bool>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, bool) const: pushq %r15 pushq %r14 pushq %rbx subq $0x50, %rsp movl %edx, %ebx movq %rsi, %r15 movq %rdi, %r14 callq 0x57ecc testb %al, %al je 0x7afbc movq %rsp, %rbx movq %rbx, %rdi movq %r15, %rsi callq...
_ZNK5minja5Value3getIbEET_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES2_: push r15 push r14 push rbx sub rsp, 50h mov ebx, edx mov r15, rsi mov r14, rdi call _ZNK5minja5Value8containsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE; minja::Value::contains(std::string const&...
long long minja::Value::get<bool>(minja::Value *this, long long a2, unsigned int a3) { _QWORD *v4; // rax unsigned int v5; // eax long long v6; // rdi signed __int32 v7; // eax __int128 v9; // [rsp+0h] [rbp-68h] BYREF volatile signed __int32 *v10; // [rsp+18h] [rbp-50h] volatile signed __int32 *v11; // [...
get<bool>: PUSH R15 PUSH R14 PUSH RBX SUB RSP,0x50 MOV EBX,EDX MOV R15,RSI MOV R14,RDI CALL 0x00157ecc TEST AL,AL JZ 0x0017afbc MOV RBX,RSP MOV RDI,RBX MOV RSI,R15 CALL 0x00145828 LAB_0017af2e: MOV RDI,R14 MOV RSI,RBX CALL 0x00157a6e MOV RDI,RAX CALL 0x001427a8 LAB_0017af41: MOV EBX,EAX LEA R14,[RSP + 0x40] MOV RDI,R14...
/* bool minja::Value::get<bool>(std::__cxx11::string const&, bool) const */ bool __thiscall minja::Value::get<bool>(Value *this,string *param_1,bool param_2) { int *piVar1; char cVar2; int iVar3; Value *this_00; Value aVStack_68 [8]; long *local_60; _Sp_counted_base<(__gnu_cxx::_Lock_policy)2> *local_5...
25,656
my_error_unregister_all
eloqsql/mysys/my_error.c
void my_error_unregister_all(void) { struct my_err_head *cursor, *saved_next; for (cursor= my_errmsgs_globerrs.meh_next; cursor != NULL; cursor= saved_next) { /* We need this ptr, but we're about to free its container, so save it. */ saved_next= cursor->meh_next; my_free(cursor); } my_errmsgs_gl...
O3
c
my_error_unregister_all: movq 0x2ee803(%rip), %rdi # 0x36f748 testq %rdi, %rdi je 0x80f66 pushq %rbp movq %rsp, %rbp pushq %rbx pushq %rax movq (%rdi), %rbx callq 0x84732 movq %rbx, %rdi testq %rbx, %rbx jne 0x80f50 addq $0x8, %rsp popq %rbx popq %rbp movq $0x0, 0x2ee7d7(%rip) # 0x36f748 leaq 0x2ee7d0(%rip), %rax ...
my_error_unregister_all: mov rdi, cs:my_errmsgs_globerrs test rdi, rdi jz short loc_80F66 push rbp mov rbp, rsp push rbx push rax loc_80F50: mov rbx, [rdi] call my_free mov rdi, rbx test rbx, rbx jnz short loc_80F50 add rsp, 8 pop rbx pop rbp loc_80F66: mov cs:...
long long *my_error_unregister_all() { _QWORD *v0; // rdi _QWORD *v1; // rbx long long *result; // rax v0 = (_QWORD *)my_errmsgs_globerrs; if ( my_errmsgs_globerrs ) { do { v1 = (_QWORD *)*v0; my_free(v0); v0 = v1; } while ( v1 ); } my_errmsgs_globerrs = 0LL; result ...
my_error_unregister_all: MOV RDI,qword ptr [0x0046f748] TEST RDI,RDI JZ 0x00180f66 PUSH RBP MOV RBP,RSP PUSH RBX PUSH RAX LAB_00180f50: MOV RBX,qword ptr [RDI] CALL 0x00184732 MOV RDI,RBX TEST RBX,RBX JNZ 0x00180f50 ADD RSP,0x8 POP RBX POP RBP LAB_00180f66: MOV qword ptr [0x0046f748],0x0 LEA RAX,[0x46f748] MOV qword pt...
void my_error_unregister_all(void) { long *plVar1; plVar1 = my_errmsgs_globerrs; if (my_errmsgs_globerrs != (long *)0x0) { do { plVar1 = (long *)*plVar1; my_free(); } while (plVar1 != (long *)0x0); } my_errmsgs_globerrs = (long *)0x0; my_errmsgs_list = (int *)&my_errmsgs_globerrs; ...
25,657
stbi__hdr_to_ldr(float*, int, int, int)
7CodeWizard[P]stablediffusion/thirdparty/stb_image.h
static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp) { int i,k,n; stbi_uc *output; if (!data) return NULL; output = (stbi_uc *) stbi__malloc_mad3(x, y, comp, 0); if (output == NULL) { STBI_FREE(data); return stbi__errpuc("outofmem", "Out of memory"); } // compute number of non-alpha...
O0
c
stbi__hdr_to_ldr(float*, int, int, int): subq $0x38, %rsp movq %rdi, 0x28(%rsp) movl %esi, 0x24(%rsp) movl %edx, 0x20(%rsp) movl %ecx, 0x1c(%rsp) cmpq $0x0, 0x28(%rsp) jne 0x1718b movq $0x0, 0x30(%rsp) jmp 0x17395 movl 0x24(%rsp), %edi movl 0x20(%rsp), %esi movl 0x1c(%rsp), %edx xorl %ecx, %ecx callq 0x1c5f0 movq %rax,...
_ZL16stbi__hdr_to_ldrPfiii: sub rsp, 38h mov [rsp+38h+var_10], rdi mov [rsp+38h+var_14], esi mov [rsp+38h+var_18], edx mov [rsp+38h+var_1C], ecx cmp [rsp+38h+var_10], 0 jnz short loc_1718B mov [rsp+38h+var_8], 0 jmp loc_17395 loc_1718B: mov edi, [rsp+38h+var_14]; int mov esi,...
long long stbi__hdr_to_ldr(float *a1, int a2, int a3, int a4) { float v4; // xmm0_4 float v6; // [rsp+0h] [rbp-38h] float v7; // [rsp+4h] [rbp-34h] long long v8; // [rsp+8h] [rbp-30h] int v9; // [rsp+10h] [rbp-28h] int j; // [rsp+14h] [rbp-24h] int i; // [rsp+18h] [rbp-20h] if ( !a1 ) return 0LL; ...
stbi__hdr_to_ldr: SUB RSP,0x38 MOV qword ptr [RSP + 0x28],RDI MOV dword ptr [RSP + 0x24],ESI MOV dword ptr [RSP + 0x20],EDX MOV dword ptr [RSP + 0x1c],ECX CMP qword ptr [RSP + 0x28],0x0 JNZ 0x0011718b MOV qword ptr [RSP + 0x30],0x0 JMP 0x00117395 LAB_0011718b: MOV EDI,dword ptr [RSP + 0x24] MOV ESI,dword ptr [RSP + 0x2...
/* stbi__hdr_to_ldr(float*, int, int, int) */ long stbi__hdr_to_ldr(float *param_1,int param_2,int param_3,int param_4) { float fVar1; float local_38; float local_34; int local_28; int local_24; int local_20; long local_8; if (param_1 == (float *)0x0) { local_8 = 0; } else { local_8 = ...
25,658
stbi__hdr_to_ldr(float*, int, int, int)
7CodeWizard[P]stablediffusion/thirdparty/stb_image.h
static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp) { int i,k,n; stbi_uc *output; if (!data) return NULL; output = (stbi_uc *) stbi__malloc_mad3(x, y, comp, 0); if (output == NULL) { STBI_FREE(data); return stbi__errpuc("outofmem", "Out of memory"); } // compute number of non-alpha...
O1
c
stbi__hdr_to_ldr(float*, int, int, int): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x38, %rsp movq %rdi, 0x8(%rsp) testq %rdi, %rdi je 0x25e18 movl %edx, %ebp movl %esi, %r12d movl %esi, %edi movl %edx, %esi movq %rcx, 0x20(%rsp) movl %ecx, %edx xorl %ecx, %ecx callq 0x2924b testq %rax, %r...
_ZL16stbi__hdr_to_ldrPfiii: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 38h mov [rsp+68h+var_60], rdi test rdi, rdi jz loc_25E18 mov ebp, edx mov r12d, esi mov edi, esi; int mov esi, edx; int mov [rsp+68h+var_48], rcx mov edx, ecx; int xor ...
long long stbi__hdr_to_ldr(float *a1, int a2, int a3, int a4) { long long v5; // rax int v6; // ebp int v7; // esi long long v8; // rbp long long v9; // r15 float *v10; // r12 long long v11; // rbx long long v13; // [rsp+10h] [rbp-58h] long long v15; // [rsp+30h] [rbp-38h] if ( !a1 ) return 0L...
25,659
get_simple_collation_handler_by_flags
eloqsql/mysys/charset.c
static MY_COLLATION_HANDLER *get_simple_collation_handler_by_flags(uint flags) { return flags & MY_CS_BINSORT ? (flags & MY_CS_NOPAD ? &my_collation_8bit_nopad_bin_handler : &my_collation_8bit_bin_handler) : (flags & MY_CS_NOPAD ? &my_collation_8bit_simple_nop...
O0
c
get_simple_collation_handler_by_flags: pushq %rbp movq %rsp, %rbp movl %edi, -0x4(%rbp) movl -0x4(%rbp), %eax andl $0x10, %eax cmpl $0x0, %eax je 0x298a6 movl -0x4(%rbp), %edx andl $0x20000, %edx # imm = 0x20000 leaq 0x19a8d6(%rip), %rax # 0x1c4168 leaq 0x19a93f(%rip), %rcx # 0x1c41d8 cmpl $0x0, %edx cmo...
get_simple_collation_handler_by_flags: push rbp mov rbp, rsp mov [rbp+var_4], edi mov eax, [rbp+var_4] and eax, 10h cmp eax, 0 jz short loc_298A6 mov edx, [rbp+var_4] and edx, 20000h lea rax, my_collation_8bit_bin_handler lea rcx, my_collation_8bit_nopad_bin_handler cmp e...
long long ( ** get_simple_collation_handler_by_flags(int a1))() { long long ( **v1)(); // rax long long ( **v2)(); // rax if ( (a1 & 0x10) != 0 ) { v1 = my_collation_8bit_bin_handler; if ( (a1 & 0x20000) != 0 ) return my_collation_8bit_nopad_bin_handler; return v1; } else { v2 = my_...
get_simple_collation_handler_by_flags: PUSH RBP MOV RBP,RSP MOV dword ptr [RBP + -0x4],EDI MOV EAX,dword ptr [RBP + -0x4] AND EAX,0x10 CMP EAX,0x0 JZ 0x001298a6 MOV EDX,dword ptr [RBP + -0x4] AND EDX,0x20000 LEA RAX,[0x2c4168] LEA RCX,[0x2c41d8] CMP EDX,0x0 CMOVNZ RAX,RCX MOV qword ptr [RBP + -0x10],RAX JMP 0x001298c8 ...
int1 * get_simple_collation_handler_by_flags(uint param_1) { int1 *local_18; if ((param_1 & 0x10) == 0) { local_18 = my_collation_8bit_simple_ci_handler; if ((param_1 & 0x20000) != 0) { local_18 = my_collation_8bit_simple_nopad_ci_handler; } } else { local_18 = my_collation_8bit_bin_h...
25,660
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
reference at(KeyType && key) { // at only works for objects if (JSON_HEDLEY_UNLIKELY(!is_object())) { JSON_THROW(type_error::create(304, detail::concat("cannot use at() with ", type_name()), this)); } auto it = m_data.m_value.object->find(std::forward<KeyType>(ke...
O1
cpp
nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned c...
_ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE2atIRA8_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_: push rbp; char push r15; int push r14; i...
long long ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE2atIRA8_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_( long long a1, _BYTE *a2...
_ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE2atIRA8_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_: PUSH RBP PUSH R15 PUSH R14 PUSH R12 PUSH RBX SUB ...
char * _ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE2atIRA8_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_ (basic_json<nlohmann::jso...
25,661
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
reference at(KeyType && key) { // at only works for objects if (JSON_HEDLEY_UNLIKELY(!is_object())) { JSON_THROW(type_error::create(304, detail::concat("cannot use at() with ", type_name()), this)); } auto it = m_data.m_value.object->find(std::forward<KeyType>(ke...
O3
cpp
nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned c...
_ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE2atIRA10_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_: push rbp; char push r15; int push r14; ...
long long ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE2atIRA10_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_( long long a1, _BYTE *a...
_ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE2atIRA10_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_: PUSH RBP PUSH R15 PUSH R14 PUSH R12 PUSH RBX SUB...
char * _ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE2atIRA10_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_ (basic_json<nlohmann::js...
25,662
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
JSON_HEDLEY_RETURNS_NON_NULL const char* type_name() const noexcept { switch (m_data.m_type) { case value_t::null: return "null"; case value_t::object: return "object"; case value_t::array: return "array"; ...
O2
cpp
nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned c...
_ZNK8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE9type_nameEv: movzx eax, byte ptr [rdi] cmp rax, 9 ja short loc_6A848 lea rcx, unk_CFAB4 movsxd rax, dword ptr [rcx+rax*4] add rax, rcx r...
const char * 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>::type_name( unsigned __int8 *a1) { unsigned long long v1; // rax v1 =...
type_name: MOVZX EAX,byte ptr [RDI] CMP RAX,0x9 JA 0x0016a848 LEA RCX,[0x1cfab4] MOVSXD RAX,dword ptr [RCX + RAX*0x4] ADD RAX,RCX RET LAB_0016a848: LEA RAX,[0x1cf3e2] RET
/* 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>::type_name() const */ char * _...
25,663
LefDefParser::lefiMacro::setNumProperty(char const*, double, char const*, char)
Efficient-TDP/thirdparty/Limbo/limbo/thirdparty/lefdef/5.8/lef/lef/lefiMacro.cpp
void lefiMacro::setNumProperty(const char *name, double d, const char *value, const char type) { int len; if (numProperties_ == propertiesAllocated_) bumpProps(); len = strlen(name) + 1; propNames_[num...
O3
cpp
LefDefParser::lefiMacro::setNumProperty(char const*, double, char const*, char): pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x10, %rsp movl %ecx, %ebx movq %rdx, %r15 movsd %xmm0, 0x8(%rsp) movq %rsi, %r12 movq %rdi, %r14 movl 0x124(%rdi), %eax cmpl 0x128(%rdi), %eax jne 0x2b7dc movq %r14, %rdi callq ...
_ZN12LefDefParser9lefiMacro14setNumPropertyEPKcdS2_c: push r15 push r14 push r13 push r12 push rbx sub rsp, 10h mov ebx, ecx mov r15, rdx movsd [rsp+38h+var_30], xmm0 mov r12, rsi mov r14, rdi mov eax, [rdi+124h] cmp eax, [rdi+128h] jnz short loc_2B7DC mov rdi, r14; ...
long long LefDefParser::lefiMacro::setNumProperty( LefDefParser::lefiMacro *this, LefDefParser *a2, double a3, LefDefParser *a4, char a5) { int v7; // eax long long v8; // rax long long v9; // rdx long long v10; // r13 char *v11; // rsi int v12; // eax long long v1...
setNumProperty: PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x10 MOV EBX,ECX MOV R15,RDX MOVSD qword ptr [RSP + 0x8],XMM0 MOV R12,RSI MOV R14,RDI MOV EAX,dword ptr [RDI + 0x124] CMP EAX,dword ptr [RDI + 0x128] JNZ 0x0012b7dc MOV RDI,R14 CALL 0x0012b690 LAB_0012b7dc: MOV RDI,R12 CALL 0x001020d0 INC EAX MOVSXD R...
/* LefDefParser::lefiMacro::setNumProperty(char const*, double, char const*, char) */ void __thiscall LefDefParser::lefiMacro::setNumProperty (lefiMacro *this,char *param_1,double param_2,char *param_3,char param_4) { int iVar1; size_t sVar2; int8 uVar3; char *pcVar4; char *pcVar5; pcVar5 = ...
25,664
ggml_im2col
7CodeWizard[P]stablediffusion/ggml/src/ggml.c
struct ggml_tensor * ggml_im2col( struct ggml_context * ctx, struct ggml_tensor * a, struct ggml_tensor * b, int s0, int s1, int p0, int p1, int d0, int d1, bool ...
O2
c
ggml_im2col: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x58, %rsp movl %r9d, %r15d movq %rdx, %rbx movq %rsi, %r14 movb 0xa8(%rsp), %dl testb %dl, %dl je 0x6d5aa movq 0x20(%r14), %rax cmpq 0x20(%rbx), %rax je 0x6d5b8 movq 0x689cf(%rip), %rax # 0xd5f48 movq (%rax), %rdi callq 0xa6f0 mov...
ggml_im2col: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 58h mov r15d, r9d mov rbx, rdx mov r14, rsi mov dl, [rsp+88h+arg_18] test dl, dl jz short loc_6D5AA mov rax, [r14+20h] cmp rax, [rbx+20h] jz short loc_6D5B8 mov rax, cs:stdout_ptr m...
long long ggml_im2col( long long a1, _QWORD *a2, _QWORD *a3, int a4, int a5, int a6, int a7, int a8, int a9, unsigned __int8 a10) { long long v13; // rdi long long v14; // rsi long long v15; // r12 long long v16; // rax long long...
ggml_im2col: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x58 MOV R15D,R9D MOV RBX,RDX MOV R14,RSI MOV DL,byte ptr [RSP + 0xa8] TEST DL,DL JZ 0x0016d5aa MOV RAX,qword ptr [R14 + 0x20] CMP RAX,qword ptr [RBX + 0x20] JZ 0x0016d5b8 MOV RAX,qword ptr [0x001d5f48] MOV RDI,qword ptr [RAX] CALL 0x0010a6f0 MO...
long ggml_im2col(int8 param_1,long param_2,long param_3,int param_4,int param_5,int param_6, int param_7,int param_8,int param_9,byte param_10) { long lVar1; long lVar2; int8 uVar3; FILE *__stream; char *pcVar4; int local_78; int local_74; int local_70; int local_6c; int local_68; ...
25,665
flux::parser::IfStmt::clone() const
kvthweatt[P]FluxLang/src/parser/ast.cpp
std::unique_ptr<Stmt> IfStmt::clone() const { return std::make_unique<IfStmt>( condition->clone(), thenBranch->clone(), elseBranch ? elseBranch->clone() : nullptr, range); }
O2
cpp
flux::parser::IfStmt::clone() const: pushq %r14 pushq %rbx subq $0x28, %rsp movq %rsi, %r14 movq %rdi, %rbx movq 0x28(%rsi), %rsi movq (%rsi), %rax leaq 0x18(%rsp), %rdi callq *0x18(%rax) movq 0x30(%r14), %rsi movq (%rsi), %rax leaq 0x10(%rsp), %rdi callq *0x18(%rax) movq 0x38(%r14), %rsi testq %rsi, %rsi je 0xc33b mov...
_ZNK4flux6parser6IfStmt5cloneEv: push r14 push rbx sub rsp, 28h mov r14, rsi mov rbx, rdi mov rsi, [rsi+28h] mov rax, [rsi] lea rdi, [rsp+38h+var_20] call qword ptr [rax+18h] mov rsi, [r14+30h] mov rax, [rsi] lea rdi, [rsp+38h+var_28] call qword ptr [rax+18h] mov rsi,...
flux::parser::IfStmt * flux::parser::IfStmt::clone(flux::parser::IfStmt *this, long long a2) { long long v3; // rsi long long v4; // rax long long v6; // [rsp+8h] [rbp-30h] BYREF long long v7; // [rsp+10h] [rbp-28h] BYREF long long v8; // [rsp+18h] [rbp-20h] BYREF _QWORD v9[3]; // [rsp+20h] [rbp-18h] BYREF ...
clone: PUSH R14 PUSH RBX SUB RSP,0x28 MOV R14,RSI MOV RBX,RDI MOV RSI,qword ptr [RSI + 0x28] MOV RAX,qword ptr [RSI] LEA RDI,[RSP + 0x18] CALL qword ptr [RAX + 0x18] MOV RSI,qword ptr [R14 + 0x30] MOV RAX,qword ptr [RSI] LAB_0010c31d: LEA RDI,[RSP + 0x10] CALL qword ptr [RAX + 0x18] MOV RSI,qword ptr [R14 + 0x38] TEST ...
/* flux::parser::IfStmt::clone() const */ void flux::parser::IfStmt::clone(void) { int8 uVar1; long in_RSI; int8 *in_RDI; long *local_30; long *local_28; long *local_20; int8 local_18; (**(code **)(**(long **)(in_RSI + 0x28) + 0x18))(&local_20); /* try { // try from 0010c31d to...
25,666
Game::run()
GhostEscape/src/core/game.cpp
void Game::run() { while (is_running_){ auto start = SDL_GetTicksNS(); if (next_scene_){ changeScene(next_scene_); next_scene_ = nullptr; } handleEvents(); update(dt_); render(); auto end = SDL_GetTicksNS(); auto elapsed = end -...
O0
cpp
Game::run(): pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax movq %rax, -0x28(%rbp) movq -0x28(%rbp), %rax testb $0x1, 0x1c(%rax) je 0x6a60 callq 0x6230 movq %rax, %rcx movq -0x28(%rbp), %rax movq %rcx, -0x10(%rbp) cmpq $0x0, 0x28(%rax) je 0x6982 movq -0x28(%rbp), %rdi movq 0x28(...
_ZN4Game3runEv: push rbp mov rbp, rsp sub rsp, 30h mov [rbp+var_8], rdi mov rax, [rbp+var_8] mov [rbp+var_28], rax loc_6944: mov rax, [rbp+var_28] test byte ptr [rax+1Ch], 1 jz loc_6A60 call _SDL_GetTicksNS mov rcx, rax mov rax, [rbp+var_28] mov [rbp+var_10], rcx cmp ...
Game * Game::run(Game *this) { Game *result; // rax __m128d v2; // xmm0 float v3; // xmm0_4 __m128i v4; // [rsp+10h] [rbp-20h] BYREF long long TicksNS; // [rsp+20h] [rbp-10h] Game *v6; // [rsp+28h] [rbp-8h] v6 = this; while ( 1 ) { result = this; if ( (*((_BYTE *)this + 28) & 1) == 0 ) ...
run: PUSH RBP MOV RBP,RSP SUB RSP,0x30 MOV qword ptr [RBP + -0x8],RDI MOV RAX,qword ptr [RBP + -0x8] MOV qword ptr [RBP + -0x28],RAX LAB_00106944: MOV RAX,qword ptr [RBP + -0x28] TEST byte ptr [RAX + 0x1c],0x1 JZ 0x00106a60 CALL 0x00106230 MOV RCX,RAX MOV RAX,qword ptr [RBP + -0x28] MOV qword ptr [RBP + -0x10],RCX CMP ...
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */ /* Game::run() */ void __thiscall Game::run(Game *this) { int8 uVar1; long lVar2; long lVar3; ulong uVar4; int1 auVar5 [16]; int1 auVar6 [16]; while (((byte)this[0x1c] & 1) != 0) { lVar2 = SDL_GetTicksNS(); ...
25,667
Game::run()
GhostEscape/src/core/game.cpp
void Game::run() { while (is_running_){ auto start = SDL_GetTicksNS(); if (next_scene_){ changeScene(next_scene_); next_scene_ = nullptr; } handleEvents(); update(dt_); render(); auto end = SDL_GetTicksNS(); auto elapsed = end -...
O3
cpp
Game::run(): cmpb $0x1, 0x1c(%rdi) jne 0x5ad7 pushq %rbp movq %rsp, %rbp pushq %r14 pushq %rbx subq $0x10, %rsp movq %rdi, %rbx callq 0x51d0 movq %rax, %r14 movq 0x28(%rbx), %rsi testq %rsi, %rsi je 0x5a45 movq %rbx, %rdi callq 0x5ad8 movq $0x0, 0x28(%rbx) movq %rbx, %rdi callq 0x5b14 movss 0x40(%rbx), %xmm0 movss %xmm...
_ZN4Game3runEv: cmp byte ptr [rdi+1Ch], 1 jnz locret_5AD7 push rbp mov rbp, rsp push r14 push rbx sub rsp, 10h mov rbx, rdi loc_5A24: call _SDL_GetTicksNS mov r14, rax mov rsi, [rbx+28h] test rsi, rsi jz short loc_5A45 mov rdi, rbx call _ZN4Game11changeSceneEP5Scen...
void Game::run(Game *this) { long long TicksNS; // r14 Scene *v3; // rsi unsigned long long v4; // rax unsigned long long v5; // rdi bool v6; // cc unsigned long long v7; // rdi __m128d v8; // xmm0 float v9; // [rsp-1Ch] [rbp-1Ch] if ( *((_BYTE *)this + 28) == 1 ) { do { TicksNS = SD...
run: CMP byte ptr [RDI + 0x1c],0x1 JNZ 0x00105ad7 PUSH RBP MOV RBP,RSP PUSH R14 PUSH RBX SUB RSP,0x10 MOV RBX,RDI LAB_00105a24: CALL 0x001051d0 MOV R14,RAX MOV RSI,qword ptr [RBX + 0x28] TEST RSI,RSI JZ 0x00105a45 MOV RDI,RBX CALL 0x00105ad8 MOV qword ptr [RBX + 0x28],0x0 LAB_00105a45: MOV RDI,RBX CALL 0x00105b14 MOVSS...
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */ /* Game::run() */ void __thiscall Game::run(Game *this) { long lVar1; long lVar2; ulong uVar3; int1 auVar4 [16]; if (this[0x1c] == (Game)0x1) { do { lVar1 = SDL_GetTicksNS(); if (*(Scene **)(this + 0x28)...
25,668
common_chat_format_single[abi:cxx11](minja::chat_template const&, std::vector<common_chat_msg, std::allocator<common_chat_msg>> const&, common_chat_msg const&, bool, bool)
monkey531[P]llama/common/common.cpp
std::string common_chat_format_single( const common_chat_template & tmpl, const std::vector<common_chat_msg> & past_msg, const common_chat_msg & new_msg, bool add_ass, bool use_jinja) { std::ostringstream ss; auto fmt_past_msg = past_msg.empty() ? "" : common_chat_apply_t...
O2
cpp
common_chat_format_single[abi:cxx11](minja::chat_template const&, std::vector<common_chat_msg, std::allocator<common_chat_msg>> const&, common_chat_msg const&, bool, bool): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x1f8, %rsp # imm = 0x1F8 movl %r9d, %r15d movl %r8d, %ebp movq ...
_Z25common_chat_format_singleB5cxx11RKN5minja13chat_templateERKSt6vectorI15common_chat_msgSaIS4_EERKS4_bb: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 1F8h mov r15d, r9d mov ebp, r8d mov r12, rcx mov r13, rdx mov r14, rsi mov rbx, rdi lea rdi, [rsp+22...
long long common_chat_format_single[abi:cxx11]( long long a1, common_chat_inputs *a2, _QWORD *a3, long long a4, unsigned __int8 a5, unsigned __int8 a6) { long long v11; // [rsp+8h] [rbp-220h] BYREF long long v12; // [rsp+10h] [rbp-218h] _QWORD v13[3]; // [rsp+28h] ...
common_chat_format_single[abi:cxx11]: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x1f8 MOV R15D,R9D MOV EBP,R8D MOV R12,RCX MOV R13,RDX MOV R14,RSI MOV RBX,RDI LEA RDI,[RSP + 0x80] CALL 0x00124dd0 MOV RAX,qword ptr [R13] MOVZX R15D,R15B CMP RAX,qword ptr [R13 + 0x8] JZ 0x0015a715 LAB_0015a6fe: LEA RD...
/* common_chat_format_single[abi:cxx11](minja::chat_template const&, std::vector<common_chat_msg, std::allocator<common_chat_msg> > const&, common_chat_msg const&, bool, bool) */ chat_template * common_chat_format_single_abi_cxx11_ (chat_template *param_1,vector *param_2,common_chat_msg *param_3,bool par...
25,669
CLI::App::_trigger_pre_parse(unsigned long)
MikePodsytnik[P]TCRtrie/build_O0/_deps/cli11-src/include/CLI/impl/App_inl.hpp
CLI11_INLINE void App::_trigger_pre_parse(std::size_t remaining_args) { if(!pre_parse_called_) { pre_parse_called_ = true; if(pre_parse_callback_) { pre_parse_callback_(remaining_args); } } else if(immediate_callback_) { if(!name_.empty()) { auto pcnt = pa...
O0
cpp
CLI::App::_trigger_pre_parse(unsigned long): pushq %rbp movq %rsp, %rbp subq $0x50, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq -0x8(%rbp), %rax movq %rax, -0x48(%rbp) testb $0x1, 0x4e(%rax) jne 0x3459b movq -0x48(%rbp), %rdi movb $0x1, 0x4e(%rdi) addq $0x50, %rdi callq 0x34b20 testb $0x1, %al jne 0x34585 jm...
_ZN3CLI3App18_trigger_pre_parseEm: push rbp mov rbp, rsp sub rsp, 50h mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov rax, [rbp+var_8] mov [rbp+var_48], rax test byte ptr [rax+4Eh], 1 jnz short loc_3459B mov rdi, [rbp+var_48] mov byte ptr [rdi+4Eh], 1 add rdi, 50h ; 'P' call...
long long CLI::App::_trigger_pre_parse(CLI::App *this, long long a2) { long long result; // rax long long v3[3]; // [rsp+20h] [rbp-30h] BYREF int v4; // [rsp+3Ch] [rbp-14h] long long v5; // [rsp+40h] [rbp-10h] CLI::App *v6; // [rsp+48h] [rbp-8h] v6 = this; v5 = a2; if ( (*((_BYTE *)this + 78) & 1) != ...
_trigger_pre_parse: PUSH RBP MOV RBP,RSP SUB RSP,0x50 MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV RAX,qword ptr [RBP + -0x8] MOV qword ptr [RBP + -0x48],RAX TEST byte ptr [RAX + 0x4e],0x1 JNZ 0x0013459b MOV RDI,qword ptr [RBP + -0x48] MOV byte ptr [RDI + 0x4e],0x1 ADD RDI,0x50 CALL 0x00134b20 TES...
/* CLI::App::_trigger_pre_parse(unsigned long) */ void __thiscall CLI::App::_trigger_pre_parse(App *this,ulong param_1) { bool bVar1; ulong uVar2; vector<std::pair<CLI::detail::Classifier,std::__cxx11::string>,std::allocator<std::pair<CLI::detail::Classifier,std::__cxx11::string>>> local_38 [28]; int4 loca...
25,670
my_is_printable
eloqsql/strings/ctype.c
static inline my_bool my_is_printable(my_wc_t wc) { /* Blocks: U+0000 .. U+001F control U+0020 .. U+007E printable U+007F .. U+009F control U+00A0 .. U+00FF printable U+0100 .. U+10FFFF As of Unicode-6.1.0, this range does not have any cha...
O0
c
my_is_printable: pushq %rbp movq %rsp, %rbp movq %rdi, -0x10(%rbp) cmpq $0x20, -0x10(%rbp) jb 0x6d4bc cmpq $0x7e, -0x10(%rbp) ja 0x6d4bc movb $0x1, -0x1(%rbp) jmp 0x6d514 cmpq $0x9f, -0x10(%rbp) ja 0x6d4f6 movb $0x1, %al cmpq $0xd, -0x10(%rbp) movb %al, -0x11(%rbp) je 0x6d4e9 movb $0x1, %al cmpq $0xa, -0x10(%rbp) movb ...
my_is_printable: push rbp mov rbp, rsp mov [rbp+var_10], rdi cmp [rbp+var_10], 20h ; ' ' jb short loc_6D4BC cmp [rbp+var_10], 7Eh ; '~' ja short loc_6D4BC mov [rbp+var_1], 1 jmp short loc_6D514 loc_6D4BC: cmp [rbp+var_10], 9Fh ja short loc_6D4F6 mov al, 1 cmp [rbp+v...
bool my_is_printable(unsigned long long a1) { bool v2; // [rsp+1h] [rbp-11h] if ( a1 >= 0x20 && a1 <= 0x7E ) return 1; if ( a1 > 0x9F ) return a1 < 0xD800 || a1 > 0xDFFF; v2 = 1; if ( a1 != 13 ) { v2 = 1; if ( a1 != 10 ) return a1 == 9; } return v2; }
my_is_printable: PUSH RBP MOV RBP,RSP MOV qword ptr [RBP + -0x10],RDI CMP qword ptr [RBP + -0x10],0x20 JC 0x0016d4bc CMP qword ptr [RBP + -0x10],0x7e JA 0x0016d4bc MOV byte ptr [RBP + -0x1],0x1 JMP 0x0016d514 LAB_0016d4bc: CMP qword ptr [RBP + -0x10],0x9f JA 0x0016d4f6 MOV AL,0x1 CMP qword ptr [RBP + -0x10],0xd MOV byt...
bool my_is_printable(ulong param_1) { int1 local_19; int1 local_9; if ((param_1 < 0x20) || (0x7e < param_1)) { if (param_1 < 0xa0) { local_19 = true; if ((param_1 != 0xd) && (local_19 = true, param_1 != 10)) { local_19 = param_1 == 9; } local_9 = local_19; } else i...
25,671
my_is_symlink
eloqsql/mysys/my_symlink.c
int my_is_symlink(const char *filename __attribute__((unused))) { #if defined (HAVE_LSTAT) && defined (S_ISLNK) struct stat stat_buff; if (lstat(filename, &stat_buff)) return 0; MSAN_STAT_WORKAROUND(&stat_buff); return !!S_ISLNK(stat_buff.st_mode); #elif defined (_WIN32) DWORD dwAttr = GetFileAttributes(f...
O3
c
my_is_symlink: pushq %rbp movq %rsp, %rbp pushq %rbx subq $0x98, %rsp leaq -0x98(%rbp), %rbx movq %rbx, %rsi callq 0x29530 movl 0x18(%rbx), %edx andl $0xf000, %edx # imm = 0xF000 xorl $0xa000, %edx # imm = 0xA000 xorl %ecx, %ecx orl %eax, %edx sete %cl movl %ecx, %eax addq $0x98, %rsp popq %rbx popq...
my_is_symlink: push rbp mov rbp, rsp push rbx sub rsp, 98h lea rbx, [rbp+var_98] mov rsi, rbx call _lstat64 mov edx, [rbx+18h] and edx, 0F000h xor edx, 0A000h xor ecx, ecx or edx, eax setz cl mov eax, ecx add rsp, 98h pop rbx pop rbp retn
_BOOL8 my_is_symlink(long long a1) { int v1; // eax _BYTE v3[24]; // [rsp+8h] [rbp-98h] BYREF __int16 v4; // [rsp+20h] [rbp-80h] v1 = lstat64(a1, v3); return (v1 | v4 & 0xF000 ^ 0xA000) == 0; }
my_is_symlink: PUSH RBP MOV RBP,RSP PUSH RBX SUB RSP,0x98 LEA RBX,[RBP + -0x98] MOV RSI,RBX CALL 0x00129530 MOV EDX,dword ptr [RBX + 0x18] AND EDX,0xf000 XOR EDX,0xa000 XOR ECX,ECX OR EDX,EAX SETZ CL MOV EAX,ECX ADD RSP,0x98 POP RBX POP RBP RET
bool my_is_symlink(char *param_1) { int iVar1; stat64 local_a0; iVar1 = lstat64(param_1,&local_a0); return (local_a0.st_mode & 0xf000) == 0xa000 && iVar1 == 0; }
25,672
wqueue_release_one_locktype_from_queue
eloqsql/mysys/wqueue.c
void wqueue_release_one_locktype_from_queue(WQUEUE *wqueue) { struct st_my_thread_var *last= wqueue->last_thread; struct st_my_thread_var *next= last->next; struct st_my_thread_var *thread; struct st_my_thread_var *new_list= NULL; uint first_type= next->lock_type; if (first_type == MY_PTHREAD_LOCK_WRITE) ...
O0
c
wqueue_release_one_locktype_from_queue: pushq %rbp movq %rsp, %rbp subq $0x30, %rsp movq %rdi, -0x8(%rbp) movq -0x8(%rbp), %rax movq (%rax), %rax movq %rax, -0x10(%rbp) movq -0x10(%rbp), %rax movq 0x88(%rax), %rax movq %rax, -0x18(%rbp) movq $0x0, -0x28(%rbp) movq -0x18(%rbp), %rax movl 0xe4(%rax), %eax movl %eax, -0x2...
wqueue_release_one_locktype_from_queue: push rbp mov rbp, rsp sub rsp, 30h mov [rbp+var_8], rdi mov rax, [rbp+var_8] mov rax, [rax] mov [rbp+var_10], rax mov rax, [rbp+var_10] mov rax, [rax+88h] mov [rbp+var_18], rax mov [rbp+var_28], 0 mov rax, [rbp+var_18] mov eax, [...
long long * wqueue_release_one_locktype_from_queue(long long **a1) { long long *result; // rax long long *v2; // rax _BYTE v3[12]; // [rsp+4h] [rbp-2Ch] long long *v4; // [rsp+10h] [rbp-20h] long long *v5; // [rsp+18h] [rbp-18h] long long *v6; // [rsp+20h] [rbp-10h] v6 = *a1; v5 = (long long *)(*a1)[17...
wqueue_release_one_locktype_from_queue: PUSH RBP MOV RBP,RSP SUB RSP,0x30 MOV qword ptr [RBP + -0x8],RDI MOV RAX,qword ptr [RBP + -0x8] MOV RAX,qword ptr [RAX] MOV qword ptr [RBP + -0x10],RAX MOV RAX,qword ptr [RBP + -0x10] MOV RAX,qword ptr [RAX + 0x88] MOV qword ptr [RBP + -0x18],RAX MOV qword ptr [RBP + -0x28],0x0 M...
void wqueue_release_one_locktype_from_queue(long *param_1) { long lVar1; long lVar2; bool bVar3; int8 local_30; int8 local_20; lVar1 = *param_1; local_20 = *(long *)(lVar1 + 0x88); local_30 = 0; if (*(int *)(local_20 + 0xe4) == 1) { inline_mysql_cond_signal(local_20 + 8); if (local_20 == ...
25,673
metrics::Label::Label(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&)
nickolajgrishuk[P]metricz-cpp/examples/../include/metrics.hpp
Label(const std::string& n, const std::string& v) : name(n), value(v) {}
O1
cpp
metrics::Label::Label(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&): pushq %r15 pushq %r14 pushq %rbx movq %rdx, %r14 movq %rdi, %rbx leaq 0x10(%rdi), %r15 movq %r15, (%rdi) movq (%rsi), %rax ...
_ZN7metrics5LabelC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_: push r15 push r14 push rbx mov r14, rdx mov rbx, rdi lea r15, [rdi+10h] mov [rdi], r15 mov rax, [rsi] mov rdx, [rsi+8] add rdx, rax mov rsi, rax call _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcE...
long long metrics::Label::Label(_QWORD *a1, _QWORD *a2, _QWORD *a3) { *a1 = a1 + 2; std::string::_M_construct<char *>(a1, *a2, *a2 + a2[1]); a1[4] = a1 + 6; return std::string::_M_construct<char *>(a1 + 4, *a3, *a3 + a3[1]); }
Label: PUSH R15 PUSH R14 PUSH RBX MOV R14,RDX MOV RBX,RDI LEA R15,[RDI + 0x10] MOV qword ptr [RDI],R15 MOV RAX,qword ptr [RSI] MOV RDX,qword ptr [RSI + 0x8] ADD RDX,RAX MOV RSI,RAX CALL 0x001041c8 LEA RDI,[RBX + 0x20] LEA RAX,[RBX + 0x30] MOV qword ptr [RBX + 0x20],RAX MOV RSI,qword ptr [R14] MOV RDX,qword ptr [R14 + 0...
/* metrics::Label::Label(std::__cxx11::string const&, std::__cxx11::string const&) */ void __thiscall metrics::Label::Label(Label *this,string *param_1,string *param_2) { *(Label **)this = this + 0x10; std::__cxx11::string::_M_construct<char*> (this,*(long *)param_1,*(long *)(param_1 + 8) + *(long *)...
25,674
stbi__pnm_test(stbi__context*)
monkey531[P]llama/examples/llava/../../common/stb_image.h
static int stbi__pnm_test(stbi__context *s) { char p, t; p = (char) stbi__get8(s); t = (char) stbi__get8(s); if (p != 'P' || (t != '5' && t != '6')) { stbi__rewind( s ); return 0; } return 1; }
O3
c
stbi__pnm_test(stbi__context*): pushq %rbp pushq %rbx pushq %rax movq %rdi, %rbx movq 0xc0(%rdi), %rax movq 0xc8(%rdi), %rcx cmpq %rcx, %rax jb 0x3a491 cmpl $0x0, 0x30(%rbx) je 0x3a4f8 movq %rbx, %rdi callq 0x3ba17 movq 0xc0(%rbx), %rax movq 0xc8(%rbx), %rcx leaq 0x1(%rax), %rdx movq %rdx, 0xc0(%rbx) cmpb $0x50, (%rax)...
_ZL14stbi__pnm_testP13stbi__context: push rbp push rbx push rax mov rbx, rdi mov rax, [rdi+0C0h] mov rcx, [rdi+0C8h] cmp rax, rcx jb short loc_3A491 cmp dword ptr [rbx+30h], 0 jz short loc_3A4F8 mov rdi, rbx call _ZL19stbi__refill_bufferP13stbi__context; stbi__refill_buffer...
long long stbi__pnm_test(long long a1) { _BYTE *v1; // rax unsigned long long v2; // rcx char v3; // bp bool v4; // cl long long result; // rax v1 = *(_BYTE **)(a1 + 192); v2 = *(_QWORD *)(a1 + 200); if ( (unsigned long long)v1 < v2 ) goto LABEL_4; if ( *(_DWORD *)(a1 + 48) ) { stbi__refil...
stbi__pnm_test: PUSH RBP PUSH RBX PUSH RAX MOV RBX,RDI MOV RAX,qword ptr [RDI + 0xc0] MOV RCX,qword ptr [RDI + 0xc8] CMP RAX,RCX JC 0x0013a491 CMP dword ptr [RBX + 0x30],0x0 JZ 0x0013a4f8 MOV RDI,RBX CALL 0x0013ba17 MOV RAX,qword ptr [RBX + 0xc0] MOV RCX,qword ptr [RBX + 0xc8] LAB_0013a491: LEA RDX,[RAX + 0x1] MOV qwor...
/* stbi__pnm_test(stbi__context*) */ int8 stbi__pnm_test(stbi__context *param_1) { char *pcVar1; char *pcVar2; bool bVar3; pcVar1 = *(char **)(param_1 + 0xc0); pcVar2 = *(char **)(param_1 + 200); if (pcVar1 < pcVar2) { LAB_0013a491: *(char **)(param_1 + 0xc0) = pcVar1 + 1; bVar3 = *pcVar1 != '...
25,675
coro::detail::when_all_ready_awaitable<std::tuple<coro::detail::when_all_task<void>, coro::detail::when_all_task<void>>>::operator co_await() &&
AlayaLite/build_O0/_deps/libcoro-src/include/coro/when_all.hpp
auto operator co_await() && noexcept { struct awaiter { explicit awaiter(when_all_ready_awaitable& awaitable) noexcept : m_awaitable(awaitable) {} auto await_ready() const noexcept -> bool { return m_awaitable.is_ready(); } auto await_suspend(std::coroutine_hand...
O0
cpp
coro::detail::when_all_ready_awaitable<std::tuple<coro::detail::when_all_task<void>, coro::detail::when_all_task<void>>>::operator co_await() &&: subq $0x18, %rsp movq %rdi, 0x8(%rsp) movq 0x8(%rsp), %rsi leaq 0x10(%rsp), %rdi callq 0x66170 movq 0x10(%rsp), %rax addq $0x18, %rsp retq nopw %cs:(%rax,%rax) nopl (%rax)
_ZNO4coro6detail24when_all_ready_awaitableISt5tupleIJNS0_13when_all_taskIvEES4_EEEawEv: sub rsp, 18h mov [rsp+18h+var_10], rdi mov rsi, [rsp+18h+var_10] lea rdi, [rsp+18h+var_8] call _ZZNO4coro6detail24when_all_ready_awaitableISt5tupleIJNS0_13when_all_taskIvEES4_EEEawEvEN7awaiterC2ERS6_; coro::detail...
long long coro::detail::when_all_ready_awaitable<std::tuple<coro::detail::when_all_task<void>,coro::detail::when_all_task<void>>>::operator co_await( long long a1) { long long v2; // [rsp+10h] [rbp-8h] BYREF coro::detail::when_all_ready_awaitable<std::tuple<coro::detail::when_all_task<void>,coro::detail::...
operator.cast.to.co_await: SUB RSP,0x18 MOV qword ptr [RSP + 0x8],RDI MOV RSI,qword ptr [RSP + 0x8] LEA RDI,[RSP + 0x10] CALL 0x00166170 MOV RAX,qword ptr [RSP + 0x10] ADD RSP,0x18 RET
/* coro::detail::when_all_ready_awaitable<std::tuple<coro::detail::when_all_task<void>, coro::detail::when_all_task<void> > >::operator co_await() && */ int8 __thiscall coro::detail::when_all_ready_awaitable::operator_cast_to_co_await(when_all_ready_awaitable *this) { int8 local_8; operator_cast_to_co_awai...
25,676
my_copy_fix_mb2_or_mb4
eloqsql/strings/ctype-ucs2.c
static size_t my_copy_fix_mb2_or_mb4(CHARSET_INFO *cs, char *dst, size_t dst_length, const char *src, size_t src_length, size_t nchars, MY_STRCOPY_STATUS *status) { size_t length2, src_offset= src_length % cs->mbminlen; my_char_copy_status_t padst...
O0
c
my_copy_fix_mb2_or_mb4: pushq %rbp movq %rsp, %rbp subq $0x60, %rsp movq 0x10(%rbp), %rax movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movq %rcx, -0x28(%rbp) movq %r8, -0x30(%rbp) movq %r9, -0x38(%rbp) movq -0x30(%rbp), %rax movq -0x10(%rbp), %rcx movl 0x98(%rcx), %ecx xorl %edx, %edx divq %rcx ...
my_copy_fix_mb2_or_mb4: push rbp mov rbp, rsp sub rsp, 60h mov rax, [rbp+arg_0] 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 [rbp+var_38], r9 mov rax, [rbp+var_30] mov rcx, [rbp+var_10] mov ecx, [rcx+9...
long long my_copy_fix_mb2_or_mb4( long long a1, long long a2, unsigned long long a3, long long a4, unsigned long long a5, long long a6, long long *a7) { int v8; // [rsp+14h] [rbp-4Ch] unsigned long long v9; // [rsp+18h] [rbp-48h] long long fixed; // [rsp+20...
my_copy_fix_mb2_or_mb4: PUSH RBP MOV RBP,RSP SUB RSP,0x60 MOV RAX,qword ptr [RBP + 0x10] 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 qword ptr [RBP + -0x38],R9 MOV RAX,qword ptr [RBP + -0x30] MOV RCX,q...
long my_copy_fix_mb2_or_mb4 (long param_1,long param_2,long param_3,long param_4,ulong param_5,long param_6, long *param_7) { int iVar1; ulong uVar2; long local_10; uVar2 = param_5 % (ulong)*(uint *)(param_1 + 0x98); if (uVar2 == 0) { local_10 = my_copy_fix_mb(param_1,pa...
25,677
my_copy_fix_mb2_or_mb4
eloqsql/strings/ctype-ucs2.c
static size_t my_copy_fix_mb2_or_mb4(CHARSET_INFO *cs, char *dst, size_t dst_length, const char *src, size_t src_length, size_t nchars, MY_STRCOPY_STATUS *status) { size_t length2, src_offset= src_length % cs->mbminlen; my_char_copy_status_t padst...
O3
c
my_copy_fix_mb2_or_mb4: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x38, %rsp movq %rcx, %r12 movq %rdx, %r10 movq %rsi, %rbx movq %rdi, %r14 movl 0x98(%rdi), %r13d movq %r8, %rax xorl %edx, %edx divq %r13 testq %rdx, %rdx je 0x47be5 cmpq %r10, %r13 seta %al movq 0x10(%rbp),...
my_copy_fix_mb2_or_mb4: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 38h mov r12, rcx mov r10, rdx mov rbx, rsi mov r14, rdi mov r13d, [rdi+98h] mov rax, r8 xor edx, edx div r13 test rdx, rdx jz loc_47BE5 cmp r13, r10 s...
unsigned long long my_copy_fix_mb2_or_mb4( long long a1, long long a2, unsigned long long a3, long long a4, unsigned long long a5, long long a6, unsigned long long *a7) { unsigned long long v9; // r13 unsigned long long *v10; // rsi unsigned long long v11; ...
my_copy_fix_mb2_or_mb4: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x38 MOV R12,RCX MOV R10,RDX MOV RBX,RSI MOV R14,RDI MOV R13D,dword ptr [RDI + 0x98] MOV RAX,R8 XOR EDX,EDX DIV R13 TEST RDX,RDX JZ 0x00147be5 CMP R13,R10 SETA AL MOV RSI,qword ptr [RBP + 0x10] TEST R9,R9 SETZ CL OR CL,AL ...
long my_copy_fix_mb2_or_mb4 (long param_1,void *param_2,ulong param_3,void *param_4,ulong param_5,long param_6, int8 *param_7) { uint uVar1; uint uVar2; uint uVar3; long lVar4; ulong __n; ulong uVar5; uVar5 = (ulong)*(uint *)(param_1 + 0x98); __n = param_5 % uVar5; i...
25,678
my_strnncoll_8bit_bin
eloqsql/strings/ctype-bin.c
static int my_strnncoll_8bit_bin(CHARSET_INFO * cs __attribute__((unused)), const uchar *s, size_t slen, const uchar *t, size_t tlen, my_bool t_is_prefix) { size_t len=MY_MIN(slen,tlen); int cmp= memcmp(s,t,len); re...
O0
c
my_strnncoll_8bit_bin: pushq %rbp movq %rsp, %rbp subq $0x60, %rsp movb %r9b, %al movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq %rcx, -0x20(%rbp) movq %r8, -0x28(%rbp) movb %al, -0x29(%rbp) movq -0x18(%rbp), %rax cmpq -0x28(%rbp), %rax jae 0x4b496 movq -0x18(%rbp), %rax movq %rax, -0x48(%rbp)...
my_strnncoll_8bit_bin: push rbp mov rbp, rsp sub rsp, 60h mov al, r9b mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov [rbp+var_18], rdx mov [rbp+var_20], rcx mov [rbp+var_28], r8 mov [rbp+var_29], al mov rax, [rbp+var_18] cmp rax, [rbp+var_28] jnb short loc_4B496 mov ...
long long my_strnncoll_8bit_bin( long long a1, long long a2, unsigned long long a3, long long a4, unsigned long long a5, char a6) { int v7; // [rsp+8h] [rbp-58h] unsigned long long v9; // [rsp+18h] [rbp-48h] unsigned int v10; // [rsp+24h] [rbp-3Ch] int v12; // [r...
my_strnncoll_8bit_bin: PUSH RBP MOV RBP,RSP SUB RSP,0x60 MOV AL,R9B MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV qword ptr [RBP + -0x18],RDX MOV qword ptr [RBP + -0x20],RCX MOV qword ptr [RBP + -0x28],R8 MOV byte ptr [RBP + -0x29],AL MOV RAX,qword ptr [RBP + -0x18] CMP RAX,qword ptr [RBP + -0x28] ...
int my_strnncoll_8bit_bin (int8 param_1,void *param_2,ulong param_3,void *param_4,ulong param_5, char param_6) { ulong local_60; int local_54; size_t local_50; local_50 = param_5; if (param_3 < param_5) { local_50 = param_3; } local_54 = memcmp(param_2,param_4,local_50...
25,679
my_caseup_utf8mb3
eloqsql/strings/ctype-utf8.c
static size_t my_caseup_utf8mb3(CHARSET_INFO *cs, const char *src, size_t srclen, char *dst, size_t dstlen) { my_wc_t wc; int srcres, dstres; const char *srcend= src + srclen; char *dstend= dst + dstlen, *dst0= dst; MY_UNICASE_INFO *uni_plane= cs...
O0
c
my_caseup_utf8mb3: pushq %rbp movq %rsp, %rbp subq $0x60, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq %rcx, -0x20(%rbp) movq %r8, -0x28(%rbp) movq -0x10(%rbp), %rax addq -0x18(%rbp), %rax movq %rax, -0x40(%rbp) movq -0x20(%rbp), %rax addq -0x28(%rbp), %rax movq %rax, -0x48(%rbp) movq -...
my_caseup_utf8mb3: push rbp mov rbp, rsp sub rsp, 60h mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov [rbp+var_18], rdx mov [rbp+var_20], rcx mov [rbp+var_28], r8 mov rax, [rbp+var_10] add rax, [rbp+var_18] mov [rbp+var_40], rax mov rax, [rbp+var_20] add rax, [rbp+var_2...
_BYTE * my_caseup_utf8mb3(long long a1, unsigned long long a2, long long a3, _BYTE *a4, long long a5, long long a6) { bool v7; // [rsp+7h] [rbp-59h] long long v8; // [rsp+8h] [rbp-58h] unsigned long long v10; // [rsp+18h] [rbp-48h] unsigned long long v11; // [rsp+20h] [rbp-40h] int v12; // [rsp+28h] [rbp-38h]...
my_caseup_utf8mb3: PUSH RBP MOV RBP,RSP SUB RSP,0x60 MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV qword ptr [RBP + -0x18],RDX MOV qword ptr [RBP + -0x20],RCX MOV qword ptr [RBP + -0x28],R8 MOV RAX,qword ptr [RBP + -0x10] ADD RAX,qword ptr [RBP + -0x18] MOV qword ptr [RBP + -0x40],RAX MOV RAX,qword...
long my_caseup_utf8mb3(long param_1,ulong param_2,long param_3,long param_4,long param_5) { int8 uVar1; bool bVar2; int iVar3; int local_3c; int8 local_38; long local_30; long local_28; long local_20; ulong local_18; long local_10; uVar1 = *(int8 *)(param_1 + 0x78); local_30 = param_5; lo...
25,680
my_coll_rule_expand
eloqsql/strings/ctype-uca.c
static int my_coll_rule_expand(my_wc_t *wc, size_t limit, my_wc_t code) { size_t i; for (i= 0; i < limit; i++) { if (wc[i] == 0) { wc[i]= code; return 1; } } return 0; }
O0
c
my_coll_rule_expand: pushq %rbp movq %rsp, %rbp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movq $0x0, -0x28(%rbp) movq -0x28(%rbp), %rax cmpq -0x18(%rbp), %rax jae 0x51eba movq -0x10(%rbp), %rax movq -0x28(%rbp), %rcx cmpq $0x0, (%rax,%rcx,8) jne 0x51eaa movq -0x20(%rbp), %rdx movq -0x10(%rbp)...
my_coll_rule_expand: push rbp mov rbp, rsp mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov [rbp+var_20], rdx mov [rbp+var_28], 0 loc_51E78: mov rax, [rbp+var_28] cmp rax, [rbp+var_18] jnb short loc_51EBA mov rax, [rbp+var_10] mov rcx, [rbp+var_28] cmp qword ptr [rax+rcx*8]...
long long my_coll_rule_expand(long long a1, unsigned long long a2, long long a3) { unsigned long long i; // [rsp+0h] [rbp-28h] for ( i = 0LL; i < a2; ++i ) { if ( !*(_QWORD *)(a1 + 8 * i) ) { *(_QWORD *)(a1 + 8 * i) = a3; return 1; } } return 0; }
my_coll_rule_expand: 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],0x0 LAB_00151e78: MOV RAX,qword ptr [RBP + -0x28] CMP RAX,qword ptr [RBP + -0x18] JNC 0x00151eba MOV RAX,qword ptr [RBP + -0x10] MOV RCX,qword ptr [RBP + ...
int4 my_coll_rule_expand(long param_1,ulong param_2,int8 param_3) { ulong local_30; local_30 = 0; while( true ) { if (param_2 <= local_30) { return 0; } if (*(long *)(param_1 + local_30 * 8) == 0) break; local_30 = local_30 + 1; } *(int8 *)(param_1 + local_30 * 8) = param_3; retur...
25,681
stop_waiting_locked
eloqsql/mysys/waiting_threads.c
static int stop_waiting_locked(WT_THD *thd) { int ret; WT_RESOURCE *rc= thd->waiting_for; DBUG_ENTER("stop_waiting_locked"); DBUG_ASSERT(rc->waiter_count); DBUG_ASSERT(rc->state == ACTIVE); rc->waiter_count--; thd->waiting_for= 0; ret= unlock_lock_and_free_resource(thd, rc); DBUG_RETURN((thd->killed ...
O3
c
stop_waiting_locked: pushq %rbp movq %rsp, %rbp movq 0x28(%rdi), %rsi decl 0x10(%rsi) movq $0x0, 0x28(%rdi) popq %rbp jmp 0xa81f1
stop_waiting_locked: push rbp mov rbp, rsp mov rsi, [rdi+28h] dec dword ptr [rsi+10h] mov qword ptr [rdi+28h], 0 pop rbp jmp unlock_lock_and_free_resource
long long stop_waiting_locked(long long a1) { --*(_DWORD *)(*(_QWORD *)(a1 + 40) + 16LL); *(_QWORD *)(a1 + 40) = 0LL; return unlock_lock_and_free_resource(a1); }
stop_waiting_locked: PUSH RBP MOV RBP,RSP MOV RSI,qword ptr [RDI + 0x28] DEC dword ptr [RSI + 0x10] MOV qword ptr [RDI + 0x28],0x0 POP RBP JMP 0x001a81f1
void stop_waiting_locked(long param_1) { int *piVar1; piVar1 = (int *)(*(long *)(param_1 + 0x28) + 0x10); *piVar1 = *piVar1 + -1; *(int8 *)(param_1 + 0x28) = 0; unlock_lock_and_free_resource(); return; }
25,682
my_hash_sort_utf32_nopad
eloqsql/strings/ctype-ucs2.c
static void my_hash_sort_utf32_nopad(CHARSET_INFO *cs, const uchar *s, size_t slen, ulong *nr1, ulong *nr2) { my_wc_t wc; int res; const uchar *e= s + slen; MY_UNICASE_INFO *uni_plane= cs->caseinfo; register ulong m1= *nr1, m2= *nr2; while ((res= my_utf32_uni(cs, &wc, (uchar*) s, (...
O0
c
my_hash_sort_utf32_nopad: pushq %rbp movq %rsp, %rbp subq $0x60, %rsp movq %rdi, -0x8(%rbp) movq %rsi, -0x10(%rbp) movq %rdx, -0x18(%rbp) movq %rcx, -0x20(%rbp) movq %r8, -0x28(%rbp) movq -0x10(%rbp), %rax addq -0x18(%rbp), %rax movq %rax, -0x40(%rbp) movq -0x8(%rbp), %rax movq 0x78(%rax), %rax movq %rax, -0x48(%rbp) m...
my_hash_sort_utf32_nopad: push rbp mov rbp, rsp sub rsp, 60h mov [rbp+var_8], rdi mov [rbp+var_10], rsi mov [rbp+var_18], rdx mov [rbp+var_20], rcx mov [rbp+var_28], r8 mov rax, [rbp+var_10] add rax, [rbp+var_18] mov [rbp+var_40], rax mov rax, [rbp+var_8] mov rax, [rax...
_QWORD * my_hash_sort_utf32_nopad(long long a1, long long a2, long long a3, long long *a4, _QWORD *a5, long long a6) { _QWORD *result; // rax long long v7; // [rsp+8h] [rbp-58h] long long v8; // [rsp+8h] [rbp-58h] long long v9; // [rsp+10h] [rbp-50h] long long v10; // [rsp+10h] [rbp-50h] long long v11; // [...
my_hash_sort_utf32_nopad: PUSH RBP MOV RBP,RSP SUB RSP,0x60 MOV qword ptr [RBP + -0x8],RDI MOV qword ptr [RBP + -0x10],RSI MOV qword ptr [RBP + -0x18],RDX MOV qword ptr [RBP + -0x20],RCX MOV qword ptr [RBP + -0x28],R8 MOV RAX,qword ptr [RBP + -0x10] ADD RAX,qword ptr [RBP + -0x18] MOV qword ptr [RBP + -0x40],RAX MOV RA...
void my_hash_sort_utf32_nopad(long param_1,long param_2,long param_3,ulong *param_4,long *param_5) { int8 uVar1; int iVar2; long local_60; ulong local_58; ulong local_38; long *local_30; ulong *local_28; long local_20; long local_18; long local_10; uVar1 = *(int8 *)(param_1 + 0x78); local_5...
25,683
DecodeDataBase64
csit-sgu[P]mit-game-2025_1/Libraries/raylib/src/rcore.c
unsigned char *DecodeDataBase64(const unsigned char *data, int *outputSize) { static const unsigned char base64decodeTable[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 0, 0, 0, 63, 52, 53, 54, 55, 56, 57, 5...
O1
c
DecodeDataBase64: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx pushq %rax movq %rsi, (%rsp) movq %rdi, %r14 cmpb $0x0, (%rdi) je 0x7adbb xorl %ebp, %ebp movl $0x4, %eax leal -0x1(%rax), %edx movl $0x3, %ecx cmpb $0x3d, (%r14,%rdx) jne 0x7adac leal -0x2(%rax), %edx xorl %ecx, %ecx cmpb $0x3d, (%r14,...
DecodeDataBase64: push rbp push r15 push r14 push r13 push r12 push rbx push rax mov [rsp+38h+var_38], rsi mov r14, rdi cmp byte ptr [rdi], 0 jz short loc_7ADBB xor ebp, ebp mov eax, 4 loc_7AD8E: lea edx, [rax-1] mov ecx, 3 cmp byte ptr [r14+rdx], 3Dh ; '=' jnz ...
long long DecodeDataBase64(_BYTE *a1, int *a2) { int v3; // ebp long long v4; // rax int v5; // ecx bool v6; // zf long long result; // rax int v8; // ecx int v9; // edx _BYTE *v10; // rdi long long v11; // r8 unsigned __int8 v12; // bl unsigned __int8 v13; // r12 long long v14; // r13 long l...
DecodeDataBase64: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX PUSH RAX MOV qword ptr [RSP],RSI MOV R14,RDI CMP byte ptr [RDI],0x0 JZ 0x0017adbb XOR EBP,EBP MOV EAX,0x4 LAB_0017ad8e: LEA EDX,[RAX + -0x1] MOV ECX,0x3 CMP byte ptr [R14 + RDX*0x1],0x3d JNZ 0x0017adac LEA EDX,[RAX + -0x2] XOR ECX,ECX CMP byte ptr ...
void DecodeDataBase64(char *param_1,int *param_2) { char *pcVar1; byte bVar2; byte bVar3; uint uVar4; long lVar5; void *pvVar6; byte bVar7; int iVar8; int iVar9; byte *pbVar10; ulong uVar11; size_t __size; if (*param_1 == '\0') { iVar9 = 0; } else { iVar9 = 0; lVar5 = 4; ...
25,684
minja::Value::at(unsigned long)
llama.cpp/common/minja/minja.hpp
Value& at(size_t index) { if (is_null()) throw std::runtime_error("Undefined value or reference"); if (is_array()) return array_->at(index); if (is_object()) return object_->at(index); throw std::runtime_error("Value is not an array or object: " + dump()); }
O3
cpp
minja::Value::at(unsigned long): pushq %rbp pushq %r14 pushq %rbx subq $0x50, %rsp movq %rdi, %r14 movq %rsi, 0x8(%rsp) movq 0x10(%rdi), %rcx movq 0x20(%rdi), %rdi testq %rdi, %rdi jne 0xc2984 testq %rcx, %rcx jne 0xc2984 cmpb $0x0, 0x40(%r14) jne 0xc2984 cmpq $0x0, 0x30(%r14) je 0xc29cf testq %rcx, %rcx je 0xc29b7 mov...
_ZN5minja5Value2atEm: push rbp push r14 push rbx sub rsp, 50h mov r14, rdi mov [rsp+68h+var_60], rsi mov rcx, [rdi+10h] mov rdi, [rdi+20h] test rdi, rdi jnz short loc_C2984 test rcx, rcx jnz short loc_C2984 cmp byte ptr [r14+40h], 0 jnz short loc_C2984 cmp qword pt...
unsigned long long minja::Value::at(minja::Value *this, unsigned long long a2) { _QWORD *v3; // rcx long long v4; // rdi unsigned long long v5; // rdx std::runtime_error *exception; // rbx void *v8; // rbx unsigned long long v9; // [rsp+8h] [rbp-60h] BYREF _BYTE v10[16]; // [rsp+10h] [rbp-58h] BYREF _Q...
at: PUSH RBP PUSH R14 PUSH RBX SUB RSP,0x50 MOV R14,RDI MOV qword ptr [RSP + 0x8],RSI MOV RCX,qword ptr [RDI + 0x10] MOV RDI,qword ptr [RDI + 0x20] TEST RDI,RDI JNZ 0x001c2984 TEST RCX,RCX JNZ 0x001c2984 CMP byte ptr [R14 + 0x40],0x0 JNZ 0x001c2984 CMP qword ptr [R14 + 0x30],0x0 JZ 0x001c29cf LAB_001c2984: TEST RCX,RCX...
/* minja::Value::at(unsigned long) */ long __thiscall minja::Value::at(Value *this,ulong param_1) { long *plVar1; long lVar2; runtime_error *prVar3; ulong uVar4; ulong local_60; int1 local_58 [32]; string local_38 [32]; plVar1 = *(long **)(this + 0x10); lVar2 = *(long *)(this + 0x20); local_60...
25,685
my_strcasecmp_utf8mb3
eloqsql/strings/ctype-utf8.c
static int my_strcasecmp_utf8mb3(CHARSET_INFO *cs, const char *s, const char *t) { MY_UNICASE_INFO *uni_plane= cs->caseinfo; while (s[0] && t[0]) { my_wc_t s_wc,t_wc; if ((uchar) s[0] < 128) { /* s[0] is between 0 and 127. It represents a single byte character. Conv...
O3
c
my_strcasecmp_utf8mb3: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x18, %rsp movq %rdx, %r13 movb (%rsi), %al testb %al, %al je 0x53fcc movq %rsi, %r14 movq 0x78(%rdi), %r15 leaq 0x2f344f(%rip), %r12 # 0x347350 cmpb $0x0, (%r13) je 0x53fc7 testb %al, %al js 0x53f25 movzbl...
my_strcasecmp_utf8mb3: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 18h mov r13, rdx mov al, [rsi] test al, al jz loc_53FCC mov r14, rsi mov r15, [rdi+78h] lea r12, my_unicase_default_page00 loc_53F01: cmp byte ptr [r13+0], 0 jz ...
long long my_strcasecmp_utf8mb3(long long a1, unsigned __int8 *a2, unsigned __int8 *a3) { unsigned __int8 v4; // al unsigned __int8 *v5; // r14 long long v6; // r15 unsigned long long v7; // rbx int v8; // eax long long v9; // rax long long v10; // rax unsigned long long v11; // rax int v12; // eax ...
my_strcasecmp_utf8mb3: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x18 MOV R13,RDX MOV AL,byte ptr [RSI] TEST AL,AL JZ 0x00153fcc MOV R14,RSI MOV R15,qword ptr [RDI + 0x78] LEA R12,[0x447350] LAB_00153f01: CMP byte ptr [R13],0x0 JZ 0x00153fc7 TEST AL,AL JS 0x00153f25 MOVZX EAX,AL LEA RAX,...
int my_strcasecmp_utf8mb3(long param_1,byte *param_2,byte *param_3) { long lVar1; long lVar2; byte bVar3; uint uVar4; int iVar5; ulong uVar6; ulong local_40; ulong local_38; bVar3 = *param_2; if (bVar3 == 0) { uVar4 = 0; } else { lVar1 = *(long *)(param_1 + 0x78); do { if ...
25,686
Trie::Trie()
BirdUp9000[P]ct9/src/../include/ct9/Trie.h
inline Trie::Trie() : root(new Node()) {}
O2
c
Trie::Trie(): pushq %rbx movq %rdi, %rbx pushq $0x38 popq %rdi callq 0x21d0 leaq 0x8(%rax), %rcx andl $0x0, 0x8(%rax) andq $0x0, 0x10(%rax) movq %rcx, 0x18(%rax) movq %rcx, 0x20(%rax) andq $0x0, 0x28(%rax) movb $0x0, 0x30(%rax) movq %rax, (%rbx) popq %rbx retq nop
_ZN4TrieC2Ev: push rbx mov rbx, rdi push 38h ; '8' pop rdi; unsigned __int64 call __Znwm; operator new(ulong) lea rcx, [rax+8] and dword ptr [rax+8], 0 and qword ptr [rax+10h], 0 mov [rax+18h], rcx mov [rax+20h], rcx and qword ptr [rax+28h], 0 mov byte ptr [rax+30h], 0 mov ...
void Trie::Trie(Trie *this) { long long v1; // rax v1 = operator new(0x38uLL); *(_DWORD *)(v1 + 8) = 0; *(_QWORD *)(v1 + 16) = 0LL; *(_QWORD *)(v1 + 24) = v1 + 8; *(_QWORD *)(v1 + 32) = v1 + 8; *(_QWORD *)(v1 + 40) = 0LL; *(_BYTE *)(v1 + 48) = 0; *(_QWORD *)this = v1; }
Trie: PUSH RBX MOV RBX,RDI PUSH 0x38 POP RDI CALL 0x001021d0 LEA RCX,[RAX + 0x8] AND dword ptr [RAX + 0x8],0x0 AND qword ptr [RAX + 0x10],0x0 MOV qword ptr [RAX + 0x18],RCX MOV qword ptr [RAX + 0x20],RCX AND qword ptr [RAX + 0x28],0x0 MOV byte ptr [RAX + 0x30],0x0 MOV qword ptr [RBX],RAX POP RBX RET
/* Trie::Trie() */ void __thiscall Trie::Trie(Trie *this) { void *pvVar1; pvVar1 = operator_new(0x38); *(int4 *)((long)pvVar1 + 8) = 0; *(int8 *)((long)pvVar1 + 0x10) = 0; *(long *)((long)pvVar1 + 0x18) = (long)pvVar1 + 8; *(long *)((long)pvVar1 + 0x20) = (long)pvVar1 + 8; *(int8 *)((long)pvVar1 + 0...
25,687
sessions::init_late()
untodesu[P]voxelius/game/server/sessions.cc
void sessions::init_late(void) { sessions::num_players = 0U; username_map.clear(); identity_map.clear(); sessions_vector.resize(sessions::max_players.get_value(), Session()); for(unsigned int i = 0U; i < sessions::max_players.get_value(); ++i) { sessions_vector[i].client_index = UINT16_MAX...
O1
cpp
sessions::init_late(): pushq %r15 pushq %r14 pushq %r12 pushq %rbx subq $0x48, %rsp movl $0x0, 0xe063a(%rip) # 0x10ab58 leaq 0xe063b(%rip), %rdi # 0x10ab60 callq 0x2b958 cmpl $0x0, 0xe067f(%rip) # 0x10abb0 je 0x2a54e movq 0xe0656(%rip), %rdi # 0x10ab90 movl 0xe066c(%rip), %edx # 0x10abac shlq $0x3, ...
_ZN8sessions9init_lateEv: push r15 push r14 push r12 push rbx sub rsp, 48h mov cs:_ZN8sessions11num_playersE, 0; sessions::num_players lea rdi, _ZL12username_mapB5cxx11; username_map call _ZN7emhash87HashMapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEP7SessionSt4hashIS6_ESt8equal_toI...
void sessions::init_late(sessions *this) { long long v1; // r15 unsigned long long v2; // r12 long long v3; // rdi long long v4; // rax __int128 v5; // [rsp+0h] [rbp-68h] BYREF void *v6[2]; // [rsp+10h] [rbp-58h] BYREF _QWORD v7[9]; // [rsp+20h] [rbp-48h] BYREF sessions::num_players = 0; emhash8::Ha...
init_late: PUSH R15 PUSH R14 PUSH R12 PUSH RBX SUB RSP,0x48 MOV dword ptr [0x0020ab58],0x0 LEA RDI,[0x20ab60] CALL 0x0012b958 CMP dword ptr [0x0020abb0],0x0 JZ 0x0012a54e MOV RDI,qword ptr [0x0020ab90] MOV EDX,dword ptr [0x0020abac] SHL RDX,0x3 MOV ESI,0xff CALL 0x00117370 LAB_0012a54e: XOR EAX,EAX MOV qword ptr [0x002...
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */ /* sessions::init_late() */ void sessions::init_late(void) { int2 *puVar1; long lVar2; ulong uVar3; long lVar4; int8 **local_68; int8 uStack_60; long *local_58; int8 uStack_50; long local_48 [5]; _num_players ...
25,688
sessions::init_late()
untodesu[P]voxelius/game/server/sessions.cc
void sessions::init_late(void) { sessions::num_players = 0U; username_map.clear(); identity_map.clear(); sessions_vector.resize(sessions::max_players.get_value(), Session()); for(unsigned int i = 0U; i < sessions::max_players.get_value(); ++i) { sessions_vector[i].client_index = UINT16_MAX...
O2
cpp
sessions::init_late(): pushq %r15 pushq %r14 pushq %r12 pushq %rbx subq $0x48, %rsp andl $0x0, 0xe6dd9(%rip) # 0x10dba8 leaq 0xe6dda(%rip), %rdi # 0x10dbb0 callq 0x27f94 leaq 0xe6dfe(%rip), %rdi # 0x10dbe0 callq 0x27fc2 movl 0xe6d8b(%rip), %esi # 0x10db78 xorps %xmm0, %xmm0 leaq 0x10(%rsp), %rbx movaps ...
_ZN8sessions9init_lateEv: push r15 push r14 push r12 push rbx sub rsp, 48h and cs:_ZN8sessions11num_playersE, 0; sessions::num_players lea rdi, _ZL12username_mapB5cxx11; username_map call _ZN7emhash87HashMapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEP7SessionSt4hashIS6_ESt8equal_toI...
long long sessions::init_late(sessions *this) { long long v1; // r15 unsigned long long i; // r12 long long result; // rax long long v4; // rdi long long v5; // rax __int128 v6; // [rsp+0h] [rbp-68h] BYREF __int128 v7; // [rsp+10h] [rbp-58h] BYREF _BYTE v8[32]; // [rsp+20h] [rbp-48h] BYREF long long ...
init_late: PUSH R15 PUSH R14 PUSH R12 PUSH RBX SUB RSP,0x48 AND dword ptr [0x0020dba8],0x0 LEA RDI,[0x20dbb0] CALL 0x00127f94 LEA RDI,[0x20dbe0] CALL 0x00127fc2 MOV ESI,dword ptr [0x0020db78] XORPS XMM0,XMM0 LEA RBX,[RSP + 0x10] MOVAPS xmmword ptr [RBX],XMM0 MOVAPS xmmword ptr [RBX + 0x10],XMM0 MOVAPS xmmword ptr [RBX ...
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */ /* sessions::init_late() */ void sessions::init_late(void) { int2 *puVar1; long lVar2; ulong uVar3; long lVar4; string *local_68; int8 uStack_60; int8 *local_58; int8 uStack_50; int8 local_48; int8 uStack_40; i...
25,689
sessions::init_late()
untodesu[P]voxelius/game/server/sessions.cc
void sessions::init_late(void) { sessions::num_players = 0U; username_map.clear(); identity_map.clear(); sessions_vector.resize(sessions::max_players.get_value(), Session()); for(unsigned int i = 0U; i < sessions::max_players.get_value(); ++i) { sessions_vector[i].client_index = UINT16_MAX...
O3
cpp
sessions::init_late(): pushq %r15 pushq %r14 pushq %r12 pushq %rbx subq $0x48, %rsp movl $0x0, 0xdf6cf(%rip) # 0x108b68 leaq 0xdf6d0(%rip), %rdi # 0x108b70 callq 0x2a8fc cmpl $0x0, 0xdf714(%rip) # 0x108bc0 je 0x294c9 movq 0xdf6eb(%rip), %rdi # 0x108ba0 movl 0xdf701(%rip), %edx # 0x108bbc shlq $0x3, ...
_ZN8sessions9init_lateEv: push r15 push r14 push r12 push rbx sub rsp, 48h mov cs:_ZN8sessions11num_playersE, 0; sessions::num_players lea rdi, _ZL12username_mapB5cxx11; username_map call _ZN7emhash87HashMapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEP7SessionSt4hashIS6_ESt8equal_toI...
void sessions::init_late(sessions *this) { long long v1; // rax long long v2; // r15 unsigned long long v3; // r12 long long v4; // rdi __int128 v5; // [rsp+0h] [rbp-68h] BYREF __int128 v6; // [rsp+10h] [rbp-58h] BYREF _QWORD v7[9]; // [rsp+20h] [rbp-48h] BYREF sessions::num_players = 0; emhash8::Ha...
init_late: PUSH R15 PUSH R14 PUSH R12 PUSH RBX SUB RSP,0x48 MOV dword ptr [0x00208b68],0x0 LEA RDI,[0x208b70] CALL 0x0012a8fc CMP dword ptr [0x00208bc0],0x0 JZ 0x001294c9 MOV RDI,qword ptr [0x00208ba0] MOV EDX,dword ptr [0x00208bbc] SHL RDX,0x3 MOV ESI,0xff CALL 0x00116370 LAB_001294c9: XOR EAX,EAX MOV qword ptr [0x002...
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */ /* sessions::init_late() */ void sessions::init_late(void) { int2 *puVar1; long lVar2; ulong uVar3; long lVar4; int8 **local_68; int8 uStack_60; long *local_58; int8 uStack_50; long local_48 [5]; _num_players ...
25,690
ma_check_if_zero
eloqsql/storage/maria/ma_locking.c
my_bool _ma_check_if_zero(uchar *pos, size_t length) { uchar *end; for (end= pos+ length; pos != end ; pos++) if (pos[0] != 0) return 1; return 0; }
O0
c
ma_check_if_zero: pushq %rbp movq %rsp, %rbp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq -0x10(%rbp), %rax addq -0x18(%rbp), %rax movq %rax, -0x20(%rbp) movq -0x10(%rbp), %rax cmpq -0x20(%rbp), %rax je 0x4b134 movq -0x10(%rbp), %rax movzbl (%rax), %eax cmpl $0x0, %eax je 0x4b124 movb $0x1, -0x1(%rbp) jmp 0x4b138...
_ma_check_if_zero: push rbp mov rbp, rsp mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov rax, [rbp+var_10] add rax, [rbp+var_18] mov [rbp+var_20], rax loc_4B108: mov rax, [rbp+var_10] cmp rax, [rbp+var_20] jz short loc_4B134 mov rax, [rbp+var_10] movzx eax, byte ptr [rax] c...
char ma_check_if_zero(_BYTE *a1, long long a2) { _BYTE *i; // [rsp+10h] [rbp-10h] for ( i = a1; i != &a1[a2]; ++i ) { if ( *i ) return 1; } return 0; }
_ma_check_if_zero: PUSH RBP MOV RBP,RSP MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV RAX,qword ptr [RBP + -0x10] ADD RAX,qword ptr [RBP + -0x18] MOV qword ptr [RBP + -0x20],RAX LAB_0014b108: MOV RAX,qword ptr [RBP + -0x10] CMP RAX,qword ptr [RBP + -0x20] JZ 0x0014b134 MOV RAX,qword ptr [RBP + -0x...
int1 _ma_check_if_zero(char *param_1,long param_2) { char *local_18; local_18 = param_1; while( true ) { if (local_18 == param_1 + param_2) { return 0; } if (*local_18 != '\0') break; local_18 = local_18 + 1; } return 1; }
25,691
ma_check_index
eloqsql/storage/maria/ma_search.c
int _ma_check_index(MARIA_HA *info, int inx) { if (inx < 0 || ! maria_is_key_active(info->s->state.key_map, inx)) { my_errno=HA_ERR_WRONG_INDEX; return -1; } if (info->lastinx != inx) /* Index changed */ { info->lastinx = inx; info->last_key.keyinfo= info->s->keyinfo + inx; inf...
O0
c
ma_check_index: pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x10(%rbp) movl %esi, -0x14(%rbp) cmpl $0x0, -0x14(%rbp) jl 0x9532a movq -0x10(%rbp), %rax movq (%rax), %rax movq 0x140(%rax), %rax movl -0x14(%rbp), %ecx movl $0x1, %edx shlq %cl, %rdx movq %rdx, %rcx andq %rcx, %rax cmpq $0x0, %rax je 0x95322 mov...
_ma_check_index: push rbp mov rbp, rsp sub rsp, 20h mov [rbp+var_10], rdi mov [rbp+var_14], esi cmp [rbp+var_14], 0 jl short loc_9532A mov rax, [rbp+var_10] mov rax, [rax] mov rax, [rax+140h] mov ecx, [rbp+var_14] mov edx, 1 shl rdx, cl mov rcx, rdx and rax, r...
long long ma_check_index(long long a1, const char *a2) { unsigned int v3; // [rsp+Ch] [rbp-14h] long long v4; // [rsp+10h] [rbp-10h] v4 = a1; v3 = (unsigned int)a2; if ( (int)a2 >= 0 && ((1LL << (char)a2) & *(_QWORD *)(*(_QWORD *)a1 + 320LL)) != 0 ) { if ( *(_DWORD *)(a1 + 1580) != (_DWORD)a2 ) { ...
_ma_check_index: PUSH RBP MOV RBP,RSP SUB RSP,0x20 MOV qword ptr [RBP + -0x10],RDI MOV dword ptr [RBP + -0x14],ESI CMP dword ptr [RBP + -0x14],0x0 JL 0x0019532a MOV RAX,qword ptr [RBP + -0x10] MOV RAX,qword ptr [RAX] MOV RAX,qword ptr [RAX + 0x140] MOV ECX,dword ptr [RBP + -0x14] MOV EDX,0x1 SHL RDX,CL MOV RCX,RDX AND ...
/* WARNING: Removing unreachable block (ram,0x00195320) */ int _ma_check_index(long *param_1,int param_2) { int iVar1; int4 *puVar2; int *piVar3; int local_c; if ((param_2 < 0) || ((*(ulong *)(*param_1 + 0x140) & 1L << ((byte)param_2 & 0x3f)) == 0)) { puVar2 = (int4 *)_my_thread_var(); *puVar2 =...
25,692
my_strntol_mb2_or_mb4
eloqsql/strings/ctype-ucs2.c
static long my_strntol_mb2_or_mb4(CHARSET_INFO *cs, const char *nptr, size_t l, int base, char **endptr, int *err) { int negative= 0; int overflow; int cnv; my_wc_t wc; my_charset_conv_mb_wc mb_wc= cs->cset->mb_wc; register unsigned int cutlim; r...
O0
c
my_strntol_mb2_or_mb4: pushq %rbp movq %rsp, %rbp subq $0x90, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movl %ecx, -0x24(%rbp) movq %r8, -0x30(%rbp) movq %r9, -0x38(%rbp) movl $0x0, -0x3c(%rbp) movq -0x10(%rbp), %rax movq 0xb8(%rax), %rax movq 0x28(%rax), %rax movq %rax, -0x58(%rbp) movq...
my_strntol_mb2_or_mb4: push rbp mov rbp, rsp sub rsp, 90h mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov [rbp+var_20], rdx mov [rbp+var_24], ecx mov [rbp+var_30], r8 mov [rbp+var_38], r9 mov [rbp+var_3C], 0 mov rax, [rbp+var_10] mov rax, [rax+0B8h] mov rax, [rax+28h] ...
long long my_strntol_mb2_or_mb4(long long a1, long long a2, long long a3, unsigned int a4, _QWORD *a5, int *a6) { int v6; // ecx long long v7; // rax long long v10; // [rsp+10h] [rbp-80h] long long v11; // [rsp+18h] [rbp-78h] long long v12; // [rsp+20h] [rbp-70h] unsigned int v13; // [rsp+2Ch] [rbp-64h] ...
my_strntol_mb2_or_mb4: PUSH RBP MOV RBP,RSP SUB RSP,0x90 MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV qword ptr [RBP + -0x20],RDX MOV dword ptr [RBP + -0x24],ECX MOV qword ptr [RBP + -0x30],R8 MOV qword ptr [RBP + -0x38],R9 MOV dword ptr [RBP + -0x3c],0x0 MOV RAX,qword ptr [RBP + -0x10] MOV RAX,q...
/* WARNING: Removing unreachable block (ram,0x001581f4) */ /* WARNING: Removing unreachable block (ram,0x00158346) */ ulong my_strntol_mb2_or_mb4 (long param_1,long param_2,long param_3,uint param_4,long *param_5, int4 *param_6) { code *pcVar1; ulong uVar2; long lVar3; uint uV...
25,693
test_bug2248
eloqsql/libmariadb/unittest/libmariadb/ps_bugs.c
static int test_bug2248(MYSQL *mysql) { MYSQL_STMT *stmt; int rc; const char *query1= "SELECT DATABASE()"; const char *query2= "INSERT INTO test_bug2248 VALUES (10)"; rc= mysql_query(mysql, "DROP TABLE IF EXISTS test_bug2248"); check_mysql_rc(rc, mysql); rc= mysql_query(mysql, "CREATE TABLE test_bug224...
O0
c
test_bug2248: pushq %rbp movq %rsp, %rbp subq $0x80, %rsp movq %rdi, -0x10(%rbp) leaq 0x45a64(%rip), %rax # 0x685da movq %rax, -0x28(%rbp) leaq 0x45a6b(%rip), %rax # 0x685ec movq %rax, -0x30(%rbp) movq -0x10(%rbp), %rdi leaq 0x45a81(%rip), %rsi # 0x68611 callq 0x38a70 movl %eax, -0x1c(%rbp) cmpl $0x0, -0x1c...
test_bug2248: push rbp mov rbp, rsp sub rsp, 80h mov [rbp+var_10], rdi lea rax, aSelectDatabase; "SELECT DATABASE()" mov [rbp+var_28], rax lea rax, aInsertIntoTest_7; "INSERT INTO test_bug2248 VALUES (10)" mov [rbp+var_30], rax mov rdi, [rbp+var_10] lea rsi, aDropTableIfExi_13; "D...
long long test_bug2248(long long a1) { int v1; // eax int v2; // eax int v3; // eax int v4; // r8d int v5; // r9d long long v6; // rax int v7; // eax int v8; // r8d int v9; // r9d int v10; // r8d int v11; // r9d int v12; // r8d int v13; // r9d int v14; // eax int v15; // r8d int v16; //...
test_bug2248: PUSH RBP MOV RBP,RSP SUB RSP,0x80 MOV qword ptr [RBP + -0x10],RDI LEA RAX,[0x1685da] MOV qword ptr [RBP + -0x28],RAX LEA RAX,[0x1685ec] MOV qword ptr [RBP + -0x30],RAX MOV RDI,qword ptr [RBP + -0x10] LEA RSI,[0x168611] CALL 0x00138a70 MOV dword ptr [RBP + -0x1c],EAX CMP dword ptr [RBP + -0x1c],0x0 JZ 0x00...
int4 test_bug2248(int8 param_1) { int iVar1; int4 uVar2; int8 uVar3; long lVar4; size_t sVar5; int4 local_c; iVar1 = mysql_query(param_1,"DROP TABLE IF EXISTS test_bug2248"); if (iVar1 == 0) { iVar1 = mysql_query(param_1,"CREATE TABLE test_bug2248 (id int)"); if (iVar1 == 0) { lVar4 =...
25,694
my_wildcmp_mb_impl
eloqsql/strings/ctype-mb.c
static int my_wildcmp_mb_impl(CHARSET_INFO *cs, const char *str,const char *str_end, const char *wildstr,const char *wildend, int escape, int w_one, int w_many, int recurse_level) { int result= -1; /* Not found, using wildcards */ if (my_strin...
O3
c
my_wildcmp_mb_impl: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x48, %rsp movl %r9d, -0x44(%rbp) movq %r8, -0x40(%rbp) movq %rcx, %r15 movq %rdx, -0x58(%rbp) movq %rsi, %r12 movq %rdi, -0x38(%rbp) movl 0x20(%rbp), %eax movq %rax, -0x68(%rbp) leaq 0xb55a48(%rip), %rax # 0x...
my_wildcmp_mb_impl: push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 48h mov [rbp+var_44], r9d mov [rbp+var_40], r8 mov r15, rcx mov [rbp+var_58], rdx mov r12, rsi mov [rbp+var_38], rdi mov eax, [rbp+arg_10] mov [rbp+var_68], rax lea ...
long long my_wildcmp_mb_impl( long long a1, unsigned __int8 *a2, unsigned __int8 *a3, char *a4, char *a5, int a6, int a7, int a8, unsigned int a9) { unsigned int v11; // r14d int v12; // edi char v13; // al int v14; // ecx bool v15; // d...
my_wildcmp_mb_impl: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x48 MOV dword ptr [RBP + -0x44],R9D MOV qword ptr [RBP + -0x40],R8 MOV R15,RCX MOV qword ptr [RBP + -0x58],RDX MOV R12,RSI MOV qword ptr [RBP + -0x38],RDI MOV EAX,dword ptr [RBP + 0x20] MOV qword ptr [RBP + -0x68],RAX LEA RAX...
uint my_wildcmp_mb_impl(long param_1,byte *param_2,byte *param_3,byte *param_4,byte *param_5, uint param_6,uint param_7,uint param_8,int param_9) { char cVar1; byte bVar2; int iVar3; uint uVar4; uint uVar5; ulong uVar6; ulong uVar7; uint uVar8; byte *__s2; byte *pbVar9; bo...
25,695
google::protobuf::compiler::objectivec::OneofGenerator::GenerateCaseEnum(google::protobuf::io::Printer*)
aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc
void OneofGenerator::GenerateCaseEnum(io::Printer* printer) { printer->Print( variables_, "typedef GPB_ENUM($enum_name$) {\n"); printer->Indent(); printer->Print( variables_, "$enum_name$_GPBUnsetOneOfCase = 0,\n"); std::string enum_name = variables_["enum_name"]; for (int j = 0; j < d...
O3
cpp
google::protobuf::compiler::objectivec::OneofGenerator::GenerateCaseEnum(google::protobuf::io::Printer*): pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x98, %rsp movq %rsi, %rbp movq %rdi, (%rsp) leaq 0x8(%rdi), %r12 leaq 0x106c70(%rip), %rdx # 0x1c63c3 movq %rsi, %rdi movq %r12, %rsi call...
_ZN6google8protobuf8compiler10objectivec14OneofGenerator16GenerateCaseEnumEPNS0_2io7PrinterE: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 98h mov rbp, rsi mov [rsp+0C8h+var_C8], rdi; void * lea r12, [rdi+8] lea rdx, aTypedefGpbEnum_0; "typedef GPB_ENUM($enum_name...
void google::protobuf::compiler::objectivec::OneofGenerator::GenerateCaseEnum( google::protobuf::compiler::objectivec::OneofGenerator *this, google::protobuf::io::Printer *a2) { google::protobuf::io::Printer *v2; // rbp long long v3; // rax long long v4; // rax long long v5; // r14 long long ...
GenerateCaseEnum: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x98 MOV RBP,RSI MOV qword ptr [RSP],RDI LEA R12,[RDI + 0x8] LEA RDX,[0x2c63c3] MOV RDI,RSI MOV RSI,R12 CALL 0x0026cd32 MOV RDI,RBP CALL 0x0026d126 LEA RDX,[0x2c63e4] MOV RDI,RBP MOV RSI,R12 CALL 0x0026cd32 LEA R15,[RSP + 0x78] MOV qword pt...
/* google::protobuf::compiler::objectivec::OneofGenerator::GenerateCaseEnum(google::protobuf::io::Printer*) */ void __thiscall google::protobuf::compiler::objectivec::OneofGenerator::GenerateCaseEnum (OneofGenerator *this,Printer *param_1) { map<std::__cxx11::string,std::__cxx11::string,std::less<std...
25,696
ma_read_key_record
eloqsql/storage/maria/ma_key.c
int _ma_read_key_record(MARIA_HA *info, uchar *buf, MARIA_RECORD_POS filepos) { fast_ma_writeinfo(info); if (filepos != HA_OFFSET_ERROR) { if (info->lastinx >= 0) { /* Read only key */ if (_ma_put_key_in_record(info, (uint)info->lastinx, TRUE, buf)) { _ma_set_fatal_error(info, HA_ER...
O0
c
ma_read_key_record: pushq %rbp movq %rsp, %rbp subq $0x20, %rsp movq %rdi, -0x10(%rbp) movq %rsi, -0x18(%rbp) movq %rdx, -0x20(%rbp) movq -0x10(%rbp), %rax movq (%rax), %rax cmpl $0x0, 0x7b8(%rax) jne 0x35e4f movq -0x10(%rbp), %rdi xorl %esi, %esi callq 0x36ff0 cmpq $-0x1, -0x20(%rbp) je 0x35ec2 movq -0x10(%rbp), %rax ...
_ma_read_key_record: push rbp mov rbp, rsp sub rsp, 20h mov [rbp+var_10], rdi mov [rbp+var_18], rsi mov [rbp+var_20], rdx mov rax, [rbp+var_10] mov rax, [rax] cmp dword ptr [rax+7B8h], 0 jnz short loc_35E4F mov rdi, [rbp+var_10] xor esi, esi call _ma_writeinfo loc_35E4F...
long long ma_read_key_record(int *a1, long long a2, long long a3) { long long v3; // rdx long long v4; // rcx long long v5; // r8 int v6; // r9d if ( !*(_DWORD *)(*(_QWORD *)a1 + 1976LL) ) ma_writeinfo(a1, 0LL); if ( a3 == -1 ) return (unsigned int)-1; if ( a1[395] < 0 ) { *(_DWORD *)my_th...
_ma_read_key_record: PUSH RBP MOV RBP,RSP SUB RSP,0x20 MOV qword ptr [RBP + -0x10],RDI MOV qword ptr [RBP + -0x18],RSI MOV qword ptr [RBP + -0x20],RDX MOV RAX,qword ptr [RBP + -0x10] MOV RAX,qword ptr [RAX] CMP dword ptr [RAX + 0x7b8],0x0 JNZ 0x00135e4f MOV RDI,qword ptr [RBP + -0x10] XOR ESI,ESI CALL 0x00136ff0 LAB_00...
int4 _ma_read_key_record(long *param_1,int8 param_2,long param_3) { int iVar1; int4 *puVar2; if (*(int *)(*param_1 + 0x7b8) == 0) { _ma_writeinfo(param_1,0); } if (param_3 != -1) { if (-1 < *(int *)((long)param_1 + 0x62c)) { iVar1 = _ma_put_key_in_record(param_1,*(int4 *)((long)param_1 + 0x...
25,697
ma_read_key_record
eloqsql/storage/maria/ma_key.c
int _ma_read_key_record(MARIA_HA *info, uchar *buf, MARIA_RECORD_POS filepos) { fast_ma_writeinfo(info); if (filepos != HA_OFFSET_ERROR) { if (info->lastinx >= 0) { /* Read only key */ if (_ma_put_key_in_record(info, (uint)info->lastinx, TRUE, buf)) { _ma_set_fatal_error(info, HA_ER...
O3
c
ma_read_key_record: pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r12 pushq %rbx movq %rdx, %r12 movq %rsi, %r15 movq %rdi, %r14 movq (%rdi), %rax cmpl $0x0, 0x7b8(%rax) jne 0x38322 movq %r14, %rdi xorl %esi, %esi callq 0x38d12 movl $0xffffffff, %ebx # imm = 0xFFFFFFFF cmpq $-0x1, %r12 je 0x38372 movl 0...
_ma_read_key_record: push rbp mov rbp, rsp push r15 push r14 push r12 push rbx mov r12, rdx mov r15, rsi mov r14, rdi mov rax, [rdi] cmp dword ptr [rax+7B8h], 0 jnz short loc_38322 mov rdi, r14 xor esi, esi call _ma_writeinfo loc_38322: mov ebx, 0FFFFFFFFh cmp ...
long long ma_read_key_record(unsigned int *a1, long long a2, long long a3, long long a4, long long a5) { unsigned int v7; // ebx long long v8; // rsi long long v9; // rdx long long v10; // rcx long long v11; // r8 int v12; // r9d if ( !*(_DWORD *)(*(_QWORD *)a1 + 1976LL) ) ma_writeinfo(a1, 0LL); v...
_ma_read_key_record: PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R12 PUSH RBX MOV R12,RDX MOV R15,RSI MOV R14,RDI MOV RAX,qword ptr [RDI] CMP dword ptr [RAX + 0x7b8],0x0 JNZ 0x00138322 MOV RDI,R14 XOR ESI,ESI CALL 0x00138d12 LAB_00138322: MOV EBX,0xffffffff CMP R12,-0x1 JZ 0x00138372 MOV ESI,dword ptr [R14 + 0x62c] TES...
int8 _ma_read_key_record(long *param_1,int8 param_2,long param_3) { int iVar1; int4 *puVar2; int8 uVar3; if (*(int *)(*param_1 + 0x7b8) == 0) { _ma_writeinfo(param_1,0); } uVar3 = 0xffffffff; if (param_3 != -1) { if (*(int *)((long)param_1 + 0x62c) < 0) { puVar2 = (int4 *)_my_thread_var...
25,698
allocate_full_pages
eloqsql/storage/maria/ma_bitmap.c
static ulong allocate_full_pages(MARIA_FILE_BITMAP *bitmap, ulong pages_needed, MARIA_BITMAP_BLOCK *block, my_bool full_page) { uchar *data, *data_end, *page_end; uchar *best_data= 0; uint min_size; uint best_area_size, UNINIT_VAR(best_prefix_are...
O3
c
allocate_full_pages: movl 0x28(%rdi), %eax movl $0xaaaaaaab, %r8d # imm = 0xAAAAAAAB imulq %r8, %rax shrq $0x22, %rax addl %eax, %eax leal (%rax,%rax,2), %r9d movl 0x128(%rdi), %eax cmpl %eax, %r9d jae 0x5071b pushq %rbp movq %rsp, %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movq ...
allocate_full_pages: mov eax, [rdi+28h] mov r8d, 0AAAAAAABh imul rax, r8 shr rax, 22h add eax, eax lea r9d, [rax+rax*2] mov eax, [rdi+128h] cmp r9d, eax jnb loc_5071B push rbp mov rbp, rsp push r15 push r14 push r13 push r12 push rbx sub rsp, 28h mov [rbp...
long long allocate_full_pages(long long a1, unsigned long long a2, long long a3, char a4) { unsigned int v4; // r9d long long v5; // rax unsigned int *v6; // r8 unsigned long long v7; // rbx unsigned long long v8; // rax unsigned int *v9; // r12 bool v10; // zf unsigned int v11; // ecx unsigned int v...
allocate_full_pages: MOV EAX,dword ptr [RDI + 0x28] MOV R8D,0xaaaaaaab IMUL RAX,R8 SHR RAX,0x22 ADD EAX,EAX LEA R9D,[RAX + RAX*0x2] MOV EAX,dword ptr [RDI + 0x128] CMP R9D,EAX JNC 0x0015071b PUSH RBP MOV RBP,RSP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x28 MOV qword ptr [RBP + -0x38],RDX MOV R8,qword ptr [...
int4 allocate_full_pages(long param_1,ulong param_2,long *param_3,char param_4) { int *piVar1; ulong uVar2; long lVar3; uint uVar4; int *piVar5; ulong uVar6; byte *pbVar7; byte *pbVar8; int iVar9; ulong uVar10; long *plVar11; int iVar12; ulong uVar13; uint uVar14; int *piVar15; int *pi...
25,699
js_array_fill
bluesky950520[P]quickjs/quickjs.c
static JSValue js_array_fill(JSContext *ctx, JSValue this_val, int argc, JSValue *argv) { JSValue obj; int64_t len, start, end; obj = JS_ToObject(ctx, this_val); if (js_get_length64(ctx, &len, obj)) goto exception; start = 0; if (argc > 1 && !JS_IsUndefined...
O1
c
js_array_fill: pushq %rbp pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx subq $0x28, %rsp movq %r8, %r15 movl %ecx, %ebp movq %rdi, %r12 callq 0x261c9 movq %rax, %r14 movq %rdx, %rbx leaq 0x18(%rsp), %rsi movq %r12, %rdi movq %rax, %rdx movq %rbx, %rcx callq 0x21ec8 testl %eax, %eax je 0x74ae5 movq 0x18(%r12), ...
js_array_fill: push rbp push r15 push r14 push r13 push r12 push rbx sub rsp, 28h mov r15, r8 mov ebp, ecx mov r12, rdi call JS_ToObject mov r14, rax mov rbx, rdx lea rsi, [rsp+58h+var_40] mov rdi, r12 mov rdx, rax mov rcx, rbx call js_get_length64 test ...
_DWORD * js_array_fill( long long a1, long long a2, long long a3, long long a4, long long a5, long long a6, __m128 a7, __m128 a8, __m128 a9, __m128 a10, __m128 a11, __m128 a12, __m128 a13, __m128 a14) { int...
js_array_fill: PUSH RBP PUSH R15 PUSH R14 PUSH R13 PUSH R12 PUSH RBX SUB RSP,0x28 MOV R15,R8 MOV EBP,ECX MOV R12,RDI CALL 0x001261c9 MOV R14,RAX MOV RBX,RDX LEA RSI,[RSP + 0x18] MOV RDI,R12 MOV RDX,RAX MOV RCX,RBX CALL 0x00121ec8 TEST EAX,EAX JZ 0x00174ae5 LAB_00174ab8: MOV RDI,qword ptr [R12 + 0x18] MOV RSI,R14 MOV RD...
int1 [16] js_array_fill(long param_1,int8 param_2,int8 param_3,int param_4,int8 *param_5) { long lVar1; int iVar2; int8 uVar3; int8 uVar4; long lVar5; int1 auVar6 [16]; long local_50; long local_48; long local_40; int *local_38; auVar6 = JS_ToObject(); uVar4 = auVar6._8_8_; uVar3 = auVar...