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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
21,000 | lf_hash_iterate | eloqsql/mysys/lf_hash.cc | int lf_hash_iterate(LF_HASH *hash, LF_PINS *pins,
my_hash_walk_action action, void *argument)
{
CURSOR cursor;
uint bucket= 0;
int res;
LF_SLIST **el;
el= (LF_SLIST **)lf_dynarray_lvalue(&hash->array, bucket);
if (unlikely(!el))
return 0; /* if there's no bucket==0, the hash is empt... | O0 | cpp | lf_hash_iterate:
pushq %rbp
movq %rsp, %rbp
subq $0x80, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq %rcx, -0x28(%rbp)
movl $0x0, -0x44(%rbp)
movq -0x10(%rbp), %rdi
movl -0x44(%rbp), %esi
callq 0x129ba0
movq %rax, -0x50(%rbp)
cmpq $0x0, -0x50(%rbp)
setne %al
xorb $-0x1, %al
andb $0x1, ... | lf_hash_iterate:
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], rcx
mov [rbp+var_44], 0
mov rdi, [rbp+var_10]
mov esi, [rbp+var_44]
call lf_dynarray_lvalue
mov [rbp+var_50], rax
cmp [rbp+var_50], 0
... | long long lf_hash_iterate(long long a1, volatile long long *a2, long long a3, long long a4)
{
volatile signed long long *v5; // [rsp+30h] [rbp-50h]
unsigned int v6; // [rsp+38h] [rbp-48h]
char v7; // [rsp+40h] [rbp-40h] BYREF
long long v8; // [rsp+58h] [rbp-28h]
long long v9; // [rsp+60h] [rbp-20h]
volatil... | |||
21,001 | lf_hash_iterate | eloqsql/mysys/lf_hash.cc | int lf_hash_iterate(LF_HASH *hash, LF_PINS *pins,
my_hash_walk_action action, void *argument)
{
CURSOR cursor;
uint bucket= 0;
int res;
LF_SLIST **el;
el= (LF_SLIST **)lf_dynarray_lvalue(&hash->array, bucket);
if (unlikely(!el))
return 0; /* if there's no bucket==0, the hash is empt... | O3 | cpp | lf_hash_iterate:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x28, %rsp
movq %rcx, %r15
movq %rdx, -0x30(%rbp)
movq %rsi, %rbx
movq %rdi, %r14
xorl %r13d, %r13d
xorl %esi, %esi
callq 0x31a15
testq %rax, %rax
je 0x32223
movq %rax, %r12
cmpq $0x0, (%rax)
jne 0x321f2
xorl %r13d,... | lf_hash_iterate:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 28h
mov r15, rcx
mov [rbp+var_30], rdx
mov rbx, rsi
mov r14, rdi
xor r13d, r13d
xor esi, esi
call lf_dynarray_lvalue
test rax, rax
jz short loc_32223
mov r12, rax... | long long lf_hash_iterate(long long a1, volatile long long *a2, long long a3, int a4)
{
unsigned int v5; // r13d
volatile signed long long *v6; // rax
int v7; // r12d
unsigned int v8; // eax
char v10; // [rsp+8h] [rbp-48h] BYREF
long long v11; // [rsp+20h] [rbp-30h]
v11 = a3;
v5 = 0;
v6 = (volatile ... | lf_hash_iterate:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x28
MOV R15,RCX
MOV qword ptr [RBP + -0x30],RDX
MOV RBX,RSI
MOV R14,RDI
XOR R13D,R13D
XOR ESI,ESI
CALL 0x00131a15
TEST RAX,RAX
JZ 0x00132223
MOV R12,RAX
CMP qword ptr [RAX],0x0
JNZ 0x001321f2
XOR R13D,R13D
MOV RDI,R14
MOV RSI,R1... |
int4
lf_hash_iterate(st_lf_hash *param_1,LF_PINS *param_2,_func_char_void_ptr_void_ptr *param_3,
uchar *param_4)
{
int iVar1;
int4 uVar2;
LF_SLIST **ppLVar3;
CURSOR local_50 [24];
_func_char_void_ptr_void_ptr *local_38;
uVar2 = 0;
local_38 = param_3;
ppLVar3 = (LF_SLIST **)lf_dynarra... | |
21,002 | fmt::v11::detail::write_loc(fmt::v11::basic_appender<char>, fmt::v11::loc_value, fmt::v11::format_specs const&, fmt::v11::detail::locale_ref) | zkingston[P]unknot/build_O0/_deps/fmt-src/include/fmt/format-inl.h | FMT_FUNC auto write_loc(appender out, loc_value value,
const format_specs& specs, locale_ref loc) -> bool {
auto locale = loc.get<std::locale>();
// We cannot use the num_put<char> facet because it may produce output in
// a wrong encoding.
using facet = format_facet<std::locale>;
if (... | O0 | c | fmt::v11::detail::write_loc(fmt::v11::basic_appender<char>, fmt::v11::loc_value, fmt::v11::format_specs const&, fmt::v11::detail::locale_ref):
subq $0x148, %rsp # imm = 0x148
leaq 0x150(%rsp), %rax
movq %rax, 0x38(%rsp)
movq %rdi, 0x138(%rsp)
movq %rdx, 0x130(%rsp)
movq %rsi, 0x128(%rsp)
leaq 0x120(%rsp), %r... | _ZN3fmt3v116detail9write_locENS0_14basic_appenderIcEENS0_9loc_valueERKNS0_12format_specsENS1_10locale_refE:
sub rsp, 148h
lea rax, [rsp+148h+arg_0]
mov qword ptr [rsp+148h+var_110], rax; int
mov [rsp+148h+var_10], rdi
mov [rsp+148h+var_18], rdx
mov [rsp+148h+var_20], rsi
lea rdi, [rsp+148h+v... | char fmt::v11::detail::write_loc(
long long a1,
long long a2,
long long a3,
long long a4,
long long a5,
long long a6,
__int128 a7,
__int128 a8)
{
int v8; // edx
int v9; // ecx
int v10; // r8d
int v11; // r9d
int v12; // r8d
int v13; // r9d
i... | write_loc:
SUB RSP,0x148
LEA RAX,[RSP + 0x150]
MOV qword ptr [RSP + 0x38],RAX
MOV qword ptr [RSP + 0x138],RDI
MOV qword ptr [RSP + 0x130],RDX
MOV qword ptr [RSP + 0x128],RSI
LEA RDI,[RSP + 0x120]
LEA RSI,[RSP + 0x130]
CALL 0x001a6bd0
LEA RDI,[RSP + 0x120]
CALL 0x001a6c20
TEST AL,0x1
JNZ 0x001a5367
JMP 0x001a5417
LAB_00... |
/* fmt::v11::detail::write_loc(fmt::v11::basic_appender<char>, fmt::v11::loc_value,
fmt::v11::format_specs const&, fmt::v11::detail::locale_ref) */
ulong fmt::v11::detail::write_loc(int8 param_1,int8 param_2,int8 param_3)
{
bool bVar1;
format_facet *pfVar2;
int8 uVar3;
int8 in_stack_00000008;
int8 in_st... | |
21,003 | my_mb_wc_cp932 | eloqsql/strings/ctype-cp932.c | static int
my_mb_wc_cp932(CHARSET_INFO *cs __attribute__((unused)),
my_wc_t *pwc, const uchar *s, const uchar *e){
int hi;
if (s >= e)
return MY_CS_TOOSMALL;
if ((hi= s[0]) < 0x80) /* ASCII: [00-7F] -> [U+0000..U+007F] */
{
*pwc= hi;
return 1;
}
/* JIS-X-0201 Half width Katakana: [A1... | O0 | c | my_mb_wc_cp932:
pushq %rbp
movq %rsp, %rbp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq %rcx, -0x28(%rbp)
movq -0x20(%rbp), %rax
cmpq -0x28(%rbp), %rax
jb 0x6bfda
movl $0xffffff9b, -0x4(%rbp) # imm = 0xFFFFFF9B
jmp 0x6c138
movq -0x20(%rbp), %rax
movzbl (%rax), %eax
movl %eax, -0x2c(%rbp)
cm... | my_mb_wc_cp932:
push rbp
mov rbp, rsp
mov [rbp+var_10], rdi
mov [rbp+var_18], rsi
mov [rbp+var_20], rdx
mov [rbp+var_28], rcx
mov rax, [rbp+var_20]
cmp rax, [rbp+var_28]
jb short loc_6BFDA
mov [rbp+var_4], 0FFFFFF9Bh
jmp loc_6C138
loc_6BFDA:
mov rax, [rbp+var_20]
movzx ... | long long my_mb_wc_cp932(long long a1, _QWORD *a2, unsigned __int8 *a3, unsigned long long a4)
{
long long v4; // rax
unsigned int v5; // eax
bool v7; // [rsp+1h] [rbp-2Fh]
char v8; // [rsp+2h] [rbp-2Eh]
char v9; // [rsp+3h] [rbp-2Dh]
unsigned int v10; // [rsp+4h] [rbp-2Ch]
if ( (unsigned long long)a3 <... | my_mb_wc_cp932:
PUSH RBP
MOV RBP,RSP
MOV qword ptr [RBP + -0x10],RDI
MOV qword ptr [RBP + -0x18],RSI
MOV qword ptr [RBP + -0x20],RDX
MOV qword ptr [RBP + -0x28],RCX
MOV RAX,qword ptr [RBP + -0x20]
CMP RAX,qword ptr [RBP + -0x28]
JC 0x0016bfda
MOV dword ptr [RBP + -0x4],0xffffff9b
JMP 0x0016c138
LAB_0016bfda:
MOV RAX,qw... |
int4 my_mb_wc_cp932(int8 param_1,ulong *param_2,byte *param_3,byte *param_4)
{
ushort uVar1;
bool bVar2;
uint uVar3;
int4 local_c;
if (param_3 < param_4) {
uVar3 = (uint)*param_3;
if (uVar3 < 0x80) {
*param_2 = (long)(int)uVar3;
local_c = 1;
}
else if ((uVar3 < 0xa1) || (0xdf ... | |
21,004 | my_utf16le_uni | eloqsql/strings/ctype-ucs2.c | static int
my_utf16le_uni(CHARSET_INFO *cs __attribute__((unused)),
my_wc_t *pwc, const uchar *s, const uchar *e)
{
my_wc_t lo;
if (s + 2 > e)
return MY_CS_TOOSMALL2;
if ((*pwc= uint2korr(s)) < MY_UTF16_SURROGATE_HIGH_FIRST ||
(*pwc > MY_UTF16_SURROGATE_LOW_LAST))
return 2; /* [0000... | O0 | c | my_utf16le_uni:
pushq %rbp
movq %rsp, %rbp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq %rcx, -0x28(%rbp)
movq -0x20(%rbp), %rax
addq $0x2, %rax
cmpq -0x28(%rbp), %rax
jbe 0xa295e
movl $0xffffff9a, -0x4(%rbp) # imm = 0xFFFFFF9A
jmp 0xa2a20
movq -0x20(%rbp), %rax
movzwl (%rax), %eax
movq -0x... | my_utf16le_uni:
push rbp
mov rbp, rsp
mov [rbp+var_10], rdi
mov [rbp+var_18], rsi
mov [rbp+var_20], rdx
mov [rbp+var_28], rcx
mov rax, [rbp+var_20]
add rax, 2
cmp rax, [rbp+var_28]
jbe short loc_A295E
mov [rbp+var_4], 0FFFFFF9Ah
jmp loc_A2A20
loc_A295E:
mov rax, [rbp+v... | long long my_utf16le_uni(long long a1, unsigned long long *a2, unsigned __int16 *a3, unsigned long long a4)
{
unsigned long long v4; // rax
unsigned long long v6; // [rsp+0h] [rbp-30h]
if ( (unsigned long long)(a3 + 1) <= a4 )
{
v4 = *a3;
*a2 = v4;
if ( v4 >= 0xD800 && *a2 <= 0xDFFF )
{
... | my_utf16le_uni:
PUSH RBP
MOV RBP,RSP
MOV qword ptr [RBP + -0x10],RDI
MOV qword ptr [RBP + -0x18],RSI
MOV qword ptr [RBP + -0x20],RDX
MOV qword ptr [RBP + -0x28],RCX
MOV RAX,qword ptr [RBP + -0x20]
ADD RAX,0x2
CMP RAX,qword ptr [RBP + -0x28]
JBE 0x001a295e
MOV dword ptr [RBP + -0x4],0xffffff9a
JMP 0x001a2a20
LAB_001a295... |
int4 my_utf16le_uni(int8 param_1,ulong *param_2,ushort *param_3,ushort *param_4)
{
ushort uVar1;
ulong uVar2;
int4 local_c;
if (param_4 < param_3 + 1) {
local_c = 0xffffff9a;
}
else {
uVar1 = *param_3;
*param_2 = (ulong)uVar1;
if (((ulong)uVar1 < 0xd800) || (0xdfff < *param_2)) {
... | |
21,005 | ma_bitmap_find_place | eloqsql/storage/maria/ma_bitmap.c | my_bool _ma_bitmap_find_place(MARIA_HA *info, MARIA_ROW *row,
MARIA_BITMAP_BLOCKS *blocks)
{
MARIA_SHARE *share= info->s;
my_bool res= 1;
uint full_page_size, position, max_page_size;
uint head_length, row_length, rest_length, extents_length;
DBUG_ENTER("_ma_bitmap_find_place");
... | O0 | c | ma_bitmap_find_place:
pushq %rbp
movq %rsp, %rbp
subq $0x50, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq -0x8(%rbp), %rax
movq (%rax), %rax
movq %rax, -0x20(%rbp)
movb $0x1, -0x21(%rbp)
movq -0x18(%rbp), %rax
movl $0x0, 0x8(%rax)
movq -0x18(%rbp), %rax
movb $0x0, 0xd(%rax)
movq -0x18(%... | _ma_bitmap_find_place:
push rbp
mov rbp, rsp
sub rsp, 50h
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov [rbp+var_18], rdx
mov rax, [rbp+var_8]
mov rax, [rax]
mov [rbp+var_20], rax
mov [rbp+var_21], 1
mov rax, [rbp+var_18]
mov dword ptr [rax+8], 0
mov rax, [rbp+var_18]... | char ma_bitmap_find_place(long long *a1, long long a2, long long a3)
{
unsigned int v4; // [rsp+14h] [rbp-3Ch]
unsigned int where_to_split_row; // [rsp+18h] [rbp-38h]
unsigned int v6; // [rsp+1Ch] [rbp-34h]
unsigned int v7; // [rsp+20h] [rbp-30h]
unsigned int v8; // [rsp+24h] [rbp-2Ch]
char v9; // [rsp+2Fh... | _ma_bitmap_find_place:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x50
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV qword ptr [RBP + -0x18],RDX
MOV RAX,qword ptr [RBP + -0x8]
MOV RAX,qword ptr [RAX]
MOV qword ptr [RBP + -0x20],RAX
MOV byte ptr [RBP + -0x21],0x1
MOV RAX,qword ptr [RBP + -0x18]
MOV dword ptr [RAX... |
int1 _ma_bitmap_find_place(long *param_1,long param_2,long *param_3)
{
long lVar1;
char cVar2;
uint uVar3;
int iVar4;
uint uVar5;
int iVar6;
uint local_34;
int1 local_29;
lVar1 = *param_1;
local_29 = 1;
*(int4 *)(param_3 + 1) = 0;
*(int1 *)((long)param_3 + 0xd) = 0;
*(int1 *)((long)param_... | |
21,006 | ma_bitmap_find_place | eloqsql/storage/maria/ma_bitmap.c | my_bool _ma_bitmap_find_place(MARIA_HA *info, MARIA_ROW *row,
MARIA_BITMAP_BLOCKS *blocks)
{
MARIA_SHARE *share= info->s;
my_bool res= 1;
uint full_page_size, position, max_page_size;
uint head_length, row_length, rest_length, extents_length;
DBUG_ENTER("_ma_bitmap_find_place");
... | O3 | c | ma_bitmap_find_place:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x28, %rsp
movq %rsi, %r13
movq %rdi, %r15
movq (%rdi), %r14
xorl %eax, %eax
movl %eax, 0x8(%rdx)
movq %rdx, -0x48(%rbp)
movw $0x0, 0xc(%rdx)
movl %eax, 0xac(%rsi)
movl $0x4, 0x2c8(%rdi)
movl 0x7bc(%r14), %ebx
... | _ma_bitmap_find_place:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 28h
mov r13, rsi
mov r15, rdi
mov r14, [rdi]
xor eax, eax
mov [rdx+8], eax
mov [rbp+var_48], rdx
mov word ptr [rdx+0Ch], 0
mov [rsi+0ACh], eax
mov dword ptr [r... | long long ma_bitmap_find_place(long long *a1, long long a2, long long a3)
{
long long *v4; // r15
long long v5; // r14
unsigned int v6; // ebx
long long v7; // rdi
unsigned long long v8; // rsi
int v9; // edx
unsigned int v10; // r12d
int v11; // r15d
unsigned int where_to_split_row; // eax
unsigne... | _ma_bitmap_find_place:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x28
MOV R13,RSI
MOV R15,RDI
MOV R14,qword ptr [RDI]
XOR EAX,EAX
MOV dword ptr [RDX + 0x8],EAX
MOV qword ptr [RBP + -0x48],RDX
MOV word ptr [RDX + 0xc],0x0
MOV dword ptr [RSI + 0xac],EAX
MOV dword ptr [RDI + 0x2c8],0x4
MOV ... |
ulong _ma_bitmap_find_place(long *param_1,long param_2,long *param_3)
{
pthread_mutex_t *__mutex;
long lVar1;
int iVar2;
long lVar3;
int iVar4;
char cVar5;
int iVar6;
uint uVar7;
uint uVar8;
int7 uVar10;
ulong uVar9;
lVar3 = *param_1;
*(int4 *)(param_3 + 1) = 0;
*(int2 *)((long)param_3 ... | |
21,007 | fs_get_cache_directory[abi:cxx11]() | monkey531[P]llama/common/common.cpp | std::string fs_get_cache_directory() {
std::string cache_directory = "";
auto ensure_trailing_slash = [](std::string p) {
// Make sure to add trailing slash
if (p.back() != DIRECTORY_SEPARATOR) {
p += DIRECTORY_SEPARATOR;
}
return p;
};
if (getenv("LLAMA_CACHE... | O2 | cpp | fs_get_cache_directory[abi:cxx11]():
pushq %r15
pushq %r14
pushq %rbx
subq $0xb0, %rsp
movq %rdi, %rbx
leaq 0x5b1c6(%rip), %rsi # 0xbbc4f
leaq 0x10(%rsp), %rdi
leaq 0x30(%rsp), %rdx
callq 0x30aea
leaq 0x5e431(%rip), %rdi # 0xbeed0
callq 0x24ac0
testq %rax, %rax
je 0x60abb
leaq 0x10(%rsp), %rdi
movq %rax, %rsi
c... | _Z22fs_get_cache_directoryB5cxx11v:
push r15
push r14
push rbx
sub rsp, 0B0h
mov rbx, rdi
lea rsi, aErrorWhileHand_0+34h; ""
lea rdi, [rsp+0C8h+var_B8]
lea rdx, [rsp+0C8h+var_98]
call _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_; std::string::basic_string<std::al... | long long fs_get_cache_directory[abi:cxx11](long long a1)
{
long long v1; // rax
long long v2; // rax
long long v3; // r14
_QWORD v5[4]; // [rsp+10h] [rbp-B8h] BYREF
_BYTE v6[32]; // [rsp+30h] [rbp-98h] BYREF
_BYTE v7[32]; // [rsp+50h] [rbp-78h] BYREF
_BYTE v8[32]; // [rsp+70h] [rbp-58h] BYREF
_QWORD v... | fs_get_cache_directory[abi:cxx11]:
PUSH R15
PUSH R14
PUSH RBX
SUB RSP,0xb0
MOV RBX,RDI
LEA RSI,[0x1bbc4f]
LEA RDI,[RSP + 0x10]
LEA RDX,[RSP + 0x30]
CALL 0x00130aea
LEA RDI,[0x1beed0]
CALL 0x00124ac0
TEST RAX,RAX
JZ 0x00160abb
LAB_00160aa9:
LEA RDI,[RSP + 0x10]
MOV RSI,RAX
CALL 0x001251c0
JMP 0x00160b93
LAB_00160abb:
LE... |
/* WARNING: Unknown calling convention -- yet parameter storage is locked */
/* fs_get_cache_directory[abi:cxx11]() */
void fs_get_cache_directory_abi_cxx11_(void)
{
char *pcVar1;
string *psVar2;
allocator local_b9;
string local_b8 [32];
allocator local_98 [32];
string local_78 [32];
string local_58 [3... | |
21,008 | nglog::FlagSaver::~FlagSaver() | ng-log[P]ng-log/src/googletest.h | ~FlagSaver() {
FLAGS_v = v_;
FLAGS_stderrthreshold = stderrthreshold_;
FLAGS_logtostderr = logtostderr_;
FLAGS_alsologtostderr = alsologtostderr_;
FLAGS_logmailer = logmailer_;
} | O0 | c | nglog::FlagSaver::~FlagSaver():
pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rsi
movq %rsi, -0x10(%rbp)
movl (%rsi), %ecx
leaq 0x78c27(%rip), %rax # 0x9c3b4
movl %ecx, (%rax)
movl 0x4(%rsi), %ecx
leaq 0x78b17(%rip), %rax # 0x9c2b0
movl %ecx, (%rax)
movb 0x8(%rsi), %cl
andb... | _ZN5nglog9FlagSaverD2Ev:
push rbp
mov rbp, rsp
sub rsp, 10h
mov [rbp+var_8], rdi
mov rsi, [rbp+var_8]
mov [rbp+var_10], rsi
mov ecx, [rsi]
lea rax, _ZN3fLI7FLAGS_vE; fLI::FLAGS_v
mov [rax], ecx
mov ecx, [rsi+4]
lea rax, _ZN3fLI21FLAGS_stderrthresholdE; fLI::FLAGS_stderrthresho... | void nglog::FlagSaver::~FlagSaver(nglog::FlagSaver *this)
{
fLI::FLAGS_v = *(_DWORD *)this;
fLI::FLAGS_stderrthreshold = *((_DWORD *)this + 1);
fLB::FLAGS_logtostderr = *((_BYTE *)this + 8) & 1;
fLB::FLAGS_alsologtostderr = *((_BYTE *)this + 9) & 1;
std::string::operator=(&fLS::FLAGS_logmailer_buf[abi:cxx11]... | ~FlagSaver:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV qword ptr [RBP + -0x8],RDI
MOV RSI,qword ptr [RBP + -0x8]
MOV qword ptr [RBP + -0x10],RSI
MOV ECX,dword ptr [RSI]
LEA RAX,[0x19c3b4]
MOV dword ptr [RAX],ECX
MOV ECX,dword ptr [RSI + 0x4]
LEA RAX,[0x19c2b0]
MOV dword ptr [RAX],ECX
MOV CL,byte ptr [RSI + 0x8]
AND CL,0x1
L... |
/* nglog::FlagSaver::~FlagSaver() */
void __thiscall nglog::FlagSaver::~FlagSaver(FlagSaver *this)
{
fLI::FLAGS_v = *(int4 *)this;
fLI::FLAGS_stderrthreshold = *(int4 *)(this + 4);
fLB::FLAGS_logtostderr = (byte)this[8] & 1;
fLB::FLAGS_alsologtostderr = (byte)this[9] & 1;
/* try { // try ... | |
21,009 | nlohmann::json_abi_v3_11_3::detail::dtoa_impl::grisu2_digit_gen(char*, int&, int&, nlohmann::json_abi_v3_11_3::detail::dtoa_impl::diyfp, nlohmann::json_abi_v3_11_3::detail::dtoa_impl::diyfp, nlohmann::json_abi_v3_11_3::detail::dtoa_impl::diyfp) | monkey531[P]llama/common/json.hpp | inline void grisu2_digit_gen(char* buffer, int& length, int& decimal_exponent,
diyfp M_minus, diyfp w, diyfp M_plus)
{
static_assert(kAlpha >= -60, "internal error");
static_assert(kGamma <= -32, "internal error");
// Generates the digits (and the exponent) of a decimal floatin... | O2 | cpp | nlohmann::json_abi_v3_11_3::detail::dtoa_impl::grisu2_digit_gen(char*, int&, int&, nlohmann::json_abi_v3_11_3::detail::dtoa_impl::diyfp, nlohmann::json_abi_v3_11_3::detail::dtoa_impl::diyfp, nlohmann::json_abi_v3_11_3::detail::dtoa_impl::diyfp):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x... | _ZN8nlohmann16json_abi_v3_11_36detail9dtoa_impl16grisu2_digit_genEPcRiS4_NS2_5diyfpES5_S5_:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 38h
mov [rsp+68h+var_40], rcx
mov [rsp+68h+var_38], r8d
mov eax, [rsp+68h+arg_18]
cmp eax, 0FFFFFFC3h
jle loc_88B45
mov ... | long long nlohmann::json_abi_v3_11_3::detail::dtoa_impl::grisu2_digit_gen(
nlohmann::json_abi_v3_11_3::detail::dtoa_impl *a1,
unsigned int *a2,
_DWORD *a3,
long long a4,
int a5,
long long a6,
char a7,
int a8,
unsigned long long a9,
int a10... | grisu2_digit_gen:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x38
MOV qword ptr [RSP + 0x28],RCX
MOV dword ptr [RSP + 0x30],R8D
MOV EAX,dword ptr [RSP + 0x88]
CMP EAX,-0x3d
JLE 0x00188b45
MOV qword ptr [RSP + 0x8],RDX
MOV qword ptr [RSP + 0x20],RDI
CMP EAX,-0x1f
JGE 0x00188b61
MOV R14,RSI
LEA RBX,[RS... |
/* nlohmann::json_abi_v3_11_3::detail::dtoa_impl::grisu2_digit_gen(char*, int&, int&,
nlohmann::json_abi_v3_11_3::detail::dtoa_impl::diyfp,
nlohmann::json_abi_v3_11_3::detail::dtoa_impl::diyfp,
nlohmann::json_abi_v3_11_3::detail::dtoa_impl::diyfp) */
void nlohmann::json_abi_v3_11_3::detail::dtoa_impl::grisu2... | |
21,010 | common_chat_format_example[abi:cxx11](minja::chat_template const&, bool) | monkey531[P]llama/common/common.cpp | std::string common_chat_format_example(const common_chat_template & tmpl, bool use_jinja) {
std::vector<common_chat_msg> msgs = {
{"system", "You are a helpful assistant", {}},
{"user", "Hello", {}},
{"assistant", "Hi there", {}},
{"user", "How are you?", {}},
};
... | O2 | cpp | common_chat_format_example[abi:cxx11](minja::chat_template const&, bool):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x208, %rsp # imm = 0x208
movl %edx, %ebp
movq %rsi, %r12
movq %rdi, %r15
leaq 0x4c78f(%rip), %rsi # 0x9ab6d
leaq 0x28(%rsp), %rbx
leaq 0xf(%rsp), %rdx
movq %r... | _Z26common_chat_format_exampleB5cxx11RKN5minja13chat_templateEb:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 208h
mov ebp, edx
mov r12, rsi
mov r15, rdi
lea rsi, aSystem_0; "system"
lea rbx, [rsp+238h+var_210]
lea rdx, [rsp+238h+var_229]
mov rdi, rbx
... | _QWORD * common_chat_format_example[abi:cxx11](_QWORD *a1, common_chat_inputs *a2, unsigned __int8 a3)
{
long long i; // rbx
char v6; // [rsp+7h] [rbp-231h] BYREF
_QWORD v7[3]; // [rsp+10h] [rbp-228h] BYREF
_QWORD v8[4]; // [rsp+28h] [rbp-210h] BYREF
_QWORD v9[4]; // [rsp+48h] [rbp-1F0h] BYREF
__int128 v10;... | common_chat_format_example[abi:cxx11]:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x208
MOV EBP,EDX
MOV R12,RSI
MOV R15,RDI
LAB_0014e3d7:
LEA RSI,[0x19ab6d]
LEA RBX,[RSP + 0x28]
LEA RDX,[RSP + 0xf]
MOV RDI,RBX
CALL 0x0012499e
LEA R14,[RSP + 0x48]
LAB_0014e3f5:
LEA RSI,[0x19ab74]
LEA RDX,[RSP + 0xe]
M... |
/* common_chat_format_example[abi:cxx11](minja::chat_template const&, bool) */
chat_template * common_chat_format_example_abi_cxx11_(chat_template *param_1,bool param_2)
{
long lVar1;
int7 in_register_00000031;
allocator local_231;
allocator local_230;
allocator local_22f;
allocator local_22e;
allocato... | |
21,011 | common_chat_format_example[abi:cxx11](minja::chat_template const&, bool) | monkey531[P]llama/common/common.cpp | std::string common_chat_format_example(const common_chat_template & tmpl, bool use_jinja) {
std::vector<common_chat_msg> msgs = {
{"system", "You are a helpful assistant", {}},
{"user", "Hello", {}},
{"assistant", "Hi there", {}},
{"user", "How are you?", {}},
};
... | O3 | cpp | common_chat_format_example[abi:cxx11](minja::chat_template const&, bool):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x208, %rsp # imm = 0x208
movl %edx, %r14d
movq %rsi, %rbp
movq %rdi, %r15
leaq 0x38(%rsp), %r13
movq %r13, -0x10(%r13)
leaq 0x635e4(%rip), %rsi # 0xb9b9d
leaq... | _Z26common_chat_format_exampleB5cxx11RKN5minja13chat_templateEb:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 208h
mov r14d, edx
mov rbp, rsi
mov r15, rdi
lea r13, [rsp+238h+var_200]
mov [r13-10h], r13
lea rsi, aSystem_0; "system"
lea rdx, aSystem_0+6;... | _QWORD * common_chat_format_example[abi:cxx11](_QWORD *a1, common_chat_inputs *a2, int a3)
{
unsigned long long v5; // r14
long long *v6; // rdi
_QWORD *v7; // rdi
_QWORD *v8; // rax
_QWORD *v9; // rax
_QWORD *v10; // rdi
_BYTE v12[11]; // [rsp+0h] [rbp-238h] BYREF
char v13; // [rsp+Bh] [rbp-22Dh] BYREF... | common_chat_format_example[abi:cxx11]:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x208
MOV R14D,EDX
MOV RBP,RSI
MOV R15,RDI
LEA R13,[RSP + 0x38]
MOV qword ptr [R13 + -0x10],R13
LAB_001565b2:
LEA RSI,[0x1b9b9d]
LEA RDX,[0x1b9ba3]
LEA RBX,[RSP + 0x28]
MOV RDI,RBX
CALL 0x00122878
MOV dword ptr [RSP + 0... |
/* common_chat_format_example[abi:cxx11](minja::chat_template const&, bool) */
chat_template * common_chat_format_example_abi_cxx11_(chat_template *param_1,bool param_2)
{
long *plVar1;
long *plVar2;
int7 in_register_00000031;
long lVar3;
long alStack_288 [8];
vector<common_tool_call,std::allocator<commo... | |
21,012 | minja::Value::operator/(minja::Value const&) const | monkey531[P]llama/common/minja.hpp | Value operator/(const Value& rhs) const {
if (is_number_integer() && rhs.is_number_integer())
return get<int64_t>() / rhs.get<int64_t>();
else
return get<double>() / rhs.get<double>();
} | O3 | cpp | minja::Value::operator/(minja::Value const&) const:
pushq %r15
pushq %r14
pushq %rbx
subq $0x10, %rsp
movq %rdx, %r14
movq %rdi, %rbx
movb 0x40(%rsi), %al
addb $-0x5, %al
cmpb $0x1, %al
ja 0xa4fa9
movb 0x40(%r14), %al
addb $-0x5, %al
cmpb $0x1, %al
ja 0xa4fa9
movq %rsi, %rdi
callq 0x93f62
movq %rax, %r15
movq %r14, %rd... | _ZNK5minja5ValuedvERKS0_:
push r15
push r14
push rbx
sub rsp, 10h
mov r14, rdx
mov rbx, rdi
mov al, [rsi+40h]
add al, 0FBh
cmp al, 1
ja short loc_A4FA9
mov al, [r14+40h]
add al, 0FBh
cmp al, 1
ja short loc_A4FA9
mov rdi, rsi
call _ZNK5minja5Value3getIlEET_v;... | long long minja::Value::operator/(long long a1, long long a2, long long a3)
{
long long v4; // r15
long long v5; // rax
char *v6; // r14
double v7; // xmm1_8
double v9; // [rsp+8h] [rbp-20h]
if ( (unsigned __int8)(*(_BYTE *)(a2 + 64) - 5) > 1u || (unsigned __int8)(*(_BYTE *)(a3 + 64) - 5) > 1u )
{
v... | operator/:
PUSH R15
PUSH R14
PUSH RBX
SUB RSP,0x10
MOV R14,RDX
MOV RBX,RDI
MOV AL,byte ptr [RSI + 0x40]
ADD AL,0xfb
CMP AL,0x1
JA 0x001a4fa9
MOV AL,byte ptr [R14 + 0x40]
ADD AL,0xfb
CMP AL,0x1
JA 0x001a4fa9
MOV RDI,RSI
CALL 0x00193f62
MOV R15,RAX
MOV RDI,R14
CALL 0x00193f62
MOV RCX,RAX
MOV RAX,R15
CQO
IDIV RCX
LEA R14,... |
/* minja::Value::TEMPNAMEPLACEHOLDERVALUE(minja::Value const&) const */
Value * __thiscall minja::Value::operator/(Value *this,Value *param_1)
{
long lVar1;
long lVar2;
Value *in_RDX;
double dVar3;
double dVar4;
if (((byte)((char)param_1[0x40] - 5U) < 2) && ((byte)((char)in_RDX[0x40] - 5U) < 2)) {
... | |
21,013 | ma_calc_length_for_store_length | eloqsql/storage/maria/ma_blockrec.c | uint ma_calc_length_for_store_length(ulong nr)
{
if (nr < 251)
return 1;
if (nr < 65536)
{
if (nr <= 255)
return 2;
return 3;
}
if (nr < 16777216)
return 4;
return 5;
} | O0 | c | ma_calc_length_for_store_length:
pushq %rbp
movq %rsp, %rbp
movq %rdi, -0x10(%rbp)
cmpq $0xfb, -0x10(%rbp)
jae 0x5b63b
movl $0x1, -0x4(%rbp)
jmp 0x5b67b
cmpq $0x10000, -0x10(%rbp) # imm = 0x10000
jae 0x5b661
cmpq $0xff, -0x10(%rbp)
ja 0x5b658
movl $0x2, -0x4(%rbp)
jmp 0x5b67b
movl $0x3, -0x4(%rbp)
jmp 0x5b67b
cmpq $0... | ma_calc_length_for_store_length:
push rbp
mov rbp, rsp
mov [rbp+var_10], rdi
cmp [rbp+var_10], 0FBh
jnb short loc_5B63B
mov [rbp+var_4], 1
jmp short loc_5B67B
loc_5B63B:
cmp [rbp+var_10], 10000h
jnb short loc_5B661
cmp [rbp+var_10], 0FFh
ja short loc_5B658
mov [rbp+var_4]... | long long ma_calc_length_for_store_length(unsigned long long a1)
{
if ( a1 >= 0xFB )
{
if ( a1 >= 0x10000 )
{
if ( a1 >= 0x1000000 )
return 5;
else
return 4;
}
else if ( a1 > 0xFF )
{
return 3;
}
else
{
return 2;
}
}
else
{
retur... | ma_calc_length_for_store_length:
PUSH RBP
MOV RBP,RSP
MOV qword ptr [RBP + -0x10],RDI
CMP qword ptr [RBP + -0x10],0xfb
JNC 0x0015b63b
MOV dword ptr [RBP + -0x4],0x1
JMP 0x0015b67b
LAB_0015b63b:
CMP qword ptr [RBP + -0x10],0x10000
JNC 0x0015b661
CMP qword ptr [RBP + -0x10],0xff
JA 0x0015b658
MOV dword ptr [RBP + -0x4],0... |
int4 ma_calc_length_for_store_length(ulong param_1)
{
int4 local_c;
if (param_1 < 0xfb) {
local_c = 1;
}
else if (param_1 < 0x10000) {
if (param_1 < 0x100) {
local_c = 2;
}
else {
local_c = 3;
}
}
else if (param_1 < 0x1000000) {
local_c = 4;
}
else {
local_c ... | |
21,014 | flux::parser::ForStmt::clone() const | kvthweatt[P]FluxLang/src/parser/ast.cpp | std::unique_ptr<Stmt> ForStmt::clone() const {
return std::make_unique<ForStmt>(
initializer ? initializer->clone() : nullptr,
condition ? condition->clone() : nullptr,
increment ? increment->clone() : nullptr,
body->clone(),
range);
} | O0 | cpp | flux::parser::ForStmt::clone() const:
pushq %rbp
movq %rsp, %rbp
subq $0x60, %rsp
movq %rdi, -0x60(%rbp)
movq %rdi, %rax
movq %rax, -0x58(%rbp)
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x10(%rbp), %rdi
movq %rdi, -0x50(%rbp)
addq $0x28, %rdi
callq 0x1f500
testb $0x1, %al
jne 0x1b272
jmp 0x1b28e
movq -0x50(%rb... | _ZNK4flux6parser7ForStmt5cloneEv:
push rbp
mov rbp, rsp
sub rsp, 60h
mov [rbp+var_60], rdi
mov rax, rdi
mov [rbp+var_58], rax
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov rdi, [rbp+var_10]
mov [rbp+var_50], rdi
add rdi, 28h ; '('
call _ZNKSt10unique_ptrIN4flux6parser4Stmt... | flux::parser::ForStmt * flux::parser::ForStmt::clone(flux::parser::ForStmt *this, long long a2)
{
long long v2; // rsi
long long v3; // rsi
long long v4; // rsi
long long v5; // rsi
_BYTE v8[8]; // [rsp+18h] [rbp-48h] BYREF
_BYTE v9[12]; // [rsp+20h] [rbp-40h] BYREF
_BYTE v10[8]; // [rsp+38h] [rbp-28h] BY... | clone:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x60
MOV qword ptr [RBP + -0x60],RDI
MOV RAX,RDI
MOV qword ptr [RBP + -0x58],RAX
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV RDI,qword ptr [RBP + -0x10]
MOV qword ptr [RBP + -0x50],RDI
ADD RDI,0x28
CALL 0x0011f500
TEST AL,0x1
JNZ 0x0011b272
JMP 0x0011b28e
LAB_0... |
/* flux::parser::ForStmt::clone() const */
unique_ptr<flux::parser::Stmt,std::default_delete<flux::parser::Stmt>> *
flux::parser::ForStmt::clone(void)
{
bool bVar1;
long *plVar2;
long in_RSI;
unique_ptr<flux::parser::Stmt,std::default_delete<flux::parser::Stmt>> *in_RDI;
SourceRange local_50 [8];
unique_... | |
21,015 | flux::parser::ForStmt::clone() const | kvthweatt[P]FluxLang/src/parser/ast.cpp | std::unique_ptr<Stmt> ForStmt::clone() const {
return std::make_unique<ForStmt>(
initializer ? initializer->clone() : nullptr,
condition ? condition->clone() : nullptr,
increment ? increment->clone() : nullptr,
body->clone(),
range);
} | O1 | cpp | flux::parser::ForStmt::clone() const:
pushq %r14
pushq %rbx
subq $0x28, %rsp
movq %rsi, %r14
movq %rdi, %rbx
movq 0x28(%rsi), %rsi
testq %rsi, %rsi
je 0xe4b7
movq (%rsi), %rax
leaq 0x20(%rsp), %rdi
callq *0x18(%rax)
jmp 0xe4c0
movq $0x0, 0x20(%rsp)
movq 0x30(%r14), %rsi
testq %rsi, %rsi
je 0xe4d6
movq (%rsi), %rax
leaq... | _ZNK4flux6parser7ForStmt5cloneEv:
push r14
push rbx
sub rsp, 28h
mov r14, rsi
mov rbx, rdi
mov rsi, [rsi+28h]
test rsi, rsi
jz short loc_E4B7
mov rax, [rsi]
lea rdi, [rsp+38h+var_18]
call qword ptr [rax+18h]
jmp short loc_E4C0
loc_E4B7:
mov [rsp+38h+var_18], 0
loc_E4C0:
... | flux::parser::ForStmt * flux::parser::ForStmt::clone(flux::parser::ForStmt *this, long long a2)
{
long long v4; // rsi
long long v5; // rsi
long long v6; // rsi
long long v7; // rax
long long v8; // rcx
long long v9; // rsi
long long v10; // rdi
long long v11; // r8
__int128 v12; // xmm1
long long v... | clone:
PUSH R14
PUSH RBX
SUB RSP,0x28
MOV R14,RSI
MOV RBX,RDI
MOV RSI,qword ptr [RSI + 0x28]
TEST RSI,RSI
JZ 0x0010e4b7
MOV RAX,qword ptr [RSI]
LEA RDI,[RSP + 0x20]
CALL qword ptr [RAX + 0x18]
JMP 0x0010e4c0
LAB_0010e4b7:
MOV qword ptr [RSP + 0x20],0x0
LAB_0010e4c0:
MOV RSI,qword ptr [R14 + 0x30]
TEST RSI,RSI
JZ 0x0010... |
/* WARNING: Removing unreachable block (ram,0x0010e584) */
/* WARNING: Removing unreachable block (ram,0x0010e594) */
/* WARNING: Removing unreachable block (ram,0x0010e5a4) */
/* WARNING: Removing unreachable block (ram,0x0010e5b4) */
/* flux::parser::ForStmt::clone() const */
void flux::parser::ForStmt::clone(void)... | |
21,016 | tree_search | eloqsql/mysys/tree.c | void *tree_search(TREE *tree, void *key, void *custom_arg)
{
int cmp;
TREE_ELEMENT *element=tree->root;
for (;;)
{
if (element == &null_element)
return (void*) 0;
if ((cmp = (*tree->compare)(custom_arg, ELEMENT_KEY(tree,element),
key)) == 0)
return ELEMENT_KE... | O0 | c | tree_search:
pushq %rbp
movq %rsp, %rbp
subq $0x50, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq -0x10(%rbp), %rax
movq (%rax), %rax
movq %rax, -0x30(%rbp)
leaq 0x1c478a(%rip), %rax # 0x2bfc60
cmpq %rax, -0x30(%rbp)
jne 0xfb4e9
movq $0x0, -0x8(%rbp)
jmp 0xfb5a8
movq -0x10(%rbp), %ra... | tree_search:
push rbp
mov rbp, rsp
sub rsp, 50h
mov [rbp+var_10], rdi
mov [rbp+var_18], rsi
mov [rbp+var_20], rdx
mov rax, [rbp+var_10]
mov rax, [rax]
mov [rbp+var_30], rax
loc_FB4CF:
lea rax, null_element
cmp [rbp+var_30], rax
jnz short loc_FB4E9
mov [rbp+var_8], 0
jm... | long long * tree_search(long long ***a1, long long a2, long long a3)
{
int v3; // eax
long long *v6; // [rsp+10h] [rbp-40h]
long long **v7; // [rsp+20h] [rbp-30h]
v7 = *a1;
while ( 1 )
{
if ( v7 == (long long **)&null_element )
return 0LL;
v6 = (long long *)a1[69];
v3 = *((_DWORD *)a1 + 1... | tree_search:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x50
MOV qword ptr [RBP + -0x10],RDI
MOV qword ptr [RBP + -0x18],RSI
MOV qword ptr [RBP + -0x20],RDX
MOV RAX,qword ptr [RBP + -0x10]
MOV RAX,qword ptr [RAX]
MOV qword ptr [RBP + -0x30],RAX
LAB_001fb4cf:
LEA RAX,[0x3bfc60]
CMP qword ptr [RBP + -0x30],RAX
JNZ 0x001fb4e9
MOV qword... |
long tree_search(int8 *param_1,int8 param_2,int8 param_3)
{
int iVar1;
long local_58;
long local_50;
int8 *local_38;
local_38 = (int8 *)*param_1;
while( true ) {
if (local_38 == (int8 *)null_element) {
return 0;
}
if (*(int *)(param_1 + 0x41) == 0) {
local_50 = local_38[3];
... | |
21,017 | bool nlohmann::json_abi_v3_11_3::detail::iter_impl<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, s... | monkey531[P]llama/common/json.hpp | bool operator==(const IterImpl& other) const
{
// if objects are not the same, the comparison is undefined
if (JSON_HEDLEY_UNLIKELY(m_object != other.m_object))
{
JSON_THROW(invalid_iterator::create(212, "cannot compare iterators of different containers", m_object));
}
... | O2 | cpp | bool nlohmann::json_abi_v3_11_3::detail::iter_impl<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, s... | _ZNK8nlohmann16json_abi_v3_11_36detail9iter_implIKNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEEEeqISH_TnNSt9enable_ifIXoosr3std7is_sameIT_SH_EE5valuesr3std7is_sameISK_NS2_ISF_EEEE5valueEDnE4typeELDn0EEEbRKSK_:
push rbp; char
... | _ZNK8nlohmann16json_abi_v3_11_36detail9iter_implIKNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEEEeqISH_TnNSt9enable_ifIXoosr3std7is_sameIT_SH_EE5valuesr3std7is_sameISK_NS2_ISF_EEEE5valueEDnE4typeELDn0EEEbRKSK_:
PUSH RBP
PUSH R14
... |
int8
_ZNK8nlohmann16json_abi_v3_11_36detail9iter_implIKNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEEEeqISH_TnNSt9enable_ifIXoosr3std7is_sameIT_SH_EE5valuesr3std7is_sameISK_NS2_ISF_EEEE5valueEDnE4typeELDn0EEEbRKSK_
(in... | ||
21,018 | bool nlohmann::json_abi_v3_11_3::detail::iter_impl<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, s... | monkey531[P]llama/common/json.hpp | bool operator==(const IterImpl& other) const
{
// if objects are not the same, the comparison is undefined
if (JSON_HEDLEY_UNLIKELY(m_object != other.m_object))
{
JSON_THROW(invalid_iterator::create(212, "cannot compare iterators of different containers", m_object));
}
... | O3 | cpp | bool nlohmann::json_abi_v3_11_3::detail::iter_impl<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, s... | _ZNK8nlohmann16json_abi_v3_11_36detail9iter_implINS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEEEeqISG_TnNSt9enable_ifIXoosr3std7is_sameIT_SG_EE5valuesr3std7is_sameISJ_NS2_IKSF_EEEE5valueEDnE4typeELDn0EEEbRKSJ_:
push rbp; char
... | _ZNK8nlohmann16json_abi_v3_11_36detail9iter_implINS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEEEeqISG_TnNSt9enable_ifIXoosr3std7is_sameIT_SG_EE5valuesr3std7is_sameISJ_NS2_IKSF_EEEE5valueEDnE4typeELDn0EEEbRKSJ_:
PUSH RBP
PUSH R15
... |
int8
_ZNK8nlohmann16json_abi_v3_11_36detail9iter_implINS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEvEEEeqISG_TnNSt9enable_ifIXoosr3std7is_sameIT_SG_EE5valuesr3std7is_sameISJ_NS2_IKSF_EEEE5valueEDnE4typeELDn0EEEbRKSJ_
(in... | ||
21,019 | my_like_range_czech | eloqsql/strings/ctype-czech.c | static my_bool my_like_range_czech(CHARSET_INFO *cs __attribute__((unused)),
const char *ptr,size_t ptr_length,
pbool escape, pbool w_one, pbool w_many,
size_t res_length, char *min_str,
char *max_str,
size_t *min_length,size_t *max_length)
{
#ifdef EXAMPLE
uchar value;
const char... | O3 | c | my_like_range_czech:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
movq %rsi, %r11
movq 0x20(%rbp), %rax
movq 0x18(%rbp), %r12
movq 0x10(%rbp), %r15
leaq (%r12,%r15), %r10
testq %rdx, %rdx
sete %sil
testq %r15, %r15
sete %bl
orb %sil, %bl
jne 0x3a464
addq %r11, %rdx
leaq 0x86de5(%rip... | my_like_range_czech:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
mov r11, rsi
mov rax, [rbp+arg_10]
mov r12, [rbp+arg_8]
mov r15, [rbp+arg_0]
lea r10, [r12+r15]
test rdx, rdx
setz sil
test r15, r15
setz bl
or bl, sil
jnz short loc_3A4... | long long my_like_range_czech(
long long a1,
unsigned __int8 *a2,
long long a3,
char a4,
char a5,
char a6,
long long a7,
long long a8,
_BYTE *a9,
long long *a10,
_QWORD *a11)
{
unsigned __int8 *v11; // r11
_BYTE *v13; // r10
... | my_like_range_czech:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
MOV R11,RSI
MOV RAX,qword ptr [RBP + 0x20]
MOV R12,qword ptr [RBP + 0x18]
MOV R15,qword ptr [RBP + 0x10]
LEA R10,[R12 + R15*0x1]
TEST RDX,RDX
SETZ SIL
TEST R15,R15
SETZ BL
OR BL,SIL
JNZ 0x0013a464
ADD RDX,R11
LEA R13,[0x1c11f7]
MOV R... |
int8
my_like_range_czech(long param_1,byte *param_2,long param_3,byte param_4,byte param_5,byte param_6,
long param_7,byte *param_8,byte *param_9,long *param_10,long *param_11)
{
byte bVar1;
long lVar2;
byte *pbVar3;
byte *pbVar4;
byte *pbVar5;
pbVar5 = param_8;
if (param_7 != 0 &&... | |
21,020 | my_strnxfrm_czech | eloqsql/strings/ctype-czech.c | static size_t
my_strnxfrm_czech(CHARSET_INFO *cs __attribute__((unused)),
uchar *dest, size_t len,
uint nweights_arg __attribute__((unused)),
const uchar *src, size_t srclen, uint flags)
{
int value;
const uchar *p, * store;
int pass = 0;
size_t totlen = 0;... | O3 | c | my_strnxfrm_czech:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x38, %rsp
movq %r8, %r15
movq %rdx, %rbx
movq %rsi, -0x48(%rbp)
movl 0x10(%rbp), %eax
movl %eax, %r11d
orl $0xf, %r11d
testb $0xf, %al
cmovnel %eax, %r11d
movslq %r9d, %rdx
movl $0x1, %eax
subq %r8, %rax
movq %ra... | my_strnxfrm_czech:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 38h
mov r15, r8
mov rbx, rdx
mov [rbp+var_48], rsi
mov eax, [rbp+arg_0]
mov r11d, eax
or r11d, 0Fh
test al, 0Fh
cmovnz r11d, eax
movsxd rdx, r9d
mov eax, 1
sub r... | unsigned long long my_strnxfrm_czech(
long long a1,
long long a2,
unsigned long long a3,
long long a4,
unsigned __int8 *a5,
int a6,
int a7)
{
unsigned __int8 *v7; // r15
int v9; // r11d
long long v10; // rdx
int v11; // ecx
unsigned __int8 *v12; // r14
... | my_strnxfrm_czech:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x38
MOV R15,R8
MOV RBX,RDX
MOV qword ptr [RBP + -0x48],RSI
MOV EAX,dword ptr [RBP + 0x10]
MOV R11D,EAX
OR R11D,0xf
TEST AL,0xf
CMOVNZ R11D,EAX
MOVSXD RDX,R9D
MOV EAX,0x1
SUB RAX,R8
MOV qword ptr [RBP + -0x50],RAX
XOR ECX,ECX
L... |
ulong my_strnxfrm_czech(int8 param_1,long param_2,ulong param_3,int8 param_4,
byte *param_5,int param_6,uint param_7)
{
uint uVar1;
byte *pbVar2;
byte *pbVar3;
byte bVar4;
char cVar5;
long lVar6;
byte *pbVar7;
byte bVar8;
int iVar9;
long lVar10;
byte *pbVar11;
byte *pbVa... | |
21,021 | dump_header_page | eloqsql/storage/maria/ma_loghandler.c | static void dump_header_page(uchar *buff)
{
LOGHANDLER_FILE_INFO desc;
char strbuff[21];
struct tm tmp_tm;
time_t header_time;
translog_interpret_file_header(&desc, buff);
header_time= desc.timestamp/1000000ULL;
localtime_r(&header_time, &tmp_tm);
printf(" This can be header page:\n"
" Ti... | O0 | c | dump_header_page:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %rbx
subq $0xf8, %rsp
movq %fs:0x28, %rax
movq %rax, -0x20(%rbp)
movq %rdi, -0x48(%rbp)
movq -0x48(%rbp), %rsi
leaq -0x80(%rbp), %rdi
callq 0x4f8a0
movq -0x78(%rbp), %rax
movl $0xf4240, %ecx # imm = 0xF4240
xorl %edx, %edx
divq %rcx
movq ... | dump_header_page:
push rbp
mov rbp, rsp
push r15
push r14
push rbx
sub rsp, 0F8h
mov rax, fs:28h
mov [rbp+var_20], rax
mov [rbp+var_48], rdi
mov rsi, [rbp+var_48]
lea rdi, [rbp+var_80]
call translog_interpret_file_header
mov rax, [rbp+var_78]
mov ecx, offset my_open
xo... | unsigned long long dump_header_page(long long a1)
{
int v1; // r15d
const char *v2; // rax
int v4; // [rsp+3Ch] [rbp-D4h]
int v5; // [rsp+40h] [rbp-D0h]
int v6; // [rsp+44h] [rbp-CCh]
int v7; // [rsp+48h] [rbp-C8h]
int v8; // [rsp+4Ch] [rbp-C4h]
unsigned long long v9; // [rsp+50h] [rbp-C0h] BYREF
_DW... | dump_header_page:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH RBX
SUB RSP,0xf8
MOV RAX,qword ptr FS:[0x28]
MOV qword ptr [RBP + -0x20],RAX
MOV qword ptr [RBP + -0x48],RDI
MOV RSI,qword ptr [RBP + -0x48]
LEA RDI,[RBP + -0x80]
CALL 0x0014f8a0
MOV RAX,qword ptr [RBP + -0x78]
MOV ECX,0xf4240
XOR EDX,EDX
DIV RCX
MOV qword p... |
void dump_header_page(int8 param_1)
{
int8 uVar1;
long in_FS_OFFSET;
ulong local_c8;
tm local_c0;
ulong local_88;
ulong local_80;
int8 local_78;
int8 local_70;
int8 local_68;
long local_60;
int8 local_58;
int8 local_50;
int1 local_48 [32];
long local_28;
local_28 = *(long *)(in_FS_OFF... | |
21,022 | ggml_threadpool_free | monkey531[P]llama/ggml/src/ggml-cpu/ggml-cpu.c | void ggml_threadpool_free(struct ggml_threadpool* threadpool) {
if (!threadpool) return;
const int n_threads = threadpool->n_threads_max;
#ifndef GGML_USE_OPENMP
struct ggml_compute_state* workers = threadpool->workers;
ggml_mutex_lock(&threadpool->mutex);
threadpool->stop = true;
threadpool... | O2 | c | ggml_threadpool_free:
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
testq %rdi, %rdi
je 0xa067
movq %rdi, %rbx
movslq 0xd8(%rdi), %r15
movl $0x220, %r12d # imm = 0x220
addq 0xd0(%rdi), %r12
callq 0x88b0
movb $0x1, %al
xchgb %al, 0xc8(%rbx)
xorl %eax, %eax
xchgb %al, 0xc9(%rbx)
xorl %r13d, %r13d
leaq ... | ggml_threadpool_free:
push r15
push r14
push r13
push r12
push rbx
test rdi, rdi
jz loc_A067
mov rbx, rdi
movsxd r15, dword ptr [rdi+0D8h]
mov r12d, 220h
add r12, [rdi+0D0h]
call _pthread_mutex_lock
mov al, 1
xchg al, [rbx+0C8h]
xor eax, eax
xchg al, [rbx+0C9h]
xor ... | void ggml_threadpool_free(long long a1)
{
long long v2; // r15
long long *v3; // r12
long long v4; // r13
long long v5; // rdi
if ( a1 )
{
v2 = *(int *)(a1 + 216);
v3 = (long long *)(*(_QWORD *)(a1 + 208) + 544LL);
pthread_mutex_lock();
*(_BYTE *)(a1 + 200) = 1;
*(_BYTE *)(a1 + 201) = ... | ggml_threadpool_free:
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
TEST RDI,RDI
JZ 0x0010a067
MOV RBX,RDI
MOVSXD R15,dword ptr [RDI + 0xd8]
MOV R12D,0x220
ADD R12,qword ptr [RDI + 0xd0]
CALL 0x001088b0
MOV AL,0x1
XCHG byte ptr [RBX + 0xc8],AL
XOR EAX,EAX
XCHG byte ptr [RBX + 0xc9],AL
XOR R13D,R13D
LEA R14,[RBX + 0x28]
... |
void ggml_threadpool_free(pthread_mutex_t *param_1)
{
int iVar1;
uint uVar2;
pthread_t *ppVar3;
long lVar4;
if (param_1 == (pthread_mutex_t *)0x0) {
return;
}
iVar1 = *(int *)((long)param_1 + 0xd8);
ppVar3 = *(pthread_t **)((long)param_1 + 0xd0);
pthread_mutex_lock(param_1);
LOCK();
param... | |
21,023 | thr_multi_lock | eloqsql/mysys/thr_lock.c | enum enum_thr_lock_result
thr_multi_lock(THR_LOCK_DATA **data, uint count, THR_LOCK_INFO *owner,
ulong lock_wait_timeout)
{
THR_LOCK_DATA **pos, **end, **first_lock;
DBUG_ENTER("thr_multi_lock");
DBUG_PRINT("lock",("data: %p count: %d", data, count));
if (count > 1)
sort_locks(data,count);
... | O0 | c | thr_multi_lock:
pushq %rbp
movq %rsp, %rbp
subq $0x50, %rsp
movq %rdi, -0x10(%rbp)
movl %esi, -0x14(%rbp)
movq %rdx, -0x20(%rbp)
movq %rcx, -0x28(%rbp)
jmp 0xf9489
cmpl $0x1, -0x14(%rbp)
jbe 0xf949d
movq -0x10(%rbp), %rdi
movl -0x14(%rbp), %esi
callq 0xf9670
jmp 0xf94b3
cmpl $0x0, -0x14(%rbp)
jne 0xf94b1
jmp 0xf94a5
mo... | thr_multi_lock:
push rbp
mov rbp, rsp
sub rsp, 50h
mov [rbp+var_10], rdi
mov [rbp+var_14], esi
mov [rbp+var_20], rdx
mov [rbp+var_28], rcx
jmp short $+2
loc_F9489:
cmp [rbp+var_14], 1
jbe short loc_F949D
mov rdi, [rbp+var_10]
mov esi, [rbp+var_14]
call sort_locks
jmp ... | long long thr_multi_lock(_QWORD *a1, unsigned int a2, long long a3, long long a4)
{
unsigned int v5; // [rsp+Ch] [rbp-44h]
_QWORD *v6; // [rsp+10h] [rbp-40h]
unsigned long long v7; // [rsp+18h] [rbp-38h]
_QWORD *v8; // [rsp+20h] [rbp-30h]
_QWORD *i; // [rsp+20h] [rbp-30h]
if ( a2 <= 1 )
{
if ( !a2 )... | thr_multi_lock:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x50
MOV qword ptr [RBP + -0x10],RDI
MOV dword ptr [RBP + -0x14],ESI
MOV qword ptr [RBP + -0x20],RDX
MOV qword ptr [RBP + -0x28],RCX
JMP 0x001f9489
LAB_001f9489:
CMP dword ptr [RBP + -0x14],0x1
JBE 0x001f949d
MOV RDI,qword ptr [RBP + -0x10]
MOV ESI,dword ptr [RBP + -0x14]
CA... |
int thr_multi_lock(long *param_1,uint param_2,int8 param_3,int8 param_4)
{
int iVar1;
long *plVar2;
long *local_48;
long *local_38;
if (param_2 < 2) {
if (param_2 == 0) {
return 0;
}
}
else {
sort_locks(param_1,param_2);
}
plVar2 = param_1 + param_2;
local_38 = param_1;
whil... | |
21,024 | ps_fetch_from_1_to_8_bytes | eloqsql/libmariadb/libmariadb/ma_stmt_codec.c | void ps_fetch_from_1_to_8_bytes(MYSQL_BIND *r_param, const MYSQL_FIELD * const field,
unsigned char **row, unsigned int byte_count)
{
my_bool is_unsigned= test(field->flags & UNSIGNED_FLAG);
r_param->buffer_length= byte_count;
switch (byte_count) {
case 1:
*(uchar *)r_param->buffer= **ro... | O3 | c | ps_fetch_from_1_to_8_bytes:
pushq %rbp
movq %rsp, %rbp
movb 0x64(%rsi), %sil
movl %ecx, %eax
movq %rax, 0x40(%rdi)
decl %ecx
cmpl $0x7, %ecx
ja 0x25bdb
shrb $0x5, %sil
andb $0x1, %sil
leaq 0x16540(%rip), %r8 # 0x3c040
movslq (%r8,%rcx,4), %rcx
addq %r8, %rcx
jmpq *%rcx
movq (%rdx), %rcx
movb (%rcx), %cl
movq 0x10(... | ps_fetch_from_1_to_8_bytes:
push rbp
mov rbp, rsp
mov sil, [rsi+64h]
mov eax, ecx
mov [rdi+40h], rax
dec ecx; switch 8 cases
cmp ecx, 7
ja def_25B07; jumptable 0000000000025B07 default case, cases 3,5-7
shr sil, 5
and sil, 1
lea r8, jpt_25B07
movsxd rcx, ds:(jpt_25B07 - 3C04... | long long ps_fetch_from_1_to_8_bytes(long long a1, long long a2, _BYTE **a3, unsigned int a4)
{
char v4; // si
long long result; // rax
char v6; // si
int v7; // ecx
char v8; // cl
signed long long v9; // rcx
v4 = *(_BYTE *)(a2 + 100);
result = a4;
*(_QWORD *)(a1 + 64) = a4;
v6 = (v4 & 0x20) != 0;... | ps_fetch_from_1_to_8_bytes:
PUSH RBP
MOV RBP,RSP
MOV SIL,byte ptr [RSI + 0x64]
MOV EAX,ECX
MOV qword ptr [RDI + 0x40],RAX
DEC ECX
CMP ECX,0x7
JA 0x00125bdb
SHR SIL,0x5
AND SIL,0x1
LEA R8,[0x13c040]
MOVSXD RCX,dword ptr [R8 + RCX*0x4]
ADD RCX,R8
switchD:
JMP RCX
caseD_1:
MOV RCX,qword ptr [RDX]
MOV CL,byte ptr [RCX]
MOV... |
void ps_fetch_from_1_to_8_bytes(long param_1,long param_2,long *param_3,uint param_4)
{
int1 uVar1;
byte bVar2;
byte bVar3;
bVar3 = *(byte *)(param_2 + 100);
*(ulong *)(param_1 + 0x40) = (ulong)param_4;
if (param_4 - 1 < 8) {
bVar3 = bVar3 >> 5 & 1;
switch(param_4) {
case 1:
**(int1 *... | |
21,025 | ma_real_read | eloqsql/libmariadb/libmariadb/ma_net.c | static ulong ma_real_read(NET *net, size_t *complen)
{
uchar *pos;
ssize_t length;
uint i;
ulong len=packet_error;
size_t remain= (net->compress ? NET_HEADER_SIZE+COMP_HEADER_SIZE :
NET_HEADER_SIZE);
*complen = 0;
net->reading_or_writing=1;
pos = net->buff + net->where_b; /* net->packet -4 */
... | O0 | c | ma_real_read:
pushq %rbp
movq %rsp, %rbp
subq $0x50, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movl $0xffffffff, %eax # imm = 0xFFFFFFFF
movq %rax, -0x30(%rbp)
movq -0x8(%rbp), %rax
movsbl 0x84(%rax), %edx
movl $0x4, %eax
movl $0x7, %ecx
cmpl $0x0, %edx
cmovnel %ecx, %eax
cltq
movq %rax, -0x38(%rbp)
movq ... | ma_real_read:
push rbp
mov rbp, rsp
sub rsp, 50h
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov eax, 0FFFFFFFFh
mov [rbp+var_30], rax
mov rax, [rbp+var_8]
movsx edx, byte ptr [rax+84h]
mov eax, 4
mov ecx, 7
cmp edx, 0
cmovnz eax, ecx
cdqe
mov [rbp+var_38], rax
mov r... | unsigned long long ma_real_read(long long a1, unsigned long long *a2)
{
int v2; // eax
int v3; // ecx
long long v4; // rdx
unsigned long long v6; // [rsp+8h] [rbp-48h]
unsigned long long v7; // [rsp+10h] [rbp-40h]
unsigned long long v8; // [rsp+18h] [rbp-38h]
unsigned long long v9; // [rsp+20h] [rbp-30h]... | ma_real_read:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x50
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV EAX,0xffffffff
MOV qword ptr [RBP + -0x30],RAX
MOV RAX,qword ptr [RBP + -0x8]
MOVSX EDX,byte ptr [RAX + 0x84]
MOV EAX,0x4
MOV ECX,0x7
CMP EDX,0x0
CMOVNZ EAX,ECX
CDQE
MOV qword ptr [RBP + -0x38],RAX
MOV RAX... |
ulong ma_real_read(int8 *param_1,ulong *param_2)
{
char cVar1;
int iVar2;
long lVar3;
ulong local_50;
ulong local_40;
ulong local_38;
uint local_2c;
long local_20;
local_38 = 0xffffffff;
iVar2 = 4;
if (*(char *)((long)param_1 + 0x84) != '\0') {
iVar2 = 7;
}
local_40 = (ulong)iVar2;
... | |
21,026 | hash_rec_mask | eloqsql/libmariadb/libmariadb/ma_hashtbl.c | static uint hash_rec_mask(MA_HASHTBL *hash,MA_HASHTBL_LINK *pos,uint buffmax,
uint maxlength)
{
uint length;
uchar *key= (uchar*) hash_key(hash,pos->data,&length,0);
return hash_mask((*hash->calc_hashnr)(key,length),buffmax,maxlength);
} | O3 | c | hash_rec_mask:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r12
pushq %rbx
subq $0x10, %rsp
movl %ecx, %ebx
movl %edx, %r14d
movq %rsi, %rax
movq %rdi, %r15
movq 0x30(%rdi), %rcx
testq %rcx, %rcx
je 0x5f5eb
leaq -0x24(%rbp), %r12
movq %rax, %rdi
movq %r12, %rsi
xorl %edx, %edx
callq *%rcx
movl (%r12), %esi
j... | hash_rec_mask:
push rbp
mov rbp, rsp
push r15
push r14
push r12
push rbx
sub rsp, 10h
mov ebx, ecx
mov r14d, edx
mov rax, rsi
mov r15, rdi
mov rcx, [rdi+30h]
test rcx, rcx
jz short loc_5F5EB
lea r12, [rbp+var_24]
mov rdi, rax
mov rsi, r12
xor edx, edx
c... | long long hash_rec_mask(unsigned int *a1, long long a2, unsigned int a3, unsigned int a4)
{
long long ( *v7)(long long, unsigned int *, _QWORD); // rcx
long long v8; // rax
long long v9; // rsi
int v10; // eax
unsigned int v11; // ecx
long long result; // rax
unsigned int v13[9]; // [rsp+Ch] [rbp-24h] BY... | hash_rec_mask:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R12
PUSH RBX
SUB RSP,0x10
MOV EBX,ECX
MOV R14D,EDX
MOV RAX,RSI
MOV R15,RDI
MOV RCX,qword ptr [RDI + 0x30]
TEST RCX,RCX
JZ 0x0015f5eb
LEA R12,[RBP + -0x24]
MOV RDI,RAX
MOV RSI,R12
XOR EDX,EDX
CALL RCX
MOV ESI,dword ptr [R12]
JMP 0x0015f5f8
LAB_0015f5eb:
MOV ESI,... |
uint hash_rec_mask(uint *param_1,long param_2,ulong param_3,uint param_4)
{
uint uVar1;
uint uVar2;
uint local_2c;
if (*(code **)(param_1 + 0xc) == (code *)0x0) {
local_2c = param_1[1];
param_2 = param_2 + (ulong)*param_1;
}
else {
param_2 = (**(code **)(param_1 + 0xc))(param_2,&local_2c,0)... | |
21,027 | gguf_kv::gguf_kv<unsigned char>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::vector<unsigned char, std::allocator<unsigned char>> const&) | Yangxiaoz[P]GGML-Tutorial/ggml/src/gguf.cpp | gguf_kv(const std::string & key, const std::vector<T> & value)
: key(key), is_array(true), type(type_to_gguf_type<T>::value) {
GGML_ASSERT(!key.empty());
data.resize(value.size()*sizeof(T));
for (size_t i = 0; i < value.size(); ++i) {
const T tmp = value[i];
m... | O0 | cpp | gguf_kv::gguf_kv<unsigned char>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::vector<unsigned char, std::allocator<unsigned char>> const&):
pushq %rbp
movq %rsp, %rbp
subq $0x70, %rsp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq -0x8(%rbp), %rdi
... | _ZN7gguf_kvC2IbEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIT_SaISA_EE:
push rbp
mov rbp, rsp
sub rsp, 70h
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov [rbp+var_18], rdx
mov rdi, [rbp+var_8]
mov [rbp+var_48], rdi
mov rsi, [rbp+var_10]
call __ZNSt7__cxx1112b... | unsigned long long gguf_kv::gguf_kv<bool>(long long a1, long long a2, long long a3)
{
long long v3; // rax
unsigned long long v4; // rcx
unsigned long long result; // rax
char v6; // [rsp+3Fh] [rbp-31h]
unsigned long long i; // [rsp+40h] [rbp-30h]
std::string::basic_string(a1, a2);
*(_BYTE *)(a1 + 32) =... | gguf_kv<bool>:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x70
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV qword ptr [RBP + -0x18],RDX
MOV RDI,qword ptr [RBP + -0x8]
MOV qword ptr [RBP + -0x48],RDI
MOV RSI,qword ptr [RBP + -0x10]
CALL 0x001450e0
MOV RDI,qword ptr [RBP + -0x48]
MOV byte ptr [RDI + 0x20],0x1
MOV... |
/* gguf_kv::gguf_kv<bool>(std::__cxx11::string const&, std::vector<bool, std::allocator<bool> >
const&) */
void __thiscall gguf_kv::gguf_kv<bool>(gguf_kv *this,string *param_1,vector *param_2)
{
byte bVar1;
ulong uVar2;
int8 uVar3;
long lVar4;
ulong local_38;
std::__cxx11::string::string((string *)... | |
21,028 | gguf_kv::gguf_kv<unsigned char>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::vector<unsigned char, std::allocator<unsigned char>> const&) | Yangxiaoz[P]GGML-Tutorial/ggml/src/gguf.cpp | gguf_kv(const std::string & key, const std::vector<T> & value)
: key(key), is_array(true), type(type_to_gguf_type<T>::value) {
GGML_ASSERT(!key.empty());
data.resize(value.size()*sizeof(T));
for (size_t i = 0; i < value.size(); ++i) {
const T tmp = value[i];
m... | O1 | cpp | gguf_kv::gguf_kv<unsigned char>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::vector<unsigned char, std::allocator<unsigned char>> const&):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movq %rdx, %r12
movq %rsi, %rbp
movq %rdi, %r15
leaq 0x10... | _ZN7gguf_kvC2IdEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIT_SaISA_EE:
push rbp
push r15
push r14
push r13
push r12
push rbx
push rax
mov r12, rdx
mov rbp, rsi
mov r15, rdi
lea rbx, [rdi+10h]
mov [rdi], rbx
mov rsi, [rsi]
mov rdx, [rbp+8]
add ... | long long gguf_kv::gguf_kv<double>(long long a1, _QWORD *a2, long long *a3)
{
int v4; // r8d
int v5; // r9d
long long result; // rax
unsigned long long v7; // rcx
*(_QWORD *)a1 = a1 + 16;
std::string::_M_construct<char *>(a1, *a2, *a2 + a2[1]);
*(_BYTE *)(a1 + 32) = 1;
*(_DWORD *)(a1 + 36) = 12;
*(_... | gguf_kv<double>:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV R12,RDX
MOV RBP,RSI
MOV R15,RDI
LEA RBX,[RDI + 0x10]
MOV qword ptr [RDI],RBX
MOV RSI,qword ptr [RSI]
MOV RDX,qword ptr [RBP + 0x8]
ADD RDX,RSI
CALL 0x00117620
MOV byte ptr [R15 + 0x20],0x1
MOV dword ptr [R15 + 0x24],0xc
LEA R14,[R15 + 0... |
/* gguf_kv::gguf_kv<double>(std::__cxx11::string const&, std::vector<double, std::allocator<double>
> const&) */
void __thiscall gguf_kv::gguf_kv<double>(gguf_kv *this,string *param_1,vector *param_2)
{
long lVar1;
ulong uVar2;
*(gguf_kv **)this = this + 0x10;
std::__cxx11::string::_M_construct<char*>
... | |
21,029 | gguf_kv::gguf_kv<unsigned char>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::vector<unsigned char, std::allocator<unsigned char>> const&) | Yangxiaoz[P]GGML-Tutorial/ggml/src/gguf.cpp | gguf_kv(const std::string & key, const std::vector<T> & value)
: key(key), is_array(true), type(type_to_gguf_type<T>::value) {
GGML_ASSERT(!key.empty());
data.resize(value.size()*sizeof(T));
for (size_t i = 0; i < value.size(); ++i) {
const T tmp = value[i];
m... | O2 | cpp | gguf_kv::gguf_kv<unsigned char>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::vector<unsigned char, std::allocator<unsigned char>> const&):
pushq %r15
pushq %r14
pushq %r12
pushq %rbx
pushq %rax
movq %rdx, %r15
movq %rsi, %r12
movq %rdi, %r14
callq 0x1e2a0
movb $0x1, 0x20(%... | _ZN7gguf_kvC2IiEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIT_SaISA_EE:
push r15
push r14
push r12
push rbx
push rax
mov r15, rdx
mov r12, rsi
mov r14, rdi
call __ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2ERKS4_; std::string::basic_string(std::string cons... | unsigned long long gguf_kv::gguf_kv<int>(
long long a1,
long long a2,
_QWORD *a3,
double a4,
__m128 a5,
__m128 a6,
__m128 a7,
double a8,
double a9,
__m128 a10,
__m128 a11)
{
char v11; // al
long long v13; // r8
long long v14;... | gguf_kv<int>:
PUSH R15
PUSH R14
PUSH R12
PUSH RBX
PUSH RAX
MOV R15,RDX
MOV R12,RSI
MOV R14,RDI
CALL 0x0011e2a0
MOV byte ptr [R14 + 0x20],0x1
MOV dword ptr [R14 + 0x24],0x5
LEA RBX,[R14 + 0x28]
XORPS XMM0,XMM0
MOVUPS xmmword ptr [R14 + 0x28],XMM0
MOVUPS xmmword ptr [R14 + 0x38],XMM0
MOVUPS xmmword ptr [R14 + 0x48],XMM0
... |
/* gguf_kv::gguf_kv<int>(std::__cxx11::string const&, std::vector<int, std::allocator<int> > const&)
*/
void __thiscall gguf_kv::gguf_kv<int>(gguf_kv *this,string *param_1,vector *param_2)
{
int4 *puVar1;
ulong uVar2;
std::__cxx11::string::string((string *)this,param_1);
this[0x20] = (gguf_kv)0x1;
*... | |
21,030 | gguf_kv::gguf_kv<unsigned char>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::vector<unsigned char, std::allocator<unsigned char>> const&) | Yangxiaoz[P]GGML-Tutorial/ggml/src/gguf.cpp | gguf_kv(const std::string & key, const std::vector<T> & value)
: key(key), is_array(true), type(type_to_gguf_type<T>::value) {
GGML_ASSERT(!key.empty());
data.resize(value.size()*sizeof(T));
for (size_t i = 0; i < value.size(); ++i) {
const T tmp = value[i];
m... | O3 | cpp | gguf_kv::gguf_kv<unsigned char>(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, std::vector<unsigned char, std::allocator<unsigned char>> const&):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movq %rdx, %r12
movq %rsi, %rbp
movq %rdi, %r15
leaq 0x10... | _ZN7gguf_kvC2IdEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIT_SaISA_EE:
push rbp
push r15
push r14
push r13
push r12
push rbx
push rax
mov r12, rdx
mov rbp, rsi
mov r15, rdi
lea rbx, [rdi+10h]
mov [rdi], rbx
mov rsi, [rsi]
mov rdx, [rbp+8]
add ... | long long gguf_kv::gguf_kv<double>(long long a1, _QWORD *a2, long long *a3)
{
int v4; // r8d
int v5; // r9d
long long result; // rax
unsigned long long v7; // rcx
*(_QWORD *)a1 = a1 + 16;
std::string::_M_construct<char *>(a1, *a2, *a2 + a2[1]);
*(_BYTE *)(a1 + 32) = 1;
*(_DWORD *)(a1 + 36) = 12;
*(_... | gguf_kv<double>:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV R12,RDX
MOV RBP,RSI
MOV R15,RDI
LEA RBX,[RDI + 0x10]
MOV qword ptr [RDI],RBX
MOV RSI,qword ptr [RSI]
MOV RDX,qword ptr [RBP + 0x8]
ADD RDX,RSI
CALL 0x00116620
MOV byte ptr [R15 + 0x20],0x1
MOV dword ptr [R15 + 0x24],0xc
LEA R14,[R15 + 0... |
/* gguf_kv::gguf_kv<double>(std::__cxx11::string const&, std::vector<double, std::allocator<double>
> const&) */
void __thiscall gguf_kv::gguf_kv<double>(gguf_kv *this,string *param_1,vector *param_2)
{
long lVar1;
ulong uVar2;
*(gguf_kv **)this = this + 0x10;
std::__cxx11::string::_M_construct<char*>
... | |
21,031 | my_caseup_8bit | eloqsql/strings/ctype-simple.c | size_t my_caseup_8bit(CHARSET_INFO * cs, const char *src, size_t srclen,
char *dst, size_t dstlen __attribute__((unused)))
{
const char *end= src + srclen;
register const uchar *map= cs->to_upper;
DBUG_ASSERT(srclen <= dstlen);
for ( ; src != end ; src++)
*dst++= (char) map[(uchar) *sr... | O0 | c | my_caseup_8bit:
pushq %rbp
movq %rsp, %rbp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq %rdx, -0x18(%rbp)
movq %rcx, -0x20(%rbp)
movq %r8, -0x28(%rbp)
movq -0x10(%rbp), %rax
addq -0x18(%rbp), %rax
movq %rax, -0x30(%rbp)
movq -0x8(%rbp), %rax
movq 0x50(%rax), %rax
movq %rax, -0x38(%rbp)
jmp 0x78da2
jmp 0x78da4
movq... | my_caseup_8bit:
push rbp
mov rbp, rsp
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov [rbp+var_18], rdx
mov [rbp+var_20], rcx
mov [rbp+var_28], r8
mov rax, [rbp+var_10]
add rax, [rbp+var_18]
mov [rbp+var_30], rax
mov rax, [rbp+var_8]
mov rax, [rax+50h]
mov [rbp+var_38],... | long long my_caseup_8bit(long long a1, unsigned __int8 *a2, long long a3, _BYTE *a4)
{
_BYTE *v4; // rax
long long v6; // [rsp+0h] [rbp-38h]
unsigned __int8 *v8; // [rsp+28h] [rbp-10h]
v8 = a2;
v6 = *(_QWORD *)(a1 + 80);
while ( v8 != &a2[a3] )
{
v4 = a4++;
*v4 = *(_BYTE *)(v6 + *v8++);
}
re... | my_caseup_8bit:
PUSH RBP
MOV RBP,RSP
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV qword ptr [RBP + -0x18],RDX
MOV qword ptr [RBP + -0x20],RCX
MOV qword ptr [RBP + -0x28],R8
MOV RAX,qword ptr [RBP + -0x10]
ADD RAX,qword ptr [RBP + -0x18]
MOV qword ptr [RBP + -0x30],RAX
MOV RAX,qword ptr [RBP + -0x8... |
long my_caseup_8bit(long param_1,byte *param_2,long param_3,int1 *param_4)
{
long lVar1;
int1 *local_28;
byte *local_18;
lVar1 = *(long *)(param_1 + 0x50);
local_28 = param_4;
for (local_18 = param_2; local_18 != param_2 + param_3; local_18 = local_18 + 1) {
*local_28 = *(int1 *)(lVar1 + (ulong)*lo... | |
21,032 | inline_mysql_file_read | eloqsql/include/mysql/psi/mysql_file.h | static inline size_t
inline_mysql_file_read(
#ifdef HAVE_PSI_FILE_INTERFACE
const char *src_file, uint src_line,
#endif
File file, uchar *buffer, size_t count, myf flags)
{
size_t result;
#ifdef HAVE_PSI_FILE_INTERFACE
struct PSI_file_locker *locker;
PSI_file_locker_state state;
size_t bytes_read;
locker=... | O3 | c | inline_mysql_file_read:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x48, %rsp
movq %rcx, %rbx
movq %rdx, %r14
movl %esi, %r15d
movl %edi, %r13d
leaq 0x3065d2(%rip), %rax # 0x386010
movq (%rax), %rax
leaq -0x70(%rbp), %rdi
movl $0x6, %edx
callq *0x158(%rax)
testq %rax, %ra... | inline_mysql_file_read:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 48h
mov rbx, rcx
mov r14, rdx
mov r15d, esi
mov r13d, edi
lea rax, PSI_server
mov rax, [rax]
lea rdi, [rbp+var_70]
mov edx, 6
call qword ptr [rax+158h]
test ... | long long inline_mysql_file_read(unsigned int a1, long long a2, long long a3, long long a4)
{
long long v6; // rax
long long v7; // r14
long long v9; // r12
long long v10; // rsi
_BYTE v11[112]; // [rsp+0h] [rbp-70h] BYREF
v6 = ((long long ( *)(_BYTE *, long long, long long))PSI_server[43])(v11, a2, 6LL);... | inline_mysql_file_read:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x48
MOV RBX,RCX
MOV R14,RDX
MOV R15D,ESI
MOV R13D,EDI
LEA RAX,[0x486010]
MOV RAX,qword ptr [RAX]
LEA RDI,[RBP + -0x70]
MOV EDX,0x6
CALL qword ptr [RAX + 0x158]
TEST RAX,RAX
JNZ 0x0017fa7d
MOV ECX,0x4
MOV EDI,R15D
MOV RSI,... |
long inline_mysql_file_read(int4 param_1,ulong param_2,int8 param_3,int8 param_4)
{
long lVar1;
long lVar2;
int8 uVar3;
int1 local_78 [72];
lVar1 = (**(code **)(PSI_server + 0x158))(local_78,param_2,6);
if (lVar1 == 0) {
lVar2 = my_read(param_2 & 0xffffffff,param_3,param_4,4);
}
else {
(**(... | |
21,033 | common_sampler_type_to_str[abi:cxx11](common_sampler_type) | monkey531[P]llama/common/sampling.cpp | std::string common_sampler_type_to_str(enum common_sampler_type cnstr) {
switch (cnstr) {
case COMMON_SAMPLER_TYPE_DRY: return "dry";
case COMMON_SAMPLER_TYPE_TOP_K: return "top_k";
case COMMON_SAMPLER_TYPE_TYPICAL_P: return "typ_p";
case COMMON_SAMPLER_TYPE_TOP_P: ... | O2 | cpp | common_sampler_type_to_str[abi:cxx11](common_sampler_type):
pushq %rbx
subq $0x10, %rsp
movq %rdi, %rbx
decl %esi
cmpl $0x9, %esi
ja 0x985b9
leaq 0x20d22(%rip), %rax # 0xb9254
movslq (%rax,%rsi,4), %rcx
addq %rax, %rcx
jmpq *%rcx
leaq 0x210e9(%rip), %rsi # 0xb962b
leaq 0xf(%rsp), %rdx
jmp 0x985c5
leaq 0x210eb(%... | _Z26common_sampler_type_to_strB5cxx1119common_sampler_type:
push rbx
sub rsp, 10h
mov rbx, rdi
dec esi; switch 10 cases
cmp esi, 9
ja def_98539; jumptable 0000000000098539 default case, case 5
lea rax, jpt_98539
movsxd rcx, ds:(jpt_98539 - 0B9254h)[rax+rsi*4]
add rcx, rax
jmp rcx; s... | _QWORD * common_sampler_type_to_str[abi:cxx11](_QWORD *a1, int a2)
{
char *v2; // rsi
switch ( a2 )
{
case 1:
v2 = "dry";
break;
case 2:
v2 = "top_k";
break;
case 3:
v2 = "top_p";
break;
case 4:
v2 = "min_p";
break;
case 6:
v2 = "typ_p";
... | common_sampler_type_to_str[abi:cxx11]:
PUSH RBX
SUB RSP,0x10
MOV RBX,RDI
DEC ESI
CMP ESI,0x9
JA 0x001985b9
LEA RAX,[0x1b9254]
MOVSXD RCX,dword ptr [RAX + RSI*0x4]
ADD RCX,RAX
switchD:
JMP RCX
caseD_1:
LEA RSI,[0x1b962b]
LEA RDX,[RSP + 0xf]
JMP 0x001985c5
caseD_3:
LEA RSI,[0x1b963b]
LEA RDX,[RSP + 0xc]
JMP 0x001985c5
ca... |
/* common_sampler_type_to_str[abi:cxx11](common_sampler_type) */
string * common_sampler_type_to_str_abi_cxx11_(string *param_1,int4 param_2)
{
allocator *paVar1;
char *pcVar2;
allocator local_12;
allocator local_11;
allocator local_10;
allocator local_f;
allocator local_e;
allocator local_d;
alloc... | |
21,034 | parse_connection_string | eloqsql/libmariadb/libmariadb/mariadb_lib.c | static int parse_connection_string(MYSQL *mysql, const char *unused __attribute__((unused)),
const char *conn_str, ssize_t len)
{
char *conn_save,
*end, *pos,
*key= NULL, *val= NULL;
my_bool in_curly_brace= 0;
if (len == -1)
len= strlen(conn_str);
/* don't ... | O0 | c | parse_connection_string:
pushq %rbp
movq %rsp, %rbp
subq $0x60, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq %rcx, -0x28(%rbp)
movq $0x0, -0x48(%rbp)
movq $0x0, -0x50(%rbp)
movb $0x0, -0x51(%rbp)
cmpq $-0x1, -0x28(%rbp)
jne 0x1f0e0
movq -0x20(%rbp), %rdi
callq 0x131a0
movq %rax, -0x28(... | parse_connection_string:
push rbp
mov rbp, rsp
sub rsp, 60h
mov [rbp+var_10], rdi
mov [rbp+var_18], rsi
mov [rbp+var_20], rdx
mov [rbp+var_28], rcx
mov [rbp+var_48], 0
mov [rbp+var_50], 0
mov [rbp+var_51], 0
cmp [rbp+var_28], 0FFFFFFFFFFFFFFFFh
jnz short loc_1F0E0
mov ... | long long parse_connection_string(long long a1, long long a2, long long a3, long long a4)
{
char *v4; // rax
char *v5; // rax
char *v6; // rax
int v8; // [rsp+8h] [rbp-58h]
char v9; // [rsp+Fh] [rbp-51h]
char *v10; // [rsp+10h] [rbp-50h]
char *v11; // [rsp+18h] [rbp-48h]
char *v12; // [rsp+20h] [rbp-40... | parse_connection_string:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x60
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 + -0x48],0x0
MOV qword ptr [RBP + -0x50],0x0
MOV byte ptr [RBP + -0x51],0x0
CMP qword ptr [RBP + -0x28],-0x1
JNZ 0... |
int4
parse_connection_string(int8 param_1,int8 param_2,char *param_3,size_t param_4)
{
char cVar1;
bool bVar2;
int iVar3;
char *__dest;
ushort **ppuVar4;
char *pcVar5;
char *local_58;
char *local_50;
char *local_48;
char *local_40;
size_t local_30;
local_50 = (char *)0x0;
local_58 = (char... | |
21,035 | 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 0x3b190
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 0x0013b190
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... | |
21,036 | protocol::encode(protocol::ChunkVoxels const&, unsigned int) | untodesu[P]voxelius/game/shared/protocol.cc | ENetPacket *protocol::encode(const protocol::ChunkVoxels &packet, enet_uint32 flags)
{
write_buffer.reset();
write_buffer.write_UI16(protocol::ChunkVoxels::ID);
write_buffer.write_I32(packet.chunk.x);
write_buffer.write_I32(packet.chunk.y);
write_buffer.write_I32(packet.chunk.z);
packet.voxels.s... | O0 | cpp | protocol::encode(protocol::ChunkVoxels const&, unsigned int):
pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x8(%rbp)
movl %esi, -0xc(%rbp)
leaq 0x3b131a(%rip), %rdi # 0x510ba0
callq 0x27a920
leaq 0x3b130e(%rip), %rdi # 0x510ba0
movl $0x5, %esi
callq 0x27a970
movq -0x8(%rbp), %rax
movl 0x10(%rax), %esi
... | _ZN8protocol6encodeERKNS_11ChunkVoxelsEj:
push rbp
mov rbp, rsp
sub rsp, 10h
mov [rbp+var_8], rdi
mov [rbp+var_C], esi
lea rdi, _ZL12write_buffer; this
call _ZN11WriteBuffer5resetEv; WriteBuffer::reset(void)
lea rdi, _ZL12write_buffer; this
mov esi, 5; unsigned __int16
call _ZN11Wri... | long long protocol::encode(protocol *this, const protocol::ChunkVoxels *a2)
{
WriteBuffer::reset((WriteBuffer *)&write_buffer);
WriteBuffer::write_UI16((WriteBuffer *)&write_buffer, 5u);
WriteBuffer::write_I32((WriteBuffer *)&write_buffer, *((_DWORD *)this + 4));
WriteBuffer::write_I32((WriteBuffer *)&write_bu... | |||
21,037 | protocol::encode(protocol::ChunkVoxels const&, unsigned int) | untodesu[P]voxelius/game/shared/protocol.cc | ENetPacket *protocol::encode(const protocol::ChunkVoxels &packet, enet_uint32 flags)
{
write_buffer.reset();
write_buffer.write_UI16(protocol::ChunkVoxels::ID);
write_buffer.write_I32(packet.chunk.x);
write_buffer.write_I32(packet.chunk.y);
write_buffer.write_I32(packet.chunk.z);
packet.voxels.s... | O3 | cpp | protocol::encode(protocol::ChunkVoxels const&, unsigned int):
pushq %r15
pushq %r14
pushq %rbx
movl %esi, %ebx
movq %rdi, %r15
leaq 0x1e079b(%rip), %r14 # 0x25c970
movq %r14, %rdi
callq 0x12bef0
movq %r14, %rdi
movl $0x5, %esi
callq 0x12bf18
movl 0x10(%r15), %esi
movq %r14, %rdi
callq 0x12bf4e
movl 0x14(%r15), %esi
... | _ZN8protocol6encodeERKNS_11ChunkVoxelsEj:
push r15
push r14
push rbx
mov ebx, esi
mov r15, rdi
lea r14, _ZL12write_buffer; write_buffer
mov rdi, r14; this
call _ZN11WriteBuffer5resetEv; WriteBuffer::reset(void)
mov rdi, r14; this
mov esi, 5; unsigned __int16
call _ZN11WriteBuffer1... | long long protocol::encode(protocol *this, const protocol::ChunkVoxels *a2)
{
WriteBuffer::reset((WriteBuffer *)&write_buffer);
WriteBuffer::write_UI16((WriteBuffer *)&write_buffer, 5u);
WriteBuffer::write_UI32((WriteBuffer *)&write_buffer, *((_DWORD *)this + 4));
WriteBuffer::write_UI32((WriteBuffer *)&write_... | encode:
PUSH R15
PUSH R14
PUSH RBX
MOV EBX,ESI
MOV R15,RDI
LEA R14,[0x35c970]
MOV RDI,R14
CALL 0x0022bef0
MOV RDI,R14
MOV ESI,0x5
CALL 0x0022bf18
MOV ESI,dword ptr [R15 + 0x10]
MOV RDI,R14
CALL 0x0022bf4e
MOV ESI,dword ptr [R15 + 0x14]
MOV RDI,R14
CALL 0x0022bf4e
MOV ESI,dword ptr [R15 + 0x18]
MOV RDI,R14
CALL 0x0022bf... |
/* protocol::encode(protocol::ChunkVoxels const&, unsigned int) */
void protocol::encode(ChunkVoxels *param_1,uint param_2)
{
WriteBuffer::reset((WriteBuffer *)write_buffer);
WriteBuffer::write_UI16(0xc970);
WriteBuffer::write_UI32(0x35c970);
WriteBuffer::write_UI32(0x35c970);
WriteBuffer::write_UI32(0x35c... | |
21,038 | nlohmann::json_abi_v3_11_3::operator<(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<un... | hkr04[P]cpp-mcp/common/json.hpp | constexpr value_t type() const noexcept
{
return m_data.m_type;
} | O3 | cpp | nlohmann::json_abi_v3_11_3::operator<(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<un... | _ZN8nlohmann16json_abi_v3_11_3ltERKNS0_10basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvEESF_:
push r15
push r14
push rbx
movzx r14d, byte ptr [rdi]
movzx r15d, byte ptr [rsi]
cmp r14b, r15b
jnz short loc_1BB9D
dec ... | long long nlohmann::json_abi_v3_11_3::operator<(unsigned __int8 *a1, unsigned __int8 *a2)
{
unsigned int v2; // ebx
long long v3; // r14
long long v4; // r15
unsigned int v5; // eax
double v6; // xmm0_8
double v7; // xmm1_8
bool v8; // cf
bool v9; // zf
double v10; // xmm0_8
__m128d v11; // xmm0
... | operator<:
PUSH R15
PUSH R14
PUSH RBX
MOVZX R14D,byte ptr [RDI]
MOVZX R15D,byte ptr [RSI]
CMP R14B,R15B
JNZ 0x0011bb9d
DEC R14D
CMP R14D,0x7
JA 0x0011bd26
LEA RAX,[0x11f77c]
MOVSXD RCX,dword ptr [RAX + R14*0x4]
ADD RCX,RAX
switchD:
JMP RCX
caseD_1:
MOV RAX,qword ptr [RDI + 0x8]
MOV RCX,qword ptr [RSI + 0x8]
MOV RDI,qwo... |
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */
/* nlohmann::json_abi_v3_11_3::TEMPNAMEPLACEHOLDERVALUE(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,
nlohma... | |
21,039 | MNN::QuantizedBiasAdd::Verify(flatbuffers::Verifier&) const | mnn-tts/MNN/schema/current/TFQuantizeOp_generated.h | bool Verify(flatbuffers::Verifier &verifier) const {
return VerifyTableStart(verifier) &&
VerifyOffset(verifier, 4) &&
verifier.VerifyVector(bias()) &&
VerifyField<int32_t>(verifier, 6) &&
VerifyField<int32_t>(verifier, 8) &&
VerifyField<int32_t>(verifier, 10) ... | O0 | c | MNN::QuantizedBiasAdd::Verify(flatbuffers::Verifier&) const:
subq $0x28, %rsp
movq %rdi, 0x20(%rsp)
movq %rsi, 0x18(%rsp)
movq 0x20(%rsp), %rdi
movq %rdi, 0x8(%rsp)
movq 0x18(%rsp), %rsi
callq 0x6d010
movb %al, %cl
xorl %eax, %eax
testb $0x1, %cl
movb %al, 0x17(%rsp)
jne 0x77c44
jmp 0x77d35
movq 0x8(%rsp), %rdi
movq 0x... | _ZNK3MNN16QuantizedBiasAdd6VerifyERN11flatbuffers8VerifierE:
sub rsp, 28h
mov [rsp+28h+var_8], rdi
mov [rsp+28h+var_10], rsi
mov rdi, [rsp+28h+var_8]; this
mov [rsp+28h+var_20], rdi
mov rsi, [rsp+28h+var_10]; flatbuffers::Verifier *
call _ZNK11flatbuffers5Table16VerifyTableStartERNS_8Verifier... | char MNN::QuantizedBiasAdd::Verify(MNN::QuantizedBiasAdd *this, flatbuffers::Verifier *a2)
{
unsigned int *v2; // rax
char v4; // [rsp+17h] [rbp-11h]
v4 = 0;
if ( (flatbuffers::Table::VerifyTableStart(this, a2) & 1) != 0 )
{
v4 = 0;
if ( flatbuffers::Table::VerifyOffset(this, a2, 4u) )
{
v... | Verify:
SUB RSP,0x28
MOV qword ptr [RSP + 0x20],RDI
MOV qword ptr [RSP + 0x18],RSI
MOV RDI,qword ptr [RSP + 0x20]
MOV qword ptr [RSP + 0x8],RDI
MOV RSI,qword ptr [RSP + 0x18]
CALL 0x0016d010
MOV CL,AL
XOR EAX,EAX
TEST CL,0x1
MOV byte ptr [RSP + 0x17],AL
JNZ 0x00177c44
JMP 0x00177d35
LAB_00177c44:
MOV RDI,qword ptr [RSP... |
/* MNN::QuantizedBiasAdd::Verify(flatbuffers::Verifier&) const */
ulong __thiscall MNN::QuantizedBiasAdd::Verify(QuantizedBiasAdd *this,Verifier *param_1)
{
bool bVar1;
uint uVar2;
Vector *pVVar3;
int8 uVar4;
int1 local_11;
uVar2 = flatbuffers::Table::VerifyTableStart((Table *)this,param_1);
uVar4 =... | |
21,040 | void OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<float>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)1, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index>(int, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index const&, ... | NVIDIA-RTX[P]OSD-Lite/opensubdiv/far/../far/primvarRefiner.h | inline void
PrimvarRefinerReal<REAL>::interpFromFaces(int level, T const & src, U & dst) const {
Vtr::internal::Refinement const & refinement = _refiner.getRefinement(level-1);
Vtr::internal::Level const & parent = refinement.parent();
if (refinement.getNumChildVerticesFromFaces() == 0) return;
... | O0 | c | void OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<float>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)1, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index>(int, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index const&, ... | _ZNK10OpenSubdiv6v3_6_03Far18PrimvarRefinerRealIdE15interpFromFacesILNS0_3Sdc10SchemeTypeE2ENS1_8internal14StencilBuilderIdE5IndexESA_EEviRKT0_RT1_:
push rbp
mov rbp, rsp
sub rsp, 200h
mov [rbp+var_8], rdi
mov [rbp+var_C], esi
mov [rbp+var_18], rdx
mov [rbp+var_20], rcx
mov rax, [rbp+var_... | long long OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<double>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)2,OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index,OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index>(
OpenSubdiv::v3_6_0::Far::TopologyRefiner **a1,
int a2... | |||
21,041 | void OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<float>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)1, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index>(int, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index const&, ... | NVIDIA-RTX[P]OSD-Lite/opensubdiv/far/../far/primvarRefiner.h | inline void
PrimvarRefinerReal<REAL>::interpFromFaces(int level, T const & src, U & dst) const {
Vtr::internal::Refinement const & refinement = _refiner.getRefinement(level-1);
Vtr::internal::Level const & parent = refinement.parent();
if (refinement.getNumChildVerticesFromFaces() == 0) return;
... | O1 | c | void OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<float>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)1, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index>(int, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index const&, ... | _ZNK10OpenSubdiv6v3_6_03Far18PrimvarRefinerRealIdE15interpFromFacesILNS0_3Sdc10SchemeTypeE2ENS1_8internal14StencilBuilderIdE5IndexESA_EEviRKT0_RT1_:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 0D8h
mov rbx, rcx
mov rax, [rdi]
mov rax, [rax+48h]
movsxd rcx, esi
mov ... | void OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<double>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)2,OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index,OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index>(
long long a1,
int a2,
long long *a3,
long ... | interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)2,OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index,OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index>:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0xd8
MOV RBX,RCX
MOV RAX,qword ptr [RDI]
MOV RAX,qword ptr [RAX + 0x48]... |
/* void
OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<double>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)2,
OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index,
OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index>(int,
OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<do... | |
21,042 | void OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<float>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)1, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index>(int, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index const&, ... | NVIDIA-RTX[P]OSD-Lite/opensubdiv/far/../far/primvarRefiner.h | inline void
PrimvarRefinerReal<REAL>::interpFromFaces(int level, T const & src, U & dst) const {
Vtr::internal::Refinement const & refinement = _refiner.getRefinement(level-1);
Vtr::internal::Level const & parent = refinement.parent();
if (refinement.getNumChildVerticesFromFaces() == 0) return;
... | O2 | c | void OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<float>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)1, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index>(int, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index const&, ... | _ZNK10OpenSubdiv6v3_6_03Far18PrimvarRefinerRealIdE15interpFromFacesILNS0_3Sdc10SchemeTypeE0ENS1_8internal14StencilBuilderIdE5IndexESA_EEviRKT0_RT1_:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 108h
mov rbx, rcx
mov r14, rdx
mov rax, [rdi]
mov rcx, [rax+48h]
movsx... | void OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<double>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)0,OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index,OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index>(
long long a1,
int a2,
long long *a3,
long ... | interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)0,OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index,OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index>:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x108
MOV RBX,RCX
MOV R14,RDX
MOV RAX,qword ptr [RDI]
MOV RCX,qword ptr... |
/* void
OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<double>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)0,
OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index,
OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index>(int,
OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<do... | |
21,043 | void OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<float>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)1, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index>(int, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index const&, ... | NVIDIA-RTX[P]OSD-Lite/opensubdiv/far/../far/primvarRefiner.h | inline void
PrimvarRefinerReal<REAL>::interpFromFaces(int level, T const & src, U & dst) const {
Vtr::internal::Refinement const & refinement = _refiner.getRefinement(level-1);
Vtr::internal::Level const & parent = refinement.parent();
if (refinement.getNumChildVerticesFromFaces() == 0) return;
... | O3 | c | void OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<float>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)1, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index>(int, OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<float>::Index const&, ... | _ZNK10OpenSubdiv6v3_6_03Far18PrimvarRefinerRealIdE15interpFromFacesILNS0_3Sdc10SchemeTypeE2ENS1_8internal14StencilBuilderIdE5IndexESA_EEviRKT0_RT1_:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 0D8h
mov rbx, rcx
mov rax, [rdi]
mov rax, [rax+48h]
movsxd rcx, esi
mov ... | void OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<double>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)2,OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index,OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index>(
long long a1,
int a2,
long long *a3,
long ... | interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)2,OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index,OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index>:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0xd8
MOV RBX,RCX
MOV RAX,qword ptr [RDI]
MOV RAX,qword ptr [RAX + 0x48]... |
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */
/* void
OpenSubdiv::v3_6_0::Far::PrimvarRefinerReal<double>::interpFromFaces<(OpenSubdiv::v3_6_0::Sdc::SchemeType)2,
OpenSubdiv::v3_6_0::Far::internal::StencilBuilder<double>::Index,
OpenSubdiv::v3_6_0::Far::internal::Stenci... | |
21,044 | MemoryManager::addPage(unsigned int) | DanielDanyang[P]CSC3050-2025-Spring-Project-4/src/MemoryManager.cpp | bool MemoryManager::addPage(uint32_t addr) {
uint32_t i = this->getFirstEntryId(addr);
uint32_t j = this->getSecondEntryId(addr);
if (this->memory[i] == nullptr) {
this->memory[i] = new uint8_t *[1024];
memset(this->memory[i], 0, sizeof(uint8_t *) * 1024);
}
if (this->memory[i][j] == nullptr) {... | O0 | cpp | MemoryManager::addPage(unsigned int):
subq $0x28, %rsp
movq %rdi, 0x18(%rsp)
movl %esi, 0x14(%rsp)
movq 0x18(%rsp), %rdi
movq %rdi, (%rsp)
movl 0x14(%rsp), %esi
callq 0x33c0
movq (%rsp), %rdi
movl %eax, 0x10(%rsp)
movl 0x14(%rsp), %esi
callq 0x33e0
movl %eax, %ecx
movq (%rsp), %rax
movl %ecx, 0xc(%rsp)
movl 0x10(%rsp),... | _ZN13MemoryManager7addPageEj:
sub rsp, 28h
mov [rsp+28h+var_10], rdi
mov [rsp+28h+var_14], esi
mov rdi, [rsp+28h+var_10]; this
mov [rsp+28h+var_28], rdi
mov esi, [rsp+28h+var_14]; unsigned int
call _ZN13MemoryManager15getFirstEntryIdEj; MemoryManager::getFirstEntryId(uint)
mov rdi, [rsp+2... | char MemoryManager::addPage(
MemoryManager *this,
unsigned int a2,
__m128 a3,
__m128 a4,
__m128 a5,
__m128 a6,
double a7,
double a8,
__m128 a9,
__m128 a10)
{
long long v10; // rdx
long long v11; // r8
long long v12; // r9
__m128 v1... | addPage:
SUB RSP,0x28
MOV qword ptr [RSP + 0x18],RDI
MOV dword ptr [RSP + 0x14],ESI
MOV RDI,qword ptr [RSP + 0x18]
MOV qword ptr [RSP],RDI
MOV ESI,dword ptr [RSP + 0x14]
CALL 0x001033c0
MOV RDI,qword ptr [RSP]
MOV dword ptr [RSP + 0x10],EAX
MOV ESI,dword ptr [RSP + 0x14]
CALL 0x001033e0
MOV ECX,EAX
MOV RAX,qword ptr [R... |
/* MemoryManager::addPage(unsigned int) */
bool __thiscall MemoryManager::addPage(MemoryManager *this,uint param_1)
{
uint uVar1;
uint uVar2;
void *pvVar3;
bool local_1;
uVar1 = getFirstEntryId(this,param_1);
uVar2 = getSecondEntryId(this,param_1);
if (*(long *)(this + (ulong)uVar1 * 8) == 0) {
... | |
21,045 | MemoryManager::addPage(unsigned int) | DanielDanyang[P]CSC3050-2025-Spring-Project-4/src/MemoryManager.cpp | bool MemoryManager::addPage(uint32_t addr) {
uint32_t i = this->getFirstEntryId(addr);
uint32_t j = this->getSecondEntryId(addr);
if (this->memory[i] == nullptr) {
this->memory[i] = new uint8_t *[1024];
memset(this->memory[i], 0, sizeof(uint8_t *) * 1024);
}
if (this->memory[i][j] == nullptr) {... | O1 | cpp | MemoryManager::addPage(unsigned int):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movl %esi, %ebp
movq %rdi, %rbx
movl %esi, %r14d
shrl $0x16, %r14d
movl %esi, %r15d
shrl $0xc, %r15d
andl $0x3ff, %r15d # imm = 0x3FF
cmpq $0x0, (%rdi,%r14,8)
jne 0x2d39
movl $0x2000, %edi ... | _ZN13MemoryManager7addPageEj:
push rbp
push r15
push r14
push r13
push r12
push rbx
push rax
mov ebp, esi
mov rbx, rdi
mov r14d, esi
shr r14d, 16h
mov r15d, esi
shr r15d, 0Ch
and r15d, 3FFh
cmp qword ptr [rdi+r14*8], 0
jnz short loc_2D39
mov edi, 2000h; unsig... | bool MemoryManager::addPage(
MemoryManager *this,
unsigned int a2,
long long a3,
long long a4,
long long a5,
long long a6,
__m128 a7,
__m128 a8,
__m128 a9,
__m128 a10,
__m128 a11,
__m128 a12,
__m128 a13,
__m... | addPage:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV EBP,ESI
MOV RBX,RDI
MOV R14D,ESI
SHR R14D,0x16
MOV R15D,ESI
SHR R15D,0xc
AND R15D,0x3ff
CMP qword ptr [RDI + R14*0x8],0x0
JNZ 0x00102d39
MOV EDI,0x2000
CALL 0x00102030
MOV qword ptr [RBX + R14*0x8],RAX
MOV EDX,0x2000
MOV RDI,RAX
XOR ESI,ESI
CAL... |
/* MemoryManager::addPage(unsigned int) */
bool __thiscall MemoryManager::addPage(MemoryManager *this,uint param_1)
{
long lVar1;
long lVar2;
void *pvVar3;
ulong uVar4;
ulong uVar5;
uint uVar6;
uVar5 = (ulong)(param_1 >> 0x16);
uVar6 = param_1 >> 0xc & 0x3ff;
if (*(long *)(this + uVar5 * 8) == 0... | |
21,046 | MemoryManager::addPage(unsigned int) | DanielDanyang[P]CSC3050-2025-Spring-Project-4/src/MemoryManager.cpp | bool MemoryManager::addPage(uint32_t addr) {
uint32_t i = this->getFirstEntryId(addr);
uint32_t j = this->getSecondEntryId(addr);
if (this->memory[i] == nullptr) {
this->memory[i] = new uint8_t *[1024];
memset(this->memory[i], 0, sizeof(uint8_t *) * 1024);
}
if (this->memory[i][j] == nullptr) {... | O3 | cpp | MemoryManager::addPage(unsigned int):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movl %esi, %ebp
movq %rdi, %rbx
movl %esi, %r15d
shrl $0x16, %r15d
movl %esi, %r12d
shrl $0xc, %r12d
andl $0x3ff, %r12d # imm = 0x3FF
movq (%rdi,%r15,8), %r14
testq %r14, %r14
jne 0x2d0e
movl $0x... | _ZN13MemoryManager7addPageEj:
push rbp
push r15
push r14
push r13
push r12
push rbx
push rax
mov ebp, esi
mov rbx, rdi
mov r15d, esi
shr r15d, 16h
mov r12d, esi
shr r12d, 0Ch
and r12d, 3FFh
mov r14, [rdi+r15*8]
test r14, r14
jnz short loc_2D0E
mov edi, 200... | bool MemoryManager::addPage(
MemoryManager *this,
unsigned int a2,
long long a3,
long long a4,
long long a5,
long long a6,
__m128 a7,
__m128 a8,
__m128 a9,
__m128 a10,
__m128 a11,
__m128 a12,
__m128 a13,
__m... | addPage:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV EBP,ESI
MOV RBX,RDI
MOV R15D,ESI
SHR R15D,0x16
MOV R12D,ESI
SHR R12D,0xc
AND R12D,0x3ff
MOV R14,qword ptr [RDI + R15*0x8]
TEST R14,R14
JNZ 0x00102d0e
MOV EDI,0x2000
CALL 0x00102030
MOV R14,RAX
MOV qword ptr [RBX + R15*0x8],RAX
MOV EDX,0x2000
MO... |
/* MemoryManager::addPage(unsigned int) */
bool __thiscall MemoryManager::addPage(MemoryManager *this,uint param_1)
{
long lVar1;
void *__s;
void *pvVar2;
uint uVar3;
ulong uVar4;
ulong uVar5;
uVar5 = (ulong)(param_1 >> 0x16);
uVar3 = param_1 >> 0xc & 0x3ff;
__s = *(void **)(this + uVar5 * 8);
... | |
21,047 | compute_value_size | bluesky950520[P]quickjs/quickjs.c | static void compute_value_size(JSValue val, JSMemoryUsage_helper *hp)
{
switch(JS_VALUE_GET_TAG(val)) {
case JS_TAG_STRING:
compute_jsstring_size(JS_VALUE_GET_STRING(val), hp);
break;
case JS_TAG_BIG_INT:
/* should track JSBigInt usage */
break;
}
} | O0 | c | compute_value_size:
subq $0x28, %rsp
movq %rdi, 0x18(%rsp)
movq %rsi, 0x20(%rsp)
movq %rdx, 0x10(%rsp)
movl 0x20(%rsp), %eax
movl %eax, 0xc(%rsp)
subl $-0x9, %eax
je 0x3239e
jmp 0x32382
movl 0xc(%rsp), %eax
subl $-0x7, %eax
jne 0x323a0
jmp 0x3238d
movq 0x18(%rsp), %rdi
movq 0x10(%rsp), %rsi
callq 0x32580
jmp 0x323a0
jm... | compute_value_size:
sub rsp, 28h
mov [rsp+28h+var_10], rdi
mov [rsp+28h+var_8], rsi
mov [rsp+28h+var_18], rdx
mov eax, dword ptr [rsp+28h+var_8]
mov [rsp+28h+var_1C], eax
sub eax, 0FFFFFFF7h
jz short loc_3239E
jmp short $+2
loc_32382:
mov eax, [rsp+28h+var_1C]
sub eax, 0FFFF... | long long compute_value_size(long long a1, int a2, long long a3)
{
long long result; // rax
result = (unsigned int)(a2 + 9);
if ( a2 != -9 )
{
result = (unsigned int)(a2 + 7);
if ( a2 == -7 )
return compute_jsstring_size(a1, a3);
}
return result;
}
| compute_value_size:
SUB RSP,0x28
MOV qword ptr [RSP + 0x18],RDI
MOV qword ptr [RSP + 0x20],RSI
MOV qword ptr [RSP + 0x10],RDX
MOV EAX,dword ptr [RSP + 0x20]
MOV dword ptr [RSP + 0xc],EAX
SUB EAX,-0x9
JZ 0x0013239e
JMP 0x00132382
LAB_00132382:
MOV EAX,dword ptr [RSP + 0xc]
SUB EAX,-0x7
JNZ 0x001323a0
JMP 0x0013238d
LAB_... |
void compute_value_size(int8 param_1,int param_2,int8 param_3)
{
if ((param_2 != -9) && (param_2 == -7)) {
compute_jsstring_size(param_1,param_3);
}
return;
}
| |
21,048 | compute_value_size | bluesky950520[P]quickjs/quickjs.c | static void compute_value_size(JSValue val, JSMemoryUsage_helper *hp)
{
switch(JS_VALUE_GET_TAG(val)) {
case JS_TAG_STRING:
compute_jsstring_size(JS_VALUE_GET_STRING(val), hp);
break;
case JS_TAG_BIG_INT:
/* should track JSBigInt usage */
break;
}
} | O2 | c | compute_value_size:
cmpl $-0x7, %esi
jne 0x1f9ae
movq %rdx, %rsi
jmp 0x1f9af
retq
| compute_value_size:
cmp esi, 0FFFFFFF9h
jnz short locret_1F9AE
mov rsi, rdx
jmp short compute_jsstring_size
locret_1F9AE:
retn
| long long compute_value_size(long long a1, int a2, long long a3)
{
long long result; // rax
if ( a2 == -7 )
return compute_jsstring_size(a1, a3);
return result;
}
| compute_value_size:
CMP ESI,-0x7
JNZ 0x0011f9ae
MOV RSI,RDX
JMP 0x0011f9af
LAB_0011f9ae:
RET
|
void compute_value_size(int8 param_1,int param_2,int8 param_3)
{
if (param_2 == -7) {
compute_jsstring_size(param_1,param_3);
return;
}
return;
}
| |
21,049 | mysql_mbcharlen_utf8mb3 | eloqsql/libmariadb/libmariadb/ma_charset.c | static unsigned int mysql_mbcharlen_utf8mb3(unsigned int utf8)
{
if (utf8 < 0x80) {
return 1; /* single byte character */
}
if (utf8 < 0xC2) {
return 0; /* invalid multibyte header */
}
if (utf8 < 0xE0) {
return 2; /* double byte character */
}
if (utf8 < 0xF0) {
return 3; /* t... | O0 | c | mysql_mbcharlen_utf8mb3:
pushq %rbp
movq %rsp, %rbp
movl %edi, -0x8(%rbp)
cmpl $0x80, -0x8(%rbp)
jae 0x43469
movl $0x1, -0x4(%rbp)
jmp 0x434a6
cmpl $0xc2, -0x8(%rbp)
jae 0x4347b
movl $0x0, -0x4(%rbp)
jmp 0x434a6
cmpl $0xe0, -0x8(%rbp)
jae 0x4348d
movl $0x2, -0x4(%rbp)
jmp 0x434a6
cmpl $0xf0, -0x8(%rbp)
jae 0x4349f
movl... | mysql_mbcharlen_utf8mb3:
push rbp
mov rbp, rsp
mov [rbp+var_8], edi
cmp [rbp+var_8], 80h
jnb short loc_43469
mov [rbp+var_4], 1
jmp short loc_434A6
loc_43469:
cmp [rbp+var_8], 0C2h
jnb short loc_4347B
mov [rbp+var_4], 0
jmp short loc_434A6
loc_4347B:
cmp [rbp+var_8], 0E0h
... | long long mysql_mbcharlen_utf8mb3(unsigned int a1)
{
if ( a1 >= 0x80 )
{
if ( a1 >= 0xC2 )
{
if ( a1 >= 0xE0 )
{
if ( a1 >= 0xF0 )
return 0;
else
return 3;
}
else
{
return 2;
}
}
else
{
return 0;
}
}
e... | mysql_mbcharlen_utf8mb3:
PUSH RBP
MOV RBP,RSP
MOV dword ptr [RBP + -0x8],EDI
CMP dword ptr [RBP + -0x8],0x80
JNC 0x00143469
MOV dword ptr [RBP + -0x4],0x1
JMP 0x001434a6
LAB_00143469:
CMP dword ptr [RBP + -0x8],0xc2
JNC 0x0014347b
MOV dword ptr [RBP + -0x4],0x0
JMP 0x001434a6
LAB_0014347b:
CMP dword ptr [RBP + -0x8],0x... |
int4 mysql_mbcharlen_utf8mb3(uint param_1)
{
int4 local_c;
if (param_1 < 0x80) {
local_c = 1;
}
else if (param_1 < 0xc2) {
local_c = 0;
}
else if (param_1 < 0xe0) {
local_c = 2;
}
else if (param_1 < 0xf0) {
local_c = 3;
}
else {
local_c = 0;
}
return local_c;
}
| |
21,050 | mysql_cset_escape_slashes | eloqsql/libmariadb/libmariadb/ma_charset.c | size_t mysql_cset_escape_slashes(const MARIADB_CHARSET_INFO * cset, char *newstr,
const char * escapestr, size_t escapestr_len )
{
const char *newstr_s = newstr;
const char *newstr_e = newstr + 2 * escapestr_len;
const char *end = escapestr + escapestr_len;
my_bool escape_overflow = ... | O0 | c | mysql_cset_escape_slashes:
pushq %rbp
movq %rsp, %rbp
subq $0x50, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq %rcx, -0x28(%rbp)
movq -0x18(%rbp), %rax
movq %rax, -0x30(%rbp)
movq -0x18(%rbp), %rax
movq -0x28(%rbp), %rcx
shlq %rcx
addq %rcx, %rax
movq %rax, -0x38(%rbp)
movq -0x20(%rbp)... | mysql_cset_escape_slashes:
push rbp
mov rbp, rsp
sub rsp, 50h
mov [rbp+var_10], rdi
mov [rbp+var_18], rsi
mov [rbp+var_20], rdx
mov [rbp+var_28], rcx
mov rax, [rbp+var_18]
mov [rbp+var_30], rax
mov rax, [rbp+var_18]
mov rcx, [rbp+var_28]
shl rcx, 1
add rax, rcx
mov ... | long long mysql_cset_escape_slashes(long long a1, char *a2, char *a3, long long a4)
{
char *v5; // rax
char v6; // cl
char *v7; // rax
char *v8; // rax
char *v9; // rax
int v11; // [rsp+4h] [rbp-4Ch]
int v12; // [rsp+8h] [rbp-48h]
char v13; // [rsp+Eh] [rbp-42h]
char v14; // [rsp+Fh] [rbp-41h]
unsi... | mysql_cset_escape_slashes:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x50
MOV qword ptr [RBP + -0x10],RDI
MOV qword ptr [RBP + -0x18],RSI
MOV qword ptr [RBP + -0x20],RDX
MOV qword ptr [RBP + -0x28],RCX
MOV RAX,qword ptr [RBP + -0x18]
MOV qword ptr [RBP + -0x30],RAX
MOV RAX,qword ptr [RBP + -0x18]
MOV RCX,qword ptr [RBP + -0x28]
SHL... |
long mysql_cset_escape_slashes(long param_1,char *param_2,char *param_3,long param_4)
{
char cVar1;
bool bVar2;
uint uVar3;
char *pcVar4;
uint local_50;
char local_4a;
char *local_28;
char *local_20;
long local_10;
pcVar4 = param_2 + param_4 * 2;
bVar2 = false;
local_28 = param_3;
local_2... | |
21,051 | LefDefParser::lefiProp::setPropQString(char const*) | Efficient-TDP/thirdparty/Limbo/limbo/thirdparty/lefdef/5.8/lef/lef/lefiProp.cpp | void
lefiProp::setPropQString(const char *string)
{
int len;
dataType_ = 'Q';
if ((len = strlen(string) + 1) > stringLength_)
bumpSize(len);
strcpy(stringData_, CASE(string));
} | O3 | cpp | LefDefParser::lefiProp::setPropQString(char const*):
pushq %r15
pushq %r14
pushq %rbx
movq %rsi, %rbx
movq %rdi, %r14
movb $0x51, 0x17(%rdi)
movq %rsi, %rdi
callq 0x20d0
movq %rax, %r15
incl %r15d
cmpl 0x20(%r14), %r15d
jle 0x2d007
movq 0x18(%r14), %rdi
callq 0x26040
movslq %r15d, %rdi
callq 0x24985
movq %rax, 0x18(%r1... | _ZN12LefDefParser8lefiProp14setPropQStringEPKc:
push r15
push r14
push rbx
mov rbx, rsi
mov r14, rdi
mov byte ptr [rdi+17h], 51h ; 'Q'
mov rdi, rsi
call _strlen
mov r15, rax
inc r15d
cmp r15d, [r14+20h]
jle short loc_2D007
mov rdi, [r14+18h]; this
call _ZN12LefDefParse... | long long LefDefParser::lefiProp::setPropQString(LefDefParser::lefiProp *this, char *a2)
{
int v2; // r15d
_BYTE *v3; // rax
long long v4; // r14
LefDefParser *v5; // rax
*((_BYTE *)this + 23) = 81;
v2 = strlen(a2) + 1;
if ( v2 > *((_DWORD *)this + 8) )
{
LefDefParser::lefFree(*((LefDefParser **)t... | setPropQString:
PUSH R15
PUSH R14
PUSH RBX
MOV RBX,RSI
MOV R14,RDI
MOV byte ptr [RDI + 0x17],0x51
MOV RDI,RSI
CALL 0x001020d0
MOV R15,RAX
INC R15D
CMP R15D,dword ptr [R14 + 0x20]
JLE 0x0012d007
MOV RDI,qword ptr [R14 + 0x18]
CALL 0x00126040
MOVSXD RDI,R15D
CALL 0x00124985
MOV qword ptr [R14 + 0x18],RAX
MOV dword ptr [R... |
/* LefDefParser::lefiProp::setPropQString(char const*) */
void __thiscall LefDefParser::lefiProp::setPropQString(lefiProp *this,char *param_1)
{
size_t sVar1;
int1 *puVar2;
char *__src;
char *pcVar3;
int iVar4;
this[0x17] = (lefiProp)0x51;
pcVar3 = param_1;
sVar1 = strlen(param_1);
iVar4 = (int)... | |
21,052 | intx::result_with_carry<intx::uint<256u>> intx::subc<256u>(intx::uint<256u> const&, intx::uint<256u> const&, bool) | corpus-core[P]colibri-stateless/build_O0/_deps/intx-src/include/intx/intx.hpp | inline constexpr result_with_carry<uint<N>> subc(
const uint<N>& x, const uint<N>& y, bool carry = false) noexcept
{
uint<N> z;
bool k = carry;
for (size_t i = 0; i < uint<N>::num_words; ++i)
{
auto t = subc(x[i], y[i], k);
z[i] = t.value;
k = t.carry;
}
return {z, k}... | O0 | cpp | intx::result_with_carry<intx::uint<256u>> intx::subc<256u>(intx::uint<256u> const&, intx::uint<256u> const&, bool):
pushq %rbp
movq %rsp, %rbp
subq $0x80, %rsp
movq %rdi, -0x68(%rbp)
movb %cl, %al
movq %rdi, -0x60(%rbp)
movq %rsi, -0x8(%rbp)
movq %rdx, -0x10(%rbp)
andb $0x1, %al
movb %al, -0x11(%rbp)
leaq -0x38(%rbp), ... | _ZN4intx4subcILj256EEENS_17result_with_carryINS_4uintIXT_EEEEERKS3_S6_b:
push rbp
mov rbp, rsp
sub rsp, 80h
mov [rbp+var_68], rdi
mov al, cl
mov [rbp+var_60], rdi
mov [rbp+var_8], rsi
mov [rbp+var_10], rdx
and al, 1
mov [rbp+var_11], al
lea rdi, [rbp+var_38]
call _ZN4intx4u... | long long intx::subc<256u>(long long a1, long long a2, long long a3, char a4)
{
unsigned long long *v4; // rax
bool v5; // cl
char v6; // dl
long long result; // rax
intx *v8; // [rsp+8h] [rbp-78h]
long long v9; // [rsp+28h] [rbp-58h]
char v10; // [rsp+30h] [rbp-50h]
unsigned long long i; // [rsp+38h] ... | subc<256u>:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x80
MOV qword ptr [RBP + -0x68],RDI
MOV AL,CL
MOV qword ptr [RBP + -0x60],RDI
MOV qword ptr [RBP + -0x8],RSI
MOV qword ptr [RBP + -0x10],RDX
AND AL,0x1
MOV byte ptr [RBP + -0x11],AL
LEA RDI,[RBP + -0x38]
CALL 0x00161390
MOV AL,byte ptr [RBP + -0x11]
AND AL,0x1
MOV byte ptr [RBP... |
/* intx::result_with_carry<intx::uint<256u> > intx::subc<256u>(intx::uint<256u> const&,
intx::uint<256u> const&, bool) */
intx * __thiscall intx::subc<256u>(intx *this,uint *param_1,uint *param_2,bool param_3)
{
ulong uVar1;
byte bVar2;
ulong *puVar3;
int8 uVar4;
int8 *puVar5;
byte extraout_DL;
ulon... | |
21,053 | inline_mysql_cond_signal | eloqsql/include/mysql/psi/mysql_thread.h | static inline int inline_mysql_cond_signal(
mysql_cond_t *that)
{
int result;
#ifdef HAVE_PSI_COND_INTERFACE
if (psi_likely(that->m_psi != NULL))
PSI_COND_CALL(signal_cond)(that->m_psi);
#endif
result= pthread_cond_signal(&that->m_cond);
return result;
} | O0 | c | inline_mysql_cond_signal:
pushq %rbp
movq %rsp, %rbp
subq $0x10, %rsp
movq %rdi, -0x8(%rbp)
movq -0x8(%rbp), %rax
cmpq $0x0, 0x30(%rax)
setne %al
andb $0x1, %al
movzbl %al, %eax
cmpl $0x0, %eax
setne %al
andb $0x1, %al
movzbl %al, %eax
cltq
cmpq $0x0, %rax
je 0x81c2b
leaq 0x1b6761(%rip), %rax # 0x238378
movq (%rax),... | inline_mysql_cond_signal:
push rbp
mov rbp, rsp
sub rsp, 10h
mov [rbp+var_8], rdi
mov rax, [rbp+var_8]
cmp qword ptr [rax+30h], 0
setnz al
and al, 1
movzx eax, al
cmp eax, 0
setnz al
and al, 1
movzx eax, al
cdqe
cmp rax, 0
jz short loc_81C2B
lea rax, PSI_server
mo... | long long inline_mysql_cond_signal(long long a1)
{
if ( *(_QWORD *)(a1 + 48) )
(*((void ( **)(_QWORD))PSI_server + 46))(*(_QWORD *)(a1 + 48));
return (unsigned int)pthread_cond_signal(a1);
}
| inline_mysql_cond_signal:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x10
MOV qword ptr [RBP + -0x8],RDI
MOV RAX,qword ptr [RBP + -0x8]
CMP qword ptr [RAX + 0x30],0x0
SETNZ AL
AND AL,0x1
MOVZX EAX,AL
CMP EAX,0x0
SETNZ AL
AND AL,0x1
MOVZX EAX,AL
CDQE
CMP RAX,0x0
JZ 0x00181c2b
LEA RAX,[0x338378]
MOV RAX,qword ptr [RAX]
MOV RAX,qword p... |
int inline_mysql_cond_signal(pthread_cond_t *param_1)
{
int iVar1;
if (param_1[1].__align != 0) {
(**(code **)(PSI_server + 0x170))(param_1[1].__align);
}
iVar1 = pthread_cond_signal(param_1);
return iVar1;
}
| |
21,054 | bf_const_log2_internal | bluesky950520[P]quickjs/libbf.c | static void bf_const_log2_internal(bf_t *T, limb_t prec)
{
limb_t w, N;
bf_t P_s, *P = &P_s;
bf_t Q_s, *Q = &Q_s;
w = prec + 15;
N = w / 3 + 1;
bf_init(T->ctx, P);
bf_init(T->ctx, Q);
bf_const_log2_rec(T, P, Q, 0, N, FALSE);
bf_div(T, T, Q, prec, BF_RNDN);
bf_delete(P);
bf_d... | O0 | c | bf_const_log2_internal:
subq $0x88, %rsp
movq %rdi, 0x80(%rsp)
movq %rsi, 0x78(%rsp)
leaq 0x40(%rsp), %rax
movq %rax, 0x38(%rsp)
leaq 0x10(%rsp), %rax
movq %rax, 0x8(%rsp)
movq 0x78(%rsp), %rax
addq $0xf, %rax
movq %rax, 0x70(%rsp)
movq 0x70(%rsp), %rax
movl $0x3, %ecx
xorl %edx, %edx
divq %rcx
addq $0x1, %rax
movq %ra... | bf_const_log2_internal:
sub rsp, 88h
mov [rsp+88h+var_8], rdi
mov [rsp+88h+var_10], rsi
lea rax, [rsp+88h+var_48]
mov [rsp+88h+var_50], rax
lea rax, [rsp+88h+var_78]
mov [rsp+88h+var_80], rax
mov rax, [rsp+88h+var_10]
add rax, 0Fh
mov [rsp+88h+var_18], rax
mov rax, [rsp+88h+v... | long long bf_const_log2_internal(long long *a1, long long a2)
{
long long *v2; // rsi
long long v3; // rdx
long long v4; // rcx
long long v5; // r8
long long v6; // r9
long long v7; // rdx
long long v8; // rcx
long long v9; // r8
long long v10; // r9
long long v12[5]; // [rsp+10h] [rbp-78h] BYREF
... | bf_const_log2_internal:
SUB RSP,0x88
MOV qword ptr [RSP + 0x80],RDI
MOV qword ptr [RSP + 0x78],RSI
LEA RAX,[RSP + 0x40]
MOV qword ptr [RSP + 0x38],RAX
LEA RAX,[RSP + 0x10]
MOV qword ptr [RSP + 0x8],RAX
MOV RAX,qword ptr [RSP + 0x78]
ADD RAX,0xf
MOV qword ptr [RSP + 0x70],RAX
MOV RAX,qword ptr [RSP + 0x70]
MOV ECX,0x3
X... |
void bf_const_log2_internal(int8 *param_1,long param_2)
{
int1 local_78 [40];
int1 *local_50;
int1 local_48 [40];
long local_20;
ulong local_18;
long local_10;
int8 *local_8;
local_50 = local_48;
local_18 = param_2 + 0xf;
local_20 = local_18 / 3 + 1;
local_10 = param_2;
local_8 = param_1;
... | |
21,055 | bf_const_log2_internal | bluesky950520[P]quickjs/libbf.c | static void bf_const_log2_internal(bf_t *T, limb_t prec)
{
limb_t w, N;
bf_t P_s, *P = &P_s;
bf_t Q_s, *Q = &Q_s;
w = prec + 15;
N = w / 3 + 1;
bf_init(T->ctx, P);
bf_init(T->ctx, Q);
bf_const_log2_rec(T, P, Q, 0, N, FALSE);
bf_div(T, T, Q, prec, BF_RNDN);
bf_delete(P);
bf_d... | O2 | c | bf_const_log2_internal:
pushq %r15
pushq %r14
pushq %r12
pushq %rbx
subq $0x58, %rsp
movq %rsi, %rbx
movq %rdi, %r14
leaq 0xf(%rsi), %rax
pushq $0x3
popq %rcx
xorl %edx, %edx
divq %rcx
movq (%rdi), %rcx
leaq 0x30(%rsp), %r15
movq %rcx, (%r15)
andl $0x0, 0x8(%r15)
leaq 0x1(%rax), %r8
movabsq $-0x8000000000000000, %rax #... | bf_const_log2_internal:
push r15
push r14
push r12
push rbx
sub rsp, 58h
mov rbx, rsi
mov r14, rdi
lea rax, [rsi+0Fh]
push 3
pop rcx
xor edx, edx
div rcx
mov rcx, [rdi]
lea r15, [rsp+78h+var_48]
mov [r15], rcx
and dword ptr [r15+8], 0
lea r8, [rax+1]
mov ... | long long bf_const_log2_internal(__int128 *a1, long long a2)
{
__int128 v3; // [rsp+8h] [rbp-70h] BYREF
unsigned long long v4; // [rsp+18h] [rbp-60h]
__int128 v5; // [rsp+20h] [rbp-58h]
long long v6; // [rsp+30h] [rbp-48h] BYREF
int v7; // [rsp+38h] [rbp-40h]
unsigned long long v8; // [rsp+40h] [rbp-38h]
... | bf_const_log2_internal:
PUSH R15
PUSH R14
PUSH R12
PUSH RBX
SUB RSP,0x58
MOV RBX,RSI
MOV R14,RDI
LEA RAX,[RSI + 0xf]
PUSH 0x3
POP RCX
XOR EDX,EDX
DIV RCX
MOV RCX,qword ptr [RDI]
LEA R15,[RSP + 0x30]
MOV qword ptr [R15],RCX
AND dword ptr [R15 + 0x8],0x0
LEA R8,[RAX + 0x1]
MOV RAX,-0x8000000000000000
MOV qword ptr [R15 +... |
void bf_const_log2_internal(int8 *param_1,long param_2)
{
int8 local_70;
int4 local_68;
int8 local_60;
int8 local_58;
int8 uStack_50;
int8 local_48;
int4 local_40;
int8 local_38;
int8 local_30;
int8 uStack_28;
local_70 = *param_1;
local_40 = 0;
local_38 = 0x8000000000000000;
local_68 = ... | |
21,056 | test_pool2d::build_graph(ggml_context*) | monkey531[P]llama/tests/test-backend-ops.cpp | ggml_tensor * build_graph(ggml_context * ctx) override {
ggml_tensor * input = ggml_new_tensor(ctx, type_input, 4, ne_input.data());
ggml_set_param(ctx, input);
ggml_set_name(input, "input");
ggml_tensor * out = ggml_pool_2d(ctx, input, pool_type, k0, k1, s0, s1, p0, p1);
ggml_s... | O3 | cpp | test_pool2d::build_graph(ggml_context*):
pushq %r15
pushq %r14
pushq %rbx
subq $0x10, %rsp
movq %rsi, %rbx
movq %rdi, %r14
movl 0x3c(%rdi), %esi
leaq 0x40(%rdi), %rcx
movq %rbx, %rdi
movl $0x4, %edx
callq 0xd080
movq %rax, %r15
movq %r14, %rdi
movq %rbx, %rsi
callq 0x1b8ae
movq %rbx, %rdi
movq %r15, %rsi
callq 0xda90
l... | _ZN11test_pool2d11build_graphEP12ggml_context:
push r15
push r14
push rbx
sub rsp, 10h
mov rbx, rsi
mov r14, rdi
mov esi, [rdi+3Ch]
lea rcx, [rdi+40h]
mov rdi, rbx
mov edx, 4
call _ggml_new_tensor
mov r15, rax
mov rdi, r14
mov rsi, rbx
call _ZN9test_case12add_senti... | long long test_pool2d::build_graph(_DWORD *a1, long long a2)
{
long long v2; // r15
long long v3; // rbx
v2 = ggml_new_tensor(a2, (unsigned int)a1[15], 4LL);
test_case::add_sentinel((long long)a1, a2);
ggml_set_param(a2, v2);
ggml_set_name(v2, "input");
v3 = ggml_pool_2d(
a2,
v2,
... | build_graph:
PUSH R15
PUSH R14
PUSH RBX
SUB RSP,0x10
MOV RBX,RSI
MOV R14,RDI
MOV ESI,dword ptr [RDI + 0x3c]
LEA RCX,[RDI + 0x40]
MOV RDI,RBX
MOV EDX,0x4
CALL 0x0010d080
MOV R15,RAX
MOV RDI,R14
MOV RSI,RBX
CALL 0x0011b8ae
MOV RDI,RBX
MOV RSI,R15
CALL 0x0010da90
LEA RSI,[0x144bea]
MOV RDI,R15
CALL 0x0010db10
MOV EDX,dwor... |
/* test_pool2d::build_graph(ggml_context*) */
int8 __thiscall test_pool2d::build_graph(test_pool2d *this,ggml_context *param_1)
{
int8 uVar1;
uVar1 = ggml_new_tensor(param_1,*(int4 *)(this + 0x3c),4,this + 0x40);
test_case::add_sentinel((test_case *)this,param_1);
ggml_set_param(param_1,uVar1);
ggml_set... | |
21,057 | test_unary::build_graph(ggml_context*) | llama.cpp/tests/test-backend-ops.cpp | ggml_tensor * build_graph(ggml_context * ctx) override {
const bool grad_supported = op == GGML_UNARY_OP_ABS || op == GGML_UNARY_OP_SGN || op == GGML_UNARY_OP_NEG ||
op == GGML_UNARY_OP_STEP || op == GGML_UNARY_OP_RELU || op == GGML_UNARY_OP_SILU;
ggml_tensor * a;
if (v & 1) {
... | O3 | cpp | test_unary::build_graph(ggml_context*):
pushq %rbp
pushq %r15
pushq %r14
pushq %rbx
subq $0x48, %rsp
movq %rdi, %rbx
movl 0x38(%rdi), %ecx
cmpl $0xb, %ecx
setb %al
movl $0x44f, %ebp # imm = 0x44F
shrl %cl, %ebp
movq %rsi, %r14
andb %al, %bpl
testb $0x1, 0x60(%rdi)
jne 0x2b5f8
movl 0x3c(%rbx), %esi
leaq 0x40(... | _ZN10test_unary11build_graphEP12ggml_context:
push rbp
push r15
push r14
push rbx
sub rsp, 48h
mov rbx, rdi
mov ecx, [rdi+38h]
cmp ecx, 0Bh
setb al
mov ebp, 44Fh
shr ebp, cl
mov r14, rsi
and bpl, al
test byte ptr [rdi+60h], 1
jnz short loc_2B5F8
mov esi, [rbx+3C... | long long test_unary::build_graph(long long a1, long long a2)
{
char v4; // bp
long long v5; // r15
char *v6; // rsi
long long v7; // rdi
_QWORD *v8; // r15
long long v9; // rbx
v4 = (*(_DWORD *)(a1 + 56) < 0xBu) & (0x44Fu >> *(_DWORD *)(a1 + 56));
if ( (*(_BYTE *)(a1 + 96) & 1) != 0 )
{
v8 = (_... | build_graph:
PUSH RBP
PUSH R15
PUSH R14
PUSH RBX
SUB RSP,0x48
MOV RBX,RDI
MOV ECX,dword ptr [RDI + 0x38]
CMP ECX,0xb
SETC AL
MOV EBP,0x44f
SHR EBP,CL
MOV R14,RSI
AND BPL,AL
TEST byte ptr [RDI + 0x60],0x1
JNZ 0x0012b5f8
MOV ESI,dword ptr [RBX + 0x3c]
LEA RCX,[RBX + 0x40]
MOV RDI,R14
MOV EDX,0x4
CALL 0x0011cbe0
MOV R15,R... |
/* test_unary::build_graph(ggml_context*) */
int8 __thiscall test_unary::build_graph(test_unary *this,ggml_context *param_1)
{
int8 uVar1;
long lVar2;
byte bVar3;
char *pcVar4;
bVar3 = (byte)(0x44f >> ((byte)*(uint *)(this + 0x38) & 0x1f)) & *(uint *)(this + 0x38) < 0xb;
if (((byte)this[0x60] & 1) == ... | |
21,058 | ggml_cpu_extra_work_size | Yangxiaoz[P]GGML-Tutorial/ggml/src/ggml-cpu/ggml-cpu-traits.cpp | bool ggml_cpu_extra_work_size(int n_threads, const struct ggml_tensor * op, size_t * size) {
for (auto extra : ggml_backend_cpu_get_extra_buffers_type()) {
if (extra && extra->context) {
auto buf_extra = (ggml::cpu::extra_buffer_type *) extra->context;
auto tensor_traits = buf_ex... | O3 | cpp | ggml_cpu_extra_work_size:
pushq %rbp
pushq %r15
pushq %r14
pushq %r12
pushq %rbx
movq %rdx, %rbx
movq %rsi, %r14
movl %edi, %ebp
callq 0x8140
movq (%rax), %r15
movq 0x8(%rax), %r12
cmpq %r12, %r15
je 0x35c4d
movq (%r15), %rax
testq %rax, %rax
je 0x35c47
movq 0x38(%rax), %rdi
testq %rdi, %rdi
je 0x35c47
movq (%rdi), %ra... | ggml_cpu_extra_work_size:
push rbp
push r15
push r14
push r12
push rbx
mov rbx, rdx
mov r14, rsi
mov ebp, edi
call __Z39ggml_backend_cpu_get_extra_buffers_typev; ggml_backend_cpu_get_extra_buffers_type(void)
mov r15, [rax]
mov r12, [rax+8]
loc_35C0D:
cmp r15, r12
jz short ... | char ggml_cpu_extra_work_size(unsigned int a1, long long a2, long long a3)
{
long long *extra_buffers_type; // rax
long long v6; // r15
long long v7; // r12
long long v8; // rdi
long long v9; // rax
extra_buffers_type = (long long *)ggml_backend_cpu_get_extra_buffers_type();
v6 = *extra_buffers_type;
... | ggml_cpu_extra_work_size:
PUSH RBP
PUSH R15
PUSH R14
PUSH R12
PUSH RBX
MOV RBX,RDX
MOV R14,RSI
MOV EBP,EDI
CALL 0x00108140
MOV R15,qword ptr [RAX]
MOV R12,qword ptr [RAX + 0x8]
LAB_00135c0d:
CMP R15,R12
JZ 0x00135c4d
MOV RAX,qword ptr [R15]
TEST RAX,RAX
JZ 0x00135c47
MOV RDI,qword ptr [RAX + 0x38]
TEST RDI,RDI
JZ 0x001... |
int8 ggml_cpu_extra_work_size(int4 param_1,int8 param_2,int8 param_3)
{
long *plVar1;
char cVar2;
int8 *puVar3;
long *plVar4;
long *plVar5;
puVar3 = (int8 *)ggml_backend_cpu_get_extra_buffers_type();
plVar5 = (long *)*puVar3;
plVar1 = (long *)puVar3[1];
while( true ) {
if (plVar5 == plVar1) {... | |
21,059 | nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator... | 7CodeWizard[P]stablediffusion/thirdparty/json.hpp | bool skip_bom()
{
if (get() == 0xEF)
{
// check if we completely parse the BOM
return get() == 0xBB && get() == 0xBF;
}
// the first character is not the beginning of the BOM; unget it to
// process is later
unget();
return true;
} | O0 | cpp | nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator... | _ZN8nlohmann16json_abi_v3_11_26detail5lexerINS0_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEEENS1_22iterator_input_adapterIPKcEEE8skip_bomEv:
sub rsp, 28h
mov [rsp+28h+var_10], rdi
mov rdi, [rsp+28h+var_10]
mov [rsp+28h+var_18], r... | char nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map,std::vector,std::string,bool,long,unsigned long,double,std::allocator,nlohmann::json_abi_v3_11_2::adl_serializer,std::vector<unsigned char>>,nlohmann::json_abi_v3_11_2::detail::iterator_input_adapter<char const*>>::skip_bom(... | skip_bom:
SUB RSP,0x28
MOV qword ptr [RSP + 0x18],RDI
MOV RDI,qword ptr [RSP + 0x18]
MOV qword ptr [RSP + 0x10],RDI
CALL 0x001d4930
CMP EAX,0xef
JNZ 0x001d363b
MOV RDI,qword ptr [RSP + 0x10]
CALL 0x001d4930
MOV ECX,EAX
XOR EAX,EAX
CMP ECX,0xbb
MOV byte ptr [RSP + 0xf],AL
JNZ 0x001d362f
MOV RDI,qword ptr [RSP + 0x10]
CA... |
/* nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map,
std::vector, std::__cxx11::string, bool, long, unsigned long, double, std::allocator,
nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator<unsigned
char> > >, nlohmann::json_abi_v3_11... | |
21,060 | nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator... | 7CodeWizard[P]stablediffusion/thirdparty/json.hpp | bool skip_bom()
{
if (get() == 0xEF)
{
// check if we completely parse the BOM
return get() == 0xBB && get() == 0xBF;
}
// the first character is not the beginning of the BOM; unget it to
// process is later
unget();
return true;
} | O1 | cpp | nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator... | _ZN8nlohmann16json_abi_v3_11_26detail5lexerINS0_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEEENS1_22iterator_input_adapterIPKcEEE8skip_bomEv:
push rbx
mov rbx, rdi
call _ZN8nlohmann16json_abi_v3_11_26detail5lexerINS0_10basic_jsonISt3map... | bool nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map,std::vector,std::string,bool,long,unsigned long,double,std::allocator,nlohmann::json_abi_v3_11_2::adl_serializer,std::vector<unsigned char>>,nlohmann::json_abi_v3_11_2::detail::iterator_input_adapter<char const*>>::skip_bom(... | |||
21,061 | nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator... | 7CodeWizard[P]stablediffusion/thirdparty/json.hpp | bool skip_bom()
{
if (get() == 0xEF)
{
// check if we completely parse the BOM
return get() == 0xBB && get() == 0xBF;
}
// the first character is not the beginning of the BOM; unget it to
// process is later
unget();
return true;
} | O2 | cpp | nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator... | _ZN8nlohmann16json_abi_v3_11_26detail5lexerINS0_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEEENS1_22iterator_input_adapterIPKcEEE8skip_bomEv:
push rbx
mov rbx, rdi
call _ZN8nlohmann16json_abi_v3_11_26detail5lexerINS0_10basic_jsonISt3map... | bool nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map,std::vector,std::string,bool,long,unsigned long,double,std::allocator,nlohmann::json_abi_v3_11_2::adl_serializer,std::vector<unsigned char>>,nlohmann::json_abi_v3_11_2::detail::iterator_input_adapter<char const*>>::skip_bom(... | skip_bom:
PUSH RBX
MOV RBX,RDI
CALL 0x0014ec58
CMP EAX,0xef
JNZ 0x0014e4c7
MOV RDI,RBX
CALL 0x0014ec58
CMP EAX,0xbb
JNZ 0x0014e4d3
MOV RDI,RBX
CALL 0x0014ec58
CMP EAX,0xbf
SETZ AL
JMP 0x0014e4d5
LAB_0014e4c7:
MOV RDI,RBX
CALL 0x0014ecce
MOV AL,0x1
JMP 0x0014e4d5
LAB_0014e4d3:
XOR EAX,EAX
LAB_0014e4d5:
POP RBX
RET
|
/* nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map,
std::vector, std::__cxx11::string, bool, long, unsigned long, double, std::allocator,
nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator<unsigned
char> > >, nlohmann::json_abi_v3_11... | |
21,062 | nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator... | 7CodeWizard[P]stablediffusion/thirdparty/json.hpp | bool skip_bom()
{
if (get() == 0xEF)
{
// check if we completely parse the BOM
return get() == 0xBB && get() == 0xBF;
}
// the first character is not the beginning of the BOM; unget it to
// process is later
unget();
return true;
} | O3 | cpp | nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_2::adl_serializer, std::vector<unsigned char, std::allocator... | _ZN8nlohmann16json_abi_v3_11_26detail5lexerINS0_10basic_jsonISt3mapSt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES5_IhSaIhEEEENS1_22iterator_input_adapterIPKcEEE8skip_bomEv:
push rbx
mov rbx, rdi
call _ZN8nlohmann16json_abi_v3_11_26detail5lexerINS0_10basic_jsonISt3map... | bool nlohmann::json_abi_v3_11_2::detail::lexer<nlohmann::json_abi_v3_11_2::basic_json<std::map,std::vector,std::string,bool,long,unsigned long,double,std::allocator,nlohmann::json_abi_v3_11_2::adl_serializer,std::vector<unsigned char>>,nlohmann::json_abi_v3_11_2::detail::iterator_input_adapter<char const*>>::skip_bom(... | |||
21,063 | mysql_data_seek@libmariadbclient_18 | eloqsql/libmariadb/libmariadb/mariadb_lib.c | void STDCALL
mysql_data_seek(MYSQL_RES *result, unsigned long long row)
{
MYSQL_ROWS *tmp=0;
if (result->data)
for (tmp=result->data->data; row-- && tmp ; tmp = tmp->next) ;
result->current_row=0;
result->data_cursor = tmp;
} | O0 | c | mysql_data_seek@libmariadbclient_18:
pushq %rbp
movq %rsp, %rbp
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq $0x0, -0x18(%rbp)
movq -0x8(%rbp), %rax
cmpq $0x0, 0x18(%rax)
je 0x2aa7d
movq -0x8(%rbp), %rax
movq 0x18(%rax), %rax
movq (%rax), %rax
movq %rax, -0x18(%rbp)
movq -0x10(%rbp), %rcx
movq %rcx, %rax
addq $-0x... | mysql_data_seek@libmariadbclient_18:
push rbp; Alternative name is 'mysql_data_seek'
mov rbp, rsp
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov [rbp+var_18], 0
mov rax, [rbp+var_8]
cmp qword ptr [rax+18h], 0
jz short loc_2AA7D
mov rax, [rbp+var_8]
mov rax, [rax+18h]
mov rax,... | long long mysql_data_seek_libmariadbclient_18(long long a1, long long a2)
{
long long v2; // rcx
long long result; // rax
bool v4; // [rsp+1h] [rbp-19h]
_QWORD *i; // [rsp+2h] [rbp-18h]
i = 0LL;
if ( *(_QWORD *)(a1 + 24) )
{
for ( i = **(_QWORD ***)(a1 + 24); ; i = (_QWORD *)*i )
{
v2 = a2... | mysql_data_seek:
PUSH RBP
MOV RBP,RSP
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV qword ptr [RBP + -0x18],0x0
MOV RAX,qword ptr [RBP + -0x8]
CMP qword ptr [RAX + 0x18],0x0
JZ 0x0012aa7d
MOV RAX,qword ptr [RBP + -0x8]
MOV RAX,qword ptr [RAX + 0x18]
MOV RAX,qword ptr [RAX]
MOV qword ptr [RBP + -0x1... |
void mysql_data_seek(long param_1,long param_2)
{
int8 *local_20;
long local_18;
local_20 = (int8 *)0x0;
if (*(long *)(param_1 + 0x18) != 0) {
local_18 = param_2;
for (local_20 = (int8 *)**(int8 **)(param_1 + 0x18);
local_18 != 0 && local_20 != (int8 *)0x0; local_20 = (int8 *)*local_20) {
... | |
21,064 | getopt_double | eloqsql/mysys/my_getopt.c | static double getopt_double(char *arg, const struct my_option *optp, int *err)
{
double num;
int error;
char *end= arg + 1000; /* Big enough as *arg is \0 terminated */
num= my_strtod(arg, &end, &error);
if (end[0] != 0 || error)
{
my_getopt_error_reporter(ERROR_LEVEL,
"I... | O0 | c | getopt_double:
pushq %rbp
movq %rsp, %rbp
subq $0x40, %rsp
movq %rdi, -0x10(%rbp)
movq %rsi, -0x18(%rbp)
movq %rdx, -0x20(%rbp)
movq -0x10(%rbp), %rax
addq $0x3e8, %rax # imm = 0x3E8
movq %rax, -0x38(%rbp)
movq -0x10(%rbp), %rdi
leaq -0x38(%rbp), %rsi
leaq -0x2c(%rbp), %rdx
callq 0x80f70
movsd %xmm0, -0x28(%... | getopt_double:
push rbp
mov rbp, rsp
sub rsp, 40h
mov [rbp+var_10], rdi
mov [rbp+var_18], rsi
mov [rbp+var_20], rdx
mov rax, [rbp+var_10]
add rax, 3E8h
mov [rbp+var_38], rax
mov rdi, [rbp+var_10]
lea rsi, [rbp+var_38]
lea rdx, [rbp+var_2C]
call my_strtod
movsd [rbp+va... | double getopt_double(long long a1, const char **a2, _DWORD *a3)
{
_BYTE *v4; // [rsp+8h] [rbp-38h] BYREF
int v5; // [rsp+14h] [rbp-2Ch] BYREF
double v6; // [rsp+18h] [rbp-28h]
_DWORD *v7; // [rsp+20h] [rbp-20h]
const char **v8; // [rsp+28h] [rbp-18h]
long long v9; // [rsp+30h] [rbp-10h]
v9 = a1;
v8 = ... | getopt_double:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x40
MOV qword ptr [RBP + -0x10],RDI
MOV qword ptr [RBP + -0x18],RSI
MOV qword ptr [RBP + -0x20],RDX
MOV RAX,qword ptr [RBP + -0x10]
ADD RAX,0x3e8
MOV qword ptr [RBP + -0x38],RAX
MOV RDI,qword ptr [RBP + -0x10]
LEA RSI,[RBP + -0x38]
LEA RDX,[RBP + -0x2c]
CALL 0x00180f70
MOVSD... |
int8 getopt_double(long param_1,int8 *param_2,int4 *param_3)
{
char *local_40;
int local_34;
int8 local_30;
int4 *local_28;
int8 *local_20;
long local_18;
int8 local_10;
local_40 = (char *)(param_1 + 1000);
local_28 = param_3;
local_20 = param_2;
local_18 = param_1;
local_30 = my_strtod(par... | |
21,065 | my_mb_wc_big5 | eloqsql/strings/ctype-big5.c | static int
my_mb_wc_big5(CHARSET_INFO *cs __attribute__((unused)),
my_wc_t *pwc,const uchar *s,const uchar *e)
{
int hi;
if (s >= e)
return MY_CS_TOOSMALL;
if ((hi= s[0]) < 0x80)
{
pwc[0]=hi;
return 1;
}
if (s+2>e)
return MY_CS_TOOSMALL2;
if (!IS_MB2_CHAR(hi, s[1]))
... | O3 | c | my_mb_wc_big5:
movl $0xffffff9b, %eax # imm = 0xFFFFFF9B
cmpq %rcx, %rdx
jae 0x52cfa
movsbq (%rdx), %rdi
testq %rdi, %rdi
js 0x52cc4
movq %rdi, (%rsi)
movl $0x1, %eax
retq
leaq 0x2(%rdx), %r8
movl $0xffffff9a, %eax # imm = 0xFFFFFF9A
cmpq %rcx, %r8
ja 0x52cfa
leal 0x5f(%rdi), %ecx
xorl %eax, %eax
cmpb $0x58... | my_mb_wc_big5:
mov eax, 0FFFFFF9Bh
cmp rdx, rcx
jnb short locret_52CFA
movsx rdi, byte ptr [rdx]
test rdi, rdi
js short loc_52CC4
mov [rsi], rdi
mov eax, 1
retn
loc_52CC4:
lea r8, [rdx+2]
mov eax, 0FFFFFF9Ah
cmp r8, rcx
ja short locret_52CFA
lea ecx, [rdi+5Fh]
xor ... | long long my_mb_wc_big5(long long a1, long long *a2, char *a3, unsigned long long a4)
{
long long result; // rax
long long v5; // rdi
int v6; // ecx
int v7; // eax
unsigned int v8; // edx
long long v9; // rax
unsigned __int16 *v10; // rcx
long long v11; // rcx
result = 4294967195LL;
if ( (unsigned... | my_mb_wc_big5:
MOV EAX,0xffffff9b
CMP RDX,RCX
JNC 0x00152cfa
MOVSX RDI,byte ptr [RDX]
TEST RDI,RDI
JS 0x00152cc4
MOV qword ptr [RSI],RDI
MOV EAX,0x1
RET
LAB_00152cc4:
LEA R8,[RDX + 0x2]
MOV EAX,0xffffff9a
CMP R8,RCX
JA 0x00152cfa
LEA ECX,[RDI + 0x5f]
XOR EAX,EAX
CMP CL,0x58
JA 0x00152cfa
MOVZX ECX,byte ptr [RDX + 0x1]
... |
int8 my_mb_wc_big5(int8 param_1,ulong *param_2,byte *param_3,byte *param_4)
{
byte bVar1;
byte bVar2;
ushort uVar3;
int *puVar4;
uint uVar5;
if (param_4 <= param_3) {
return 0xffffff9b;
}
bVar1 = *param_3;
if (-1 < (long)(char)bVar1) {
*param_2 = (long)(char)bVar1;
return 1;
}
if ... | |
21,066 | ftxui::(anonymous namespace)::InputBase::HandleRightCtrl() | Andrewchistyakov[P]flashcards_lyc/build_O3/_deps/ftxui-src/src/ftxui/component/input.cpp | bool HandleRightCtrl() {
if (cursor_position() == (int)content().size()) {
return false;
}
// Move right, until entering a word.
while (cursor_position() < (int)content().size()) {
cursor_position() = GlyphNext(content(), cursor_position());
if (IsWordCharacter(content(), cursor_posit... | O3 | cpp | ftxui::(anonymous namespace)::InputBase::HandleRightCtrl():
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movq %rdi, %rbx
leaq 0x28(%rdi), %r14
addq $0xf8, %rbx
movq %rbx, %rdi
callq 0x2c5ba
movl (%rax), %ebp
movq %r14, %rdi
callq 0x2c188
movl 0x8(%rax), %r13d
cmpl %r13d, %ebp
je 0x2bcba
... | _ZN5ftxui12_GLOBAL__N_19InputBase15HandleRightCtrlEv:
push rbp
push r15
push r14
push r13
push r12
push rbx
push rax
mov rbx, rdi
lea r14, [rdi+28h]
add rbx, 0F8h
mov rdi, rbx
call _ZN5ftxui3RefIiE7AddressEv; ftxui::Ref<int>::Address(void)
mov ebp, [rax]
mov rdi, r14
call... | bool ftxui::`anonymous namespace'::InputBase::HandleRightCtrl(ftxui::_anonymous_namespace_::InputBase *this)
{
char *v1; // r14
char *v2; // rbx
int v3; // ebp
int v4; // r13d
int v5; // r15d
long long v6; // r15
int *v7; // rax
long long v8; // r15
int *v9; // rax
long long v10; // r15
int *v11;... | HandleRightCtrl:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV RBX,RDI
LEA R14,[RDI + 0x28]
ADD RBX,0xf8
MOV RDI,RBX
CALL 0x0012c5ba
MOV EBP,dword ptr [RAX]
MOV RDI,R14
CALL 0x0012c188
MOV R13D,dword ptr [RAX + 0x8]
CMP EBP,R13D
JZ 0x0012bcba
LAB_0012bbe6:
MOV RDI,RBX
CALL 0x0012c5ba
MOV R15D,dword... |
/* ftxui::(anonymous namespace)::InputBase::HandleRightCtrl() */
bool __thiscall ftxui::(anonymous_namespace)::InputBase::HandleRightCtrl(InputBase *this)
{
Ref<std::__cxx11::string> *this_00;
int iVar1;
int iVar2;
int iVar3;
int *piVar4;
long lVar5;
string *psVar6;
int4 uVar7;
int4 *puVar8;
char... | |
21,067 | my_filename | eloqsql/mysys/my_div.c | char * my_filename(File fd)
{
DBUG_ENTER("my_filename");
if ((uint) fd >= (uint) my_file_limit || !my_file_info[fd].name)
DBUG_RETURN((char*) "UNKNOWN");
if (fd >= 0 && my_file_info[fd].type != UNOPEN)
{
DBUG_RETURN(my_file_info[fd].name);
}
else
DBUG_RETURN((char*) "UNOPENED"); /* Debug message... | O0 | c | my_filename:
pushq %rbp
movq %rsp, %rbp
movl %edi, -0xc(%rbp)
movl -0xc(%rbp), %eax
leaq 0x1bc30f(%rip), %rcx # 0x2c0c50
cmpl (%rcx), %eax
jae 0x104960
leaq 0x1bc30c(%rip), %rax # 0x2c0c58
movq (%rax), %rax
movslq -0xc(%rbp), %rcx
shlq $0x4, %rcx
addq %rcx, %rax
cmpq $0x0, (%rax)
jne 0x10496f
jmp 0x104962
leaq 0x... | my_filename:
push rbp
mov rbp, rsp
mov [rbp+var_C], edi
mov eax, [rbp+var_C]
lea rcx, my_file_limit
cmp eax, [rcx]
jnb short loc_104960
lea rax, my_file_info
mov rax, [rax]
movsxd rcx, [rbp+var_C]
shl rcx, 4
add rax, rcx
cmp qword ptr [rax], 0
jnz short loc_10496F
loc... | const char * my_filename(int a1)
{
if ( (unsigned int)a1 >= my_file_limit || !*((_QWORD *)my_file_info + 2 * a1) )
return "UNKNOWN";
if ( a1 >= 0 && *((_DWORD *)my_file_info + 4 * a1 + 2) )
return (const char *)*((_QWORD *)my_file_info + 2 * a1);
return "UNOPENED";
}
| |||
21,068 | my_filename | eloqsql/mysys/my_div.c | char * my_filename(File fd)
{
DBUG_ENTER("my_filename");
if ((uint) fd >= (uint) my_file_limit || !my_file_info[fd].name)
DBUG_RETURN((char*) "UNKNOWN");
if (fd >= 0 && my_file_info[fd].type != UNOPEN)
{
DBUG_RETURN(my_file_info[fd].name);
}
else
DBUG_RETURN((char*) "UNOPENED"); /* Debug message... | O3 | c | my_filename:
pushq %rbp
movq %rsp, %rbp
leaq 0x2ddc89(%rip), %rcx # 0x387bc0
leaq 0x34637(%rip), %rax # 0xde575
cmpl %edi, (%rcx)
jbe 0xa9f73
leaq 0x2ddc7f(%rip), %rcx # 0x387bc8
movq (%rcx), %rcx
movslq %edi, %rdx
shlq $0x4, %rdx
movq (%rcx,%rdx), %rsi
testq %rsi, %rsi
je 0xa9f73
testl %edi, %edi
js 0xa9f6c
... | my_filename:
push rbp
mov rbp, rsp
lea rcx, my_file_limit
lea rax, aUnknown_1; "UNKNOWN"
cmp [rcx], edi
jbe short loc_A9F73
lea rcx, my_file_info
mov rcx, [rcx]
movsxd rdx, edi
shl rdx, 4
mov rsi, [rcx+rdx]
test rsi, rsi
jz short loc_A9F73
test edi, edi
js short l... | const char * my_filename(int a1)
{
const char *result; // rax
long long v2; // rdx
result = "UNKNOWN";
if ( my_file_limit > (unsigned int)a1 )
{
v2 = 16LL * a1;
if ( *(_QWORD *)((char *)my_file_info + v2) )
{
if ( a1 < 0 )
return "UNOPENED";
result = (const char *)*((_QWORD *)... | my_filename:
PUSH RBP
MOV RBP,RSP
LEA RCX,[0x487bc0]
LEA RAX,[0x1de575]
CMP dword ptr [RCX],EDI
JBE 0x001a9f73
LEA RCX,[0x487bc8]
MOV RCX,qword ptr [RCX]
MOVSXD RDX,EDI
SHL RDX,0x4
MOV RSI,qword ptr [RCX + RDX*0x1]
TEST RSI,RSI
JZ 0x001a9f73
TEST EDI,EDI
JS 0x001a9f6c
ADD RCX,RDX
CMP dword ptr [RCX + 0x8],0x0
MOV RAX,R... |
char * my_filename(uint param_1)
{
char *pcVar1;
pcVar1 = "UNKNOWN";
if (param_1 < my_file_limit) {
if ((*(char **)(my_file_info + (long)(int)param_1 * 0x10) != (char *)0x0) &&
(((int)param_1 < 0 ||
(pcVar1 = *(char **)(my_file_info + (long)(int)param_1 * 0x10),
*(int *)(my_file_in... | |
21,069 | eth_get_storage_value | corpus-core[P]colibri-stateless/src/chains/eth/verifier/eth_account.c | bool eth_get_storage_value(ssz_ob_t storage, bytes32_t value) {
bytes_t last_value = get_last_value(ssz_get(&storage, "proof"));
if (!last_value.data) return false;
if (rlp_decode(&last_value, 0, &last_value) != RLP_ITEM) return false;
if (last_value.len > 32) return false;
memcpy(value + 32 - last_value.len,... | O0 | c | eth_get_storage_value:
pushq %rbp
movq %rsp, %rbp
subq $0x50, %rsp
leaq 0x10(%rbp), %rsi
movq %rdi, -0x10(%rbp)
leaq -0x38(%rbp), %rdi
leaq 0xa824d(%rip), %rdx # 0xda1b8
callq 0xa05c0
leaq -0x38(%rbp), %rax
movq (%rax), %rcx
movq %rcx, (%rsp)
movq 0x8(%rax), %rcx
movq %rcx, 0x8(%rsp)
movq 0x10(%rax), %rax
movq %rax... | eth_get_storage_value:
push rbp
mov rbp, rsp
sub rsp, 50h
lea rsi, [rbp+arg_0]
mov [rbp+var_10], rdi
lea rdi, [rbp+var_38]
lea rdx, aChainTypeDoesN+1Eh; "proof"
call ssz_get
lea rax, [rbp+var_38]
mov rcx, [rax]
mov [rsp+50h+var_50], rcx
mov rcx, [rax+8]
mov [rsp+50h+var... | char eth_get_storage_value(long long a1, _DWORD a2, _DWORD a3, _DWORD a4, _DWORD a5, _DWORD a6, char a7)
{
int v7; // edx
int v8; // r8d
int v9; // r9d
long long v10; // rdx
long long v12; // [rsp+18h] [rbp-38h] BYREF
long long v13; // [rsp+20h] [rbp-30h]
long long v14; // [rsp+28h] [rbp-28h]
unsigned ... | eth_get_storage_value:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x50
LEA RSI,[RBP + 0x10]
MOV qword ptr [RBP + -0x10],RDI
LEA RDI,[RBP + -0x38]
LEA RDX,[0x1da1b8]
CALL 0x001a05c0
LEA RAX,[RBP + -0x38]
MOV RCX,qword ptr [RAX]
MOV qword ptr [RSP],RCX
MOV RCX,qword ptr [RAX + 0x8]
MOV qword ptr [RSP + 0x8],RCX
MOV RAX,qword ptr [RAX ... |
int1 eth_get_storage_value(long param_1)
{
int iVar1;
void *extraout_RDX;
int1 local_40 [24];
uint local_28 [2];
void *local_20;
long local_18;
int1 local_9;
local_18 = param_1;
ssz_get(local_40,&stack0x00000008,"proof");
local_28[0] = get_last_value();
if (extraout_RDX == (void *)0x0) {
... | |
21,070 | eth_get_storage_value | corpus-core[P]colibri-stateless/src/chains/eth/verifier/eth_account.c | bool eth_get_storage_value(ssz_ob_t storage, bytes32_t value) {
bytes_t last_value = get_last_value(ssz_get(&storage, "proof"));
if (!last_value.data) return false;
if (rlp_decode(&last_value, 0, &last_value) != RLP_ITEM) return false;
if (last_value.len > 32) return false;
memcpy(value + 32 - last_value.len,... | O3 | c | eth_get_storage_value:
pushq %rbp
pushq %r14
pushq %rbx
subq $0x40, %rsp
movq %rdi, %rbx
leaq 0x53757(%rip), %rdx # 0x7f1b8
leaq 0x28(%rsp), %r14
leaq 0x60(%rsp), %rsi
movq %r14, %rdi
callq 0x53211
movq 0x10(%r14), %rax
movq %rax, 0x10(%rsp)
movups (%r14), %xmm0
movups %xmm0, (%rsp)
callq 0x2badd
movl %eax, 0x18(%r... | eth_get_storage_value:
push rbp
push r14
push rbx
sub rsp, 40h
mov rbx, rdi
lea rdx, aChainTypeDoesN+1Eh; "proof"
lea r14, [rsp+58h+var_30]
lea rsi, [rsp+58h+arg_0]
mov rdi, r14
call ssz_get
mov rax, [r14+10h]
mov [rsp+58h+var_48], rax
movups xmm0, xmmword ptr [r14]
movups ... | long long eth_get_storage_value(long long a1, _DWORD a2, _DWORD a3, _DWORD a4, _DWORD a5, _DWORD a6, char a7)
{
int v7; // edx
int v8; // ecx
int v9; // r8d
int v10; // r9d
long long v11; // rdx
unsigned int v12; // ebp
unsigned int last_value; // [rsp+18h] [rbp-40h] BYREF
long long v15; // [rsp+20h] [... | eth_get_storage_value:
PUSH RBP
PUSH R14
PUSH RBX
SUB RSP,0x40
MOV RBX,RDI
LEA RDX,[0x17f1b8]
LEA R14,[RSP + 0x28]
LEA RSI,[RSP + 0x60]
MOV RDI,R14
CALL 0x00153211
MOV RAX,qword ptr [R14 + 0x10]
MOV qword ptr [RSP + 0x10],RAX
MOVUPS XMM0,xmmword ptr [R14]
MOVUPS xmmword ptr [RSP],XMM0
CALL 0x0012badd
MOV dword ptr [RSP... |
int8 eth_get_storage_value(long param_1)
{
int iVar1;
void *extraout_RDX;
ulong __n;
uint local_40 [2];
void *local_38;
int1 local_30 [24];
ssz_get(local_30,&stack0x00000008,"proof");
local_40[0] = get_last_value();
if (extraout_RDX != (void *)0x0) {
local_38 = extraout_RDX;
iVar1 = rlp_d... | |
21,071 | blst_sha256 | corpus-core[P]colibri-stateless/build_O3/_deps/blst-src/src/exports.c | void blst_sha256(unsigned char md[32], const void *msg, size_t len)
{
SHA256_CTX ctx;
sha256_init(&ctx);
sha256_update(&ctx, msg, len);
sha256_final(md, &ctx);
} | O3 | c | blst_sha256:
pushq %rbp
movq %rsp, %rbp
pushq %r14
pushq %rbx
subq $0x70, %rsp
movq %rdi, %rbx
movaps 0x2668c(%rip), %xmm0 # 0x8a540
leaq -0x58(%rbp), %rax
movups %xmm0, -0x28(%rax)
movaps 0x2668d(%rip), %xmm0 # 0x8a550
movups %xmm0, -0x18(%rax)
movq $0x0, -0x8(%rax)
movl $0x5, %ecx
movq $0x0, -0x80(%rbp,%rcx,8)
... | blst_sha256:
push rbp
mov rbp, rsp
push r14
push rbx
sub rsp, 70h
mov rbx, rdi
movaps xmm0, cs:xmmword_8A540
lea rax, [rbp+var_58]
movups xmmword ptr [rax-28h], xmm0
movaps xmm0, cs:xmmword_8A550
movups xmmword ptr [rax-18h], xmm0
mov qword ptr [rax-8], 0
mov ecx, 5
loc_63ED4:
mov ... | long long blst_sha256(long long a1, long long a2, long long a3)
{
long long i; // rcx
_OWORD v5[2]; // [rsp+0h] [rbp-80h] BYREF
long long v6; // [rsp+20h] [rbp-60h]
long long v7; // [rsp+68h] [rbp-18h]
v5[0] = xmmword_8A540;
v5[1] = xmmword_8A550;
v6 = 0LL;
for ( i = 5LL; i != 13; ++i )
*((_QWORD ... | blst_sha256:
PUSH RBP
MOV RBP,RSP
PUSH R14
PUSH RBX
SUB RSP,0x70
MOV RBX,RDI
MOVAPS XMM0,xmmword ptr [0x0018a540]
LEA RAX,[RBP + -0x58]
MOVUPS xmmword ptr [RAX + -0x28],XMM0
MOVAPS XMM0,xmmword ptr [0x0018a550]
MOVUPS xmmword ptr [RAX + -0x18],XMM0
MOV qword ptr [RAX + -0x8],0x0
MOV ECX,0x5
LAB_00163ed4:
MOV qword ptr ... |
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */
void blst_sha256(int8 param_1)
{
long lVar1;
int8 local_88 [2];
int4 local_78;
int4 uStack_74;
int4 uStack_70;
int4 uStack_6c;
int8 local_68;
int8 local_60 [8];
int8 local_20;
local_88[0] = _DAT_0018a540;
lo... | |
21,072 | rtree_delete_key | eloqsql/storage/myisam/rt_key.c | int rtree_delete_key(MI_INFO *info, uchar *page_buf, uchar *key,
uint key_length, uint nod_flag)
{
uint16 page_size = mi_getint(page_buf);
uchar *key_start;
key_start= key - nod_flag;
if (!nod_flag)
key_length += info->s->base.rec_reflength;
memmove(key_start, key + key_length, page_size - key_l... | O3 | c | rtree_delete_key:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movl %r8d, %r15d
movl %ecx, %r14d
movq %rsi, %rbx
movzbl 0x1(%rsi), %eax
movzbl (%rsi), %r12d
testl %r8d, %r8d
je 0x8c65b
movl $0x8000, %r13d # imm = 0x8000
jmp 0x8c668
movq (%rdi), %rcx
addl 0x178(%r... | rtree_delete_key:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
push rax
mov r15d, r8d
mov r14d, ecx
mov rbx, rsi
movzx eax, byte ptr [rsi+1]
movzx r12d, byte ptr [rsi]
test r8d, r8d
jz short loc_8C65B
mov r13d, 8000h
jmp short loc_8C668
loc_... | long long rtree_delete_key(long long a1, _BYTE *a2, long long a3, unsigned int a4, unsigned int a5)
{
__int16 v5; // r15
unsigned int v6; // r14d
__int16 v7; // r13
int v8; // r12d
v5 = a5;
v6 = a4;
if ( a5 )
{
v7 = 0x8000;
}
else
{
v6 = *(_DWORD *)(*(_QWORD *)a1 + 376LL) + a4;
v7 = ... | rtree_delete_key:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV R15D,R8D
MOV R14D,ECX
MOV RBX,RSI
MOVZX EAX,byte ptr [RSI + 0x1]
MOVZX R12D,byte ptr [RSI]
TEST R8D,R8D
JZ 0x0018c65b
MOV R13D,0x8000
JMP 0x0018c668
LAB_0018c65b:
MOV RCX,qword ptr [RDI]
ADD R14D,dword ptr [RCX + 0x178]
XOR... |
int8 rtree_delete_key(long *param_1,byte *param_2,long param_3,uint param_4,uint param_5)
{
uint uVar1;
int iVar2;
int iVar3;
ulong uVar4;
uVar4 = (ulong)param_4;
if (param_5 == 0) {
uVar4 = (ulong)(param_4 + *(int *)(*param_1 + 0x178));
iVar3 = 0;
}
else {
iVar3 = 0x8000;
}
uVar1 =... | |
21,073 | add_load_option | eloqsql/client/mysqldump.c | static void add_load_option(DYNAMIC_STRING *str, const char *option,
const char *option_value)
{
if (!option_value)
{
/* Null value means we don't add this option. */
return;
}
dynstr_append_checked(str, option);
if (strncmp(option_value, "0x", sizeof("0x")-1) == 0)
... | O3 | c | add_load_option:
testq %rdx, %rdx
je 0x4248b
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r12
pushq %rbx
movq %rdx, %r14
movq %rdi, %rbx
callq 0x3ccf2
cmpb $0x30, (%r14)
jne 0x423fd
cmpb $0x78, 0x1(%r14)
jne 0x423fd
movq %r14, %r15
jmp 0x42478
leaq 0x5e888(%rip), %r15 # 0xa0c8c
movq %rbx, %rdi
movq %r15,... | add_load_option:
test rdx, rdx
jz locret_4248B
push rbp
mov rbp, rsp
push r15
push r14
push r12
push rbx
mov r14, rdx
mov rbx, rdi
call dynstr_append_checked
cmp byte ptr [r14], 30h ; '0'
jnz short loc_423FD
cmp byte ptr [r14+1], 78h ; 'x'
jnz short loc_423FD
mov ... | void add_load_option(
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,
double a11,
double a12,
__m128 a13,
__m128 a14,
... | add_load_option:
TEST RDX,RDX
JZ 0x0014248b
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R12
PUSH RBX
MOV R14,RDX
MOV RBX,RDI
CALL 0x0013ccf2
CMP byte ptr [R14],0x30
JNZ 0x001423fd
CMP byte ptr [R14 + 0x1],0x78
JNZ 0x001423fd
MOV R15,R14
JMP 0x00142478
LAB_001423fd:
LEA R15,[0x1a0c8c]
MOV RDI,RBX
MOV RSI,R15
CALL 0x0013... |
void add_load_option(int8 param_1,int8 param_2,char *param_3)
{
bool bVar1;
bool bVar2;
char *pcVar3;
if (param_3 == (char *)0x0) {
return;
}
dynstr_append_checked();
if ((*param_3 != '0') || (pcVar3 = param_3, param_3[1] != 'x')) {
dynstr_append_checked(param_1,&DAT_001a0c8c);
pcVar3 = "... | |
21,074 | my_like_range_simple | eloqsql/strings/ctype-simple.c | my_bool my_like_range_simple(CHARSET_INFO *cs,
const char *ptr, size_t ptr_length,
pbool escape, pbool w_one, pbool w_many,
size_t res_length,
char *min_str,char *max_str,
size_t *min_length, size_t *max_length)
{
const char *end= ptr + ptr_length;
char *min_org=min_str;
ch... | O0 | c | my_like_range_simple:
pushq %rbp
movq %rsp, %rbp
movl %r8d, -0x60(%rbp)
movl %ecx, %eax
movl -0x60(%rbp), %ecx
movl %eax, -0x5c(%rbp)
movq %rdx, %rax
movl -0x5c(%rbp), %edx
movq %rax, -0x58(%rbp)
movq %rsi, %rax
movq -0x58(%rbp), %rsi
movq %rax, -0x50(%rbp)
movq %rdi, %r8
movq -0x50(%rbp), %rdi
movb %r9b, %al
movq 0x30... | my_like_range_simple:
push rbp
mov rbp, rsp
mov [rbp+var_60], r8d
mov eax, ecx
mov ecx, [rbp+var_60]
mov [rbp+var_5C], eax
mov rax, rdx
mov edx, [rbp+var_5C]
mov [rbp+var_58], rax
mov rax, rsi
mov rsi, [rbp+var_58]
mov [rbp+var_50], rax
mov r8, rdi
mov rdi, [rbp+va... | char my_like_range_simple(
long long a1,
_BYTE *a2,
long long a3,
char a4,
char a5,
char a6,
unsigned long long a7,
_BYTE *a8,
_BYTE *a9,
unsigned long long *a10,
_QWORD *a11)
{
char v11; // cl
_BYTE *v12; // rax
_BYTE *v13; ... | |||
21,075 | my_like_range_simple | eloqsql/strings/ctype-simple.c | my_bool my_like_range_simple(CHARSET_INFO *cs,
const char *ptr, size_t ptr_length,
pbool escape, pbool w_one, pbool w_many,
size_t res_length,
char *min_str,char *max_str,
size_t *min_length, size_t *max_length)
{
const char *end= ptr + ptr_length;
char *min_org=min_str;
ch... | O3 | c | my_like_range_simple:
pushq %rbp
movq %rsp, %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
movq %rdx, %r10
movq 0x30(%rbp), %rdx
movq 0x28(%rbp), %r12
movq 0x20(%rbp), %rbx
movq 0x18(%rbp), %r14
movq 0x10(%rbp), %r11
testq %r10, %r10
je 0xbe83d
addq %rsi, %r10
movl 0x9c(%rdi), %r15d
xorl %r13d, %r13d
movq ... | my_like_range_simple:
push rbp
mov rbp, rsp
push r15
push r14
push r13
push r12
push rbx
mov r10, rdx
mov rdx, [rbp+arg_20]
mov r12, [rbp+arg_18]
mov rbx, [rbp+arg_10]
mov r14, [rbp+arg_8]
mov r11, [rbp+arg_0]
test r10, r10
jz loc_BE83D
add r10, rsi
mov r15d... | long long my_like_range_simple(
long long a1,
char *a2,
long long a3,
char a4,
char a5,
char a6,
unsigned long long a7,
long long a8,
_BYTE *a9,
unsigned long long *a10,
_QWORD *a11)
{
_QWORD *v12; // rdx
_BYTE *v13; // rbx
c... | my_like_range_simple:
PUSH RBP
MOV RBP,RSP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
MOV R10,RDX
MOV RDX,qword ptr [RBP + 0x30]
MOV R12,qword ptr [RBP + 0x28]
MOV RBX,qword ptr [RBP + 0x20]
MOV R14,qword ptr [RBP + 0x18]
MOV R11,qword ptr [RBP + 0x10]
TEST R10,R10
JZ 0x001be83d
ADD R10,RSI
MOV R15D,dword ptr [RDI + ... |
int8
my_like_range_simple
(long param_1,char *param_2,long param_3,char param_4,char param_5,char param_6,
ulong param_7,int1 *param_8,int1 *param_9,ulong *param_10,ulong *param_11)
{
char *pcVar1;
char cVar2;
ulong uVar3;
int1 *puVar4;
char *pcVar5;
ulong uVar6;
bool bVar7;
puV... | |
21,076 | google::protobuf::compiler::java::IsDefaultValueJavaDefault(google::protobuf::FieldDescriptor const*) | aimrt_mujoco_sim/_deps/protobuf-src/src/google/protobuf/compiler/java/helpers.cc | bool IsDefaultValueJavaDefault(const FieldDescriptor* field) {
// Switch on CppType since we need to know which default_value_* method
// of FieldDescriptor to call.
switch (field->cpp_type()) {
case FieldDescriptor::CPPTYPE_INT32:
return field->default_value_int32() == 0;
case FieldDescriptor::CPPT... | O3 | cpp | google::protobuf::compiler::java::IsDefaultValueJavaDefault(google::protobuf::FieldDescriptor const*):
pushq %rbx
subq $0x40, %rsp
movq %rdi, %rbx
movq 0x18(%rdi), %rdi
testq %rdi, %rdi
je 0x44cf4
leaq 0xf4f53(%rip), %rax # 0x139c34
leaq 0x8(%rsp), %rsi
movq %rax, (%rsi)
movq %rsp, %rdx
movq %rbx, (%rdx)
callq 0x2f... | _ZN6google8protobuf8compiler4java25IsDefaultValueJavaDefaultEPKNS0_15FieldDescriptorE:
push rbx
sub rsp, 40h
mov rbx, rdi
mov rdi, [rdi+18h]
test rdi, rdi
jz short loc_44CF4
lea rax, _ZN6google8protobuf15FieldDescriptor12TypeOnceInitEPKS1_; google::protobuf::FieldDescriptor::TypeOnceInit(goog... | char google::protobuf::compiler::java::IsDefaultValueJavaDefault(
google::protobuf::compiler::java *this,
const google::protobuf::FieldDescriptor *a2)
{
long long v3; // rdi
bool v4; // zf
char result; // al
__m128 v6; // rt1
char v7; // al
__m128d v8; // rt1
long long v9; // rax
google... | IsDefaultValueJavaDefault:
PUSH RBX
SUB RSP,0x40
MOV RBX,RDI
MOV RDI,qword ptr [RDI + 0x18]
TEST RDI,RDI
JZ 0x00144cf4
LEA RAX,[0x239c34]
LEA RSI,[RSP + 0x8]
MOV qword ptr [RSI],RAX
MOV RDX,RSP
MOV qword ptr [RDX],RBX
CALL 0x0012f19d
LAB_00144cf4:
MOVZX EAX,byte ptr [RBX + 0x2]
LEA RCX,[0x2efc20]
MOV EAX,dword ptr [RCX... |
/* google::protobuf::compiler::java::IsDefaultValueJavaDefault(google::protobuf::FieldDescriptor
const*) */
bool google::protobuf::compiler::java::IsDefaultValueJavaDefault(FieldDescriptor *param_1)
{
long lVar1;
LogMessage *pLVar2;
bool bVar3;
FieldDescriptor *local_48;
code *local_40 [7];
if (*(o... | |
21,077 | ftxui::(anonymous namespace)::Text::Render(ftxui::Screen&) | Andrewchistyakov[P]flashcards_lyc/build_O2/_deps/ftxui-src/src/ftxui/dom/text.cpp | void Render(Screen& screen) override {
int x = box_.x_min;
const int y = box_.y_min;
if (y > box_.y_max) {
return;
}
for (const auto& cell : Utf8ToGlyphs(text_)) {
if (x > box_.x_max) {
return;
}
if (cell == "\n") {
continue;
}
screen.PixelAt(x, y)... | O2 | cpp | ftxui::(anonymous namespace)::Text::Render(ftxui::Screen&):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x28, %rsp
movq %rsi, 0x8(%rsp)
movl 0x54(%rdi), %ebp
cmpl 0x58(%rdi), %ebp
jg 0x2044f
movq %rdi, %r14
movl 0x4c(%rdi), %r15d
leaq 0x60(%rdi), %rsi
leaq 0x10(%rsp), %r13
movq %r13, %rdi
ca... | _ZN5ftxui12_GLOBAL__N_14Text6RenderERNS_6ScreenE:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 28h
mov [rsp+58h+var_50], rsi
mov ebp, [rdi+54h]
cmp ebp, [rdi+58h]
jg short loc_2044F
mov r14, rdi
mov r15d, [rdi+4Ch]
lea rsi, [rdi+60h]
lea r13, [rsp... | void ftxui::`anonymous namespace'::Text::Render(ftxui::_anonymous_namespace_::Text *this, ftxui::Screen *a2)
{
int v2; // ebp
int v3; // r15d
long long v4; // r12
long long v5; // rbx
long long v6; // rax
_QWORD v7[9]; // [rsp+10h] [rbp-48h] BYREF
v2 = *((_DWORD *)this + 21);
if ( v2 <= *((_DWORD *)th... | Render:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x28
MOV qword ptr [RSP + 0x8],RSI
MOV EBP,dword ptr [RDI + 0x54]
CMP EBP,dword ptr [RDI + 0x58]
JG 0x0012044f
MOV R14,RDI
MOV R15D,dword ptr [RDI + 0x4c]
LEA RSI,[RDI + 0x60]
LEA R13,[RSP + 0x10]
MOV RDI,R13
CALL 0x001313a7
MOV R12,qword ptr [R13]
M... |
/* ftxui::(anonymous namespace)::Text::Render(ftxui::Screen&) */
void __thiscall ftxui::(anonymous_namespace)::Text::Render(Text *this,Screen *param_1)
{
int iVar1;
bool bVar2;
long lVar3;
string *psVar4;
int iVar5;
string *local_48;
string *local_40;
iVar1 = *(int *)(this + 0x54);
if (iVar1 <= ... | |
21,078 | 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 emplace_back(Args&& ... args)
{
// emplace_back only works for null objects or arrays
if (JSON_HEDLEY_UNLIKELY(!(is_null() || is_array())))
{
JSON_THROW(type_error::create(311, detail::concat("cannot use emplace_back() with ", type_name()), this));
}
//... | 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_IhSaIhEEvE12emplace_backIJRSD_EEESF_DpOT_:
push rbp; char
push r14; int
push rbx; __int64
sub rsp, 30h
mov rbx, rsi
mov r14, rdi
movzx eax, byte ... | 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>::emplace_back<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ord... | emplace_back<nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map,std::vector,std::__cxx11::string,bool,long,unsigned_long,double,std::allocator,nlohmann::json_abi_v3_11_3::adl_serializer,std::vector<unsigned_char,std::allocator<unsigned_char>>,void>&>:
PUSH RBP
PUSH R14
PUSH RBX
SUB RSP,0x30
... |
/* 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>& nlohmann::json_abi_v3_11_3::ba... | |
21,079 | mbedtls_sha256_update_ret | msxemulator/build_O3/_deps/pico_sdk-src/lib/mbedtls/library/sha256.c | int mbedtls_sha256_update_ret(mbedtls_sha256_context *ctx,
const unsigned char *input,
size_t ilen)
{
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
size_t fill;
uint32_t left;
SHA256_VALIDATE_RET(ctx != NULL);
SHA256_VALIDATE_RET(ilen =... | O3 | c | mbedtls_sha256_update_ret:
testq %rdx, %rdx
je 0x95157
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
movq %rsi, %rbx
movq %rdi, %r14
movl (%rdi), %ecx
movl %ecx, %eax
andl $0x3f, %eax
movl %edx, %esi
addl %ecx, %esi
movl %esi, (%rdi)
jae 0x950d2
incl 0x4(%r14)
testl %eax, %eax
je 0x95110
movl $0x40, %r15d
subq... | mbedtls_sha256_update_ret:
test rdx, rdx
jz loc_95157
push r15
push r14
push r13
push r12
push rbx
mov rbx, rsi
mov r14, rdi
mov ecx, [rdi]
mov eax, ecx
and eax, 3Fh
mov esi, edx
add esi, ecx
mov [rdi], esi
jnb short loc_950D2
inc dword ptr [r14+4]
loc_950D... | long long mbedtls_sha256_update_ret(int *a1, long long a2, unsigned long long a3)
{
long long v3; // rbx
int v4; // ecx
long long v5; // rax
long long v6; // r15
unsigned long long v7; // r13
if ( a3 )
{
v3 = a2;
v4 = *a1;
v5 = *a1 & 0x3F;
*a1 += a3;
if ( __CFADD__(v4, (_DWORD)a3) )
... | mbedtls_sha256_update_ret:
TEST RDX,RDX
JZ 0x00195157
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
MOV RBX,RSI
MOV R14,RDI
MOV ECX,dword ptr [RDI]
MOV EAX,ECX
AND EAX,0x3f
MOV ESI,EDX
ADD ESI,ECX
MOV dword ptr [RDI],ESI
JNC 0x001950d2
INC dword ptr [R14 + 0x4]
LAB_001950d2:
TEST EAX,EAX
JZ 0x00195110
MOV R15D,0x40
SUB ... |
int8 mbedtls_sha256_update_ret(uint *param_1,void *param_2,ulong param_3)
{
uint uVar1;
uint uVar2;
ulong __n;
ulong uVar3;
if (param_3 == 0) {
return 0;
}
uVar1 = *param_1;
uVar2 = uVar1 & 0x3f;
uVar3 = (ulong)uVar2;
*param_1 = (uint)param_3 + uVar1;
if (CARRY4((uint)param_3,uVar1)) {
... | |
21,080 | void reaction::ObserverGraph::resetNode<reaction::ObserverDataNode>(std::shared_ptr<reaction::ObserverDataNode>) | reaction/include/reaction/observerNode.h | void resetNode(std::shared_ptr<NodeType> node) {
if constexpr (std::is_same_v<typename NodeType::SourceType, DataNode>) {
for (auto dep : m_dataDependents[node]) {
m_dataObservers[dep].erase(node);
}
m_dataDependents[node].clear();
} else {
... | O0 | c | void reaction::ObserverGraph::resetNode<reaction::ObserverDataNode>(std::shared_ptr<reaction::ObserverDataNode>):
pushq %rbp
movq %rsp, %rbp
subq $0x70, %rsp
movq %rsi, -0x58(%rbp)
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movq -0x8(%rbp), %rdi
movq %rdi, -0x50(%rbp)
callq 0x153c0
movq %rax, -0x18(%rbp)
movq -0x18(%... | _ZN8reaction13ObserverGraph9resetNodeITkNS_6NodeCCENS_16ObserverDataNodeEEEvSt10shared_ptrIT_E:
push rbp
mov rbp, rsp
sub rsp, 70h
mov [rbp+var_58], rsi
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov rdi, [rbp+var_8]
mov [rbp+var_50], rdi
call _ZNSt13unordered_mapISt10shared_ptrIN8reac... | long long ZN8reaction13ObserverGraph9resetNodeITkNS_6NodeCCENS_16ObserverDataNodeEEEvSt10shared_ptrIT_E(
long long a1,
long long a2)
{
long long v2; // rax
long long v3; // rax
long long v5; // [rsp+10h] [rbp-60h]
_BYTE v6[16]; // [rsp+38h] [rbp-38h] BYREF
long long v7; // [rsp+48h] [rbp-28h]... | _ZN8reaction13ObserverGraph9resetNodeITkNS_6NodeCCENS_16ObserverDataNodeEEEvSt10shared_ptrIT_E:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x70
MOV qword ptr [RBP + -0x58],RSI
MOV qword ptr [RBP + -0x8],RDI
MOV qword ptr [RBP + -0x10],RSI
MOV RDI,qword ptr [RBP + -0x8]
MOV qword ptr [RBP + -0x50],RDI
CALL 0x001153c0
MOV qword ptr [R... |
void _ZN8reaction13ObserverGraph9resetNodeITkNS_6NodeCCENS_16ObserverDataNodeEEEvSt10shared_ptrIT_E
(unordered_map<std::shared_ptr<reaction::ObserverDataNode>,std::unordered_set<std::shared_ptr<reaction::ObserverDataNode>,std::hash<std::shared_ptr<reaction::ObserverDataNode>>,std::equal_to<std::shared_p... | |
21,081 | crc32_pclmul | eloqsql/mysys/crc32/crc32_x86.c | unsigned int crc32_pclmul(unsigned int crc32, const void *buf, size_t len)
{
return ~crcr32_calc_pclmulqdq(buf, (uint32_t)len, ~crc32, ðer_crc32_clmul);
} | O3 | c | crc32_pclmul:
pushq %rbp
movq %rsp, %rbp
pushq %r14
pushq %rbx
subq $0x30, %rsp
movq %rdx, %rbx
movq %fs:0x28, %rax
movq %rax, -0x18(%rbp)
testl %ebx, %ebx
je 0x30085
notl %edi
movd %edi, %xmm2
cmpl $0x1f, %ebx
jbe 0x3009f
movdqu (%rsi), %xmm1
pxor %xmm2, %xmm1
pushq $0x10
popq %rax
movl $0xccaa009e, %ecx # imm =... | crc32_pclmul:
push rbp
mov rbp, rsp
push r14
push rbx
sub rsp, 30h
mov rbx, rdx
mov rax, fs:28h
mov [rbp+var_18], rax
test ebx, ebx
jz loc_30085
not edi
movd xmm2, edi
cmp ebx, 1Fh
jbe loc_3009F
movdqu xmm1, xmmword ptr [rsi]
pxor xmm1, xmm2
push 10h
pop ra... | long long crc32_pclmul(unsigned int a1, const __m128i *a2, unsigned int a3)
{
__m128i v4; // xmm2
unsigned int v6; // eax
unsigned int v12; // ecx
bool v13; // cc
__m128i v14; // xmm0
__m128i v16; // xmm0
__m128i v17; // xmm1
__m128i v23; // xmm1
__m128i v26; // xmm2
__m128i v33; // xmm1
__m128i ... | crc32_pclmul:
PUSH RBP
MOV RBP,RSP
PUSH R14
PUSH RBX
SUB RSP,0x30
MOV RBX,RDX
MOV RAX,qword ptr FS:[0x28]
MOV qword ptr [RBP + -0x18],RAX
TEST EBX,EBX
JZ 0x00130085
NOT EDI
MOVD XMM2,EDI
CMP EBX,0x1f
JBE 0x0013009f
MOVDQU XMM1,xmmword ptr [RSI]
PXOR XMM1,XMM2
PUSH 0x10
POP RAX
MOV ECX,0xccaa009e
MOVQ XMM0,RCX
MOVDQA XM... |
/* WARNING: Removing unreachable block (ram,0x0013006f) */
/* WARNING: Removing unreachable block (ram,0x0013003a) */
/* WARNING: Removing unreachable block (ram,0x00130006) */
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */
uint crc32_pclmul(uint param_1,int1 (*param_2) [16],uint... | |
21,082 | js_iterator_from | bluesky950520[P]quickjs/quickjs.c | static JSValue js_iterator_from(JSContext *ctx, JSValue this_val,
int argc, JSValue *argv)
{
JSValue obj, method, iter;
JSIteratorWrapData *it;
int ret;
obj = argv[0];
if (JS_IsString(obj)) {
method = JS_GetProperty(ctx, obj, JS_ATOM_Symbol_iterator);
... | O1 | c | js_iterator_from:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x18, %rsp
movq %rdi, %r15
movq (%r8), %rbx
movq 0x8(%r8), %r12
cmpl $-0x1, %r12d
je 0x732da
cmpl $-0x7, %r12d
jne 0x7331d
movq %r15, %rdi
movq %rbx, %rsi
movq %r12, %rdx
movl $0xd4, %ecx
movq %rbx, %r8
movq %r12, %r9
pushq $0x0
p... | js_iterator_from:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 18h
mov r15, rdi
mov rbx, [r8]
mov r12, [r8+8]
cmp r12d, 0FFFFFFFFh
jz short loc_732DA
cmp r12d, 0FFFFFFF9h
jnz short loc_7331D
mov rdi, r15
mov rsi, rbx
mov rdx, r12
mov e... | unsigned long long js_iterator_from(
long long *a1,
__m128 a2,
__m128 a3,
__m128 a4,
__m128 a5,
__m128 a6,
__m128 a7,
__m128 a8,
__m128 a9,
long long a10,
long long a11,
long long a12,
long long *a13,
long l... | |||
21,083 | js_iterator_from | bluesky950520[P]quickjs/quickjs.c | static JSValue js_iterator_from(JSContext *ctx, JSValue this_val,
int argc, JSValue *argv)
{
JSValue obj, method, iter;
JSIteratorWrapData *it;
int ret;
obj = argv[0];
if (JS_IsString(obj)) {
method = JS_GetProperty(ctx, obj, JS_ATOM_Symbol_iterator);
... | O2 | c | js_iterator_from:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x18, %rsp
movq %rdi, %r15
movq (%r8), %rbx
movq 0x8(%r8), %r12
cmpl $-0x1, %r12d
je 0x60ead
cmpl $-0x7, %r12d
jne 0x60eee
movq %r15, %rdi
movq %rbx, %rsi
movq %r12, %rdx
movl $0xd4, %ecx
callq 0x1b043
cmpl $0x6, %edx
jne 0x60f0a
... | js_iterator_from:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 18h
mov r15, rdi
mov rbx, [r8]
mov r12, [r8+8]
cmp r12d, 0FFFFFFFFh
jz short loc_60EAD
cmp r12d, 0FFFFFFF9h
jnz short loc_60EEE
mov rdi, r15
mov rsi, rbx
mov rdx, r12
mov e... | unsigned long long js_iterator_from(
long long a1,
__m128 a2,
__m128 a3,
__m128 a4,
__m128 a5,
__m128 a6,
__m128 a7,
__m128 a8,
__m128 a9,
long long a10,
long long a11,
long long a12,
long long *a13,
long lo... | js_iterator_from:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x18
MOV R15,RDI
MOV RBX,qword ptr [R8]
MOV R12,qword ptr [R8 + 0x8]
CMP R12D,-0x1
JZ 0x00160ead
CMP R12D,-0x7
JNZ 0x00160eee
MOV RDI,R15
MOV RSI,RBX
MOV RDX,R12
MOV ECX,0xd4
CALL 0x0011b043
CMP EDX,0x6
JNZ 0x00160f0a
PUSH 0x6
POP R14
JMP 0... |
int1 [16] js_iterator_from(long param_1)
{
int *piVar1;
int8 uVar2;
int iVar3;
int8 *puVar4;
ulong uVar5;
int1 (*in_R8) [16];
int1 auVar7 [16];
int1 auVar8 [16];
ulong uVar6;
piVar1 = *(int **)*in_R8;
uVar2 = *(int8 *)(*in_R8 + 8);
auVar7 = *in_R8;
if ((int)uVar2 == -1) {
iVar3 = JS_... | |
21,084 | 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_IhSaIhEEvE2atIRA13_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_IhSaIhEEvE2atIRA13_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_(
long long a1,
const ch... | _ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE2atIRA13_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_IhSaIhEEvE2atIRA13_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_
(basic_json<nlohmann::js... | |
21,085 | 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... | O2 | cpp | nlohmann::json_abi_v3_11_3::basic_json<nlohmann::json_abi_v3_11_3::ordered_map, std::vector, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, bool, long, unsigned long, double, std::allocator, nlohmann::json_abi_v3_11_3::adl_serializer, std::vector<unsigned char, std::allocator<unsigned c... | _ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE2atIRA11_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_IhSaIhEEvE2atIRA11_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_(
long long a1,
const ch... | _ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE2atIRA11_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_:
PUSH RBP
PUSH R15
PUSH R14
PUSH RBX
SUB RSP,0x48... |
long _ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE2atIRA11_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_
(basic_json<nlohmann::json_a... | |
21,086 | 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_IhSaIhEEvE2atIRA11_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_IhSaIhEEvE2atIRA11_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_(
long long a1,
const ch... | _ZN8nlohmann16json_abi_v3_11_310basic_jsonINS0_11ordered_mapESt6vectorNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEblmdSaNS0_14adl_serializerES3_IhSaIhEEvE2atIRA11_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_IhSaIhEEvE2atIRA11_KcTnNSt9enable_ifIXsr6detail32is_usable_as_basic_json_key_typeISD_T_EE5valueEiE4typeELi0EEERSD_OSJ_
(basic_json<nlohmann::js... | |
21,087 | get_limb_radix | bluesky950520[P]quickjs/libbf.c | static limb_t get_limb_radix(int radix)
{
int i, k;
limb_t radixl;
k = digits_per_limb_table[radix - 2];
radixl = radix;
for(i = 1; i < k; i++)
radixl *= radix;
return radixl;
} | O0 | c | get_limb_radix:
movl %edi, -0x4(%rsp)
movl -0x4(%rsp), %eax
subl $0x2, %eax
movslq %eax, %rcx
leaq 0x1aa2b(%rip), %rax # 0x111f70
movzbl (%rax,%rcx), %eax
movl %eax, -0xc(%rsp)
movslq -0x4(%rsp), %rax
movq %rax, -0x18(%rsp)
movl $0x1, -0x8(%rsp)
movl -0x8(%rsp), %eax
cmpl -0xc(%rsp), %eax
jge 0xf7586
movslq -0x4(%r... | get_limb_radix:
mov [rsp+var_4], edi
mov eax, [rsp+var_4]
sub eax, 2
movsxd rcx, eax
lea rax, digits_per_limb_table
movzx eax, byte ptr [rax+rcx]
mov [rsp+var_C], eax
movsxd rax, [rsp+var_4]
mov [rsp+var_18], rax
mov [rsp+var_8], 1
loc_F755F:
mov eax, [rsp+var_8]
cmp eax, [rsp+va... | long long get_limb_radix(int a1)
{
long long v2; // [rsp+0h] [rbp-18h]
int i; // [rsp+10h] [rbp-8h]
v2 = a1;
for ( i = 1; i < digits_per_limb_table[a1 - 2]; ++i )
v2 *= a1;
return v2;
}
| get_limb_radix:
MOV dword ptr [RSP + -0x4],EDI
MOV EAX,dword ptr [RSP + -0x4]
SUB EAX,0x2
MOVSXD RCX,EAX
LEA RAX,[0x211f70]
MOVZX EAX,byte ptr [RAX + RCX*0x1]
MOV dword ptr [RSP + -0xc],EAX
MOVSXD RAX,dword ptr [RSP + -0x4]
MOV qword ptr [RSP + -0x18],RAX
MOV dword ptr [RSP + -0x8],0x1
LAB_001f755f:
MOV EAX,dword ptr [... |
long get_limb_radix(int param_1)
{
long local_18;
int local_8;
local_18 = (long)param_1;
for (local_8 = 1; local_8 < (int)(uint)(byte)digits_per_limb_table[param_1 + -2];
local_8 = local_8 + 1) {
local_18 = param_1 * local_18;
}
return local_18;
}
| |
21,088 | get_limb_radix | bluesky950520[P]quickjs/libbf.c | static limb_t get_limb_radix(int radix)
{
int i, k;
limb_t radixl;
k = digits_per_limb_table[radix - 2];
radixl = radix;
for(i = 1; i < k; i++)
radixl *= radix;
return radixl;
} | O2 | c | get_limb_radix:
movslq %edi, %rcx
leaq 0x11227(%rip), %rax # 0x89e30
movzbl -0x2(%rcx,%rax), %edx
pushq $0x1
popq %rsi
movq %rcx, %rax
cmpl %edx, %esi
jae 0x78c20
imulq %rcx, %rax
incl %esi
jmp 0x78c14
retq
| get_limb_radix:
movsxd rcx, edi
lea rax, digits_per_limb_table
movzx edx, byte ptr [rcx+rax-2]
push 1
pop rsi
mov rax, rcx
loc_78C14:
cmp esi, edx
jnb short locret_78C20
imul rax, rcx
inc esi
jmp short loc_78C14
locret_78C20:
retn
| long long get_limb_radix(int a1)
{
unsigned int v1; // esi
long long result; // rax
v1 = 1;
result = a1;
while ( v1 < digits_per_limb_table[a1 - 2] )
{
result *= a1;
++v1;
}
return result;
}
| get_limb_radix:
MOVSXD RCX,EDI
LEA RAX,[0x189e30]
MOVZX EDX,byte ptr [RCX + RAX*0x1 + -0x2]
PUSH 0x1
POP RSI
MOV RAX,RCX
LAB_00178c14:
CMP ESI,EDX
JNC 0x00178c20
IMUL RAX,RCX
INC ESI
JMP 0x00178c14
LAB_00178c20:
RET
|
long get_limb_radix(int param_1)
{
long lVar1;
long lVar2;
uint uVar3;
lVar2 = (long)param_1;
lVar1 = lVar2;
for (uVar3 = 1; uVar3 < (byte)sqrt_table[lVar2 + 0x17e]; uVar3 = uVar3 + 1) {
lVar1 = lVar1 * lVar2;
}
return lVar1;
}
| |
21,089 | minja::ForTemplateToken::ForTemplateToken(minja::Location const&, minja::SpaceHandling, minja::SpaceHandling, 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>>>> const&, std::shared_pt... | monkey531[P]llama/common/minja.hpp | ForTemplateToken(const Location & location, SpaceHandling pre, SpaceHandling post, const std::vector<std::string> & vns, std::shared_ptr<Expression> && iter,
std::shared_ptr<Expression> && c, bool r)
: TemplateToken(Type::For, location, pre, post), var_names(vns), iterable(std::move(iter)), condition(std::m... | O2 | cpp | minja::ForTemplateToken::ForTemplateToken(minja::Location const&, minja::SpaceHandling, minja::SpaceHandling, 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>>>> const&, std::shared_pt... | _ZN5minja16ForTemplateTokenC2ERKNS_8LocationENS_13SpaceHandlingES4_RKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaISB_EEOSt10shared_ptrINS_10ExpressionEESJ_b:
push r15
push r14
push rbx
mov r14, r9
mov r15, r8
mov r8d, ecx
mov ecx, edx
mov rdx, rsi
mov rbx, rdi
push ... | char minja::ForTemplateToken::ForTemplateToken(
long long a1,
long long a2,
int a3,
int a4,
_QWORD *a5,
__int128 *a6,
__int128 *a7,
char a8)
{
char result; // al
__int128 v11; // xmm0
__int128 v12; // xmm0
minja::TemplateToken::TemplateToken(a1, ... | ForTemplateToken:
PUSH R15
PUSH R14
PUSH RBX
MOV R14,R9
MOV R15,R8
MOV R8D,ECX
MOV ECX,EDX
MOV RDX,RSI
MOV RBX,RDI
PUSH 0x6
POP RSI
CALL 0x0013b6fe
LEA RAX,[0x1cfc30]
ADD RAX,0x10
MOV qword ptr [RBX],RAX
LEA RDI,[RBX + 0x30]
LAB_00153cac:
MOV RSI,R15
CALL 0x00136ec2
LAB_00153cb4:
MOV AL,byte ptr [RSP + 0x28]
MOV RCX,qw... |
/* minja::ForTemplateToken::ForTemplateToken(minja::Location const&, minja::SpaceHandling,
minja::SpaceHandling, std::vector<std::__cxx11::string, std::allocator<std::__cxx11::string > >
const&, std::shared_ptr<minja::Expression>&&, std::shared_ptr<minja::Expression>&&, bool) */
void __thiscall
minja::ForTempla... | |
21,090 | OpenSubdiv::v3_6_0::Tmr::NeighborhoodBuilder::addVertexFaces(OpenSubdiv::v3_6_0::Vtr::internal::Level const&, int, int, int, int, bool) | NVIDIA-RTX[P]OSD-Lite/opensubdiv/tmr/neighborhoodBuilder.cpp | void NeighborhoodBuilder::addVertexFaces(Level const& level,
Index baseFace, Index vertIndex, int vertInFace, int regFaceSize, bool unordered) {
auto addVertexFace = [this, &level](Index faceIndex, Index vertIndex) {
// skip faces that we have already indexed
for (int i = 0; i < (int)_faces.siz... | O0 | cpp | OpenSubdiv::v3_6_0::Tmr::NeighborhoodBuilder::addVertexFaces(OpenSubdiv::v3_6_0::Vtr::internal::Level const&, int, int, int, int, bool):
pushq %rbp
movq %rsp, %rbp
subq $0x240, %rsp # imm = 0x240
movb 0x10(%rbp), %al
movq %rdi, -0x8(%rbp)
movq %rsi, -0x10(%rbp)
movl %edx, -0x14(%rbp)
movl %ecx, -0x18(%rbp)
m... | _ZN10OpenSubdiv6v3_6_03Tmr19NeighborhoodBuilder14addVertexFacesERKNS0_3Vtr8internal5LevelEiiiib:
push rbp
mov rbp, rsp
sub rsp, 240h
mov al, [rbp+arg_0]
mov [rbp+var_8], rdi
mov [rbp+var_10], rsi
mov [rbp+var_14], edx
mov [rbp+var_18], ecx
mov [rbp+var_1C], r8d
mov [rbp+var_20], r... | void OpenSubdiv::v3_6_0::Tmr::NeighborhoodBuilder::addVertexFaces(
OpenSubdiv::v3_6_0::Tmr::NeighborhoodBuilder *this,
const OpenSubdiv::v3_6_0::Vtr::internal::Level *a2,
int a3,
int a4,
int a5,
int a6,
bool a7)
{
long long VertexFaces; // rax
int v8; // edx
... | |||
21,091 | OpenSubdiv::v3_6_0::Tmr::NeighborhoodBuilder::addVertexFaces(OpenSubdiv::v3_6_0::Vtr::internal::Level const&, int, int, int, int, bool) | NVIDIA-RTX[P]OSD-Lite/opensubdiv/tmr/neighborhoodBuilder.cpp | void NeighborhoodBuilder::addVertexFaces(Level const& level,
Index baseFace, Index vertIndex, int vertInFace, int regFaceSize, bool unordered) {
auto addVertexFace = [this, &level](Index faceIndex, Index vertIndex) {
// skip faces that we have already indexed
for (int i = 0; i < (int)_faces.siz... | O3 | cpp | OpenSubdiv::v3_6_0::Tmr::NeighborhoodBuilder::addVertexFaces(OpenSubdiv::v3_6_0::Vtr::internal::Level const&, int, int, int, int, bool):
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x178, %rsp # imm = 0x178
movl %ecx, %ebx
movq %rsi, %r15
movq %rdi, %r14
leal 0x1(%rbx,%rbx), %eax
... | _ZN10OpenSubdiv6v3_6_03Tmr19NeighborhoodBuilder14addVertexFacesERKNS0_3Vtr8internal5LevelEiiiib:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 178h
mov ebx, ecx
mov r15, rsi
mov r14, rdi
lea eax, [rbx+rbx+1]
movsxd rcx, eax
mov rax, [rsi+108h]
movsxd r13, dwo... | void OpenSubdiv::v3_6_0::Tmr::NeighborhoodBuilder::addVertexFaces(
OpenSubdiv::v3_6_0::Tmr::NeighborhoodBuilder *this,
const OpenSubdiv::v3_6_0::Vtr::internal::Level *a2,
int a3,
unsigned int a4,
int a5,
int a6,
bool a7)
{
long long v9; // rax
long long v10; ... | addVertexFaces:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x178
MOV EBX,ECX
MOV R15,RSI
MOV R14,RDI
LEA EAX,[RBX + RBX*0x1 + 0x1]
MOVSXD RCX,EAX
MOV RAX,qword ptr [RSI + 0x108]
MOVSXD R13,dword ptr [RAX + RCX*0x4]
SHL R13,0x2
ADD R13,qword ptr [RSI + 0x120]
CMP byte ptr [RSP + 0x1b0],0x0
JZ 0x001a6a... |
/* OpenSubdiv::v3_6_0::Tmr::NeighborhoodBuilder::addVertexFaces(OpenSubdiv::v3_6_0::Vtr::internal::Level
const&, int, int, int, int, bool) */
void __thiscall
OpenSubdiv::v3_6_0::Tmr::NeighborhoodBuilder::addVertexFaces
(NeighborhoodBuilder *this,Level *param_1,int param_2,int param_3,int param_4,int para... | |
21,092 | js_string_slice | bluesky950520[P]quickjs/quickjs.c | static JSValue js_string_slice(JSContext *ctx, JSValue this_val,
int argc, JSValue *argv)
{
JSValue str, ret;
int len, start, end;
JSString *p;
str = JS_ToStringCheckObject(ctx, this_val);
if (JS_IsException(str))
return str;
p = JS_VALUE_GET_STRING(str);
... | O2 | c | js_string_slice:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x18, %rsp
movq %r8, %r12
movq %rdi, %r15
callq 0x3de40
movq %rax, %rbx
movq %rdx, %r14
cmpl $0x6, %r14d
je 0x6c087
movl $0x7fffffff, %ebp # imm = 0x7FFFFFFF
andl 0x4(%rbx), %ebp
movq (%r12), %rdx
movq 0x8(%r12), %rcx
movl %e... | js_string_slice:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 18h
mov r12, r8
mov r15, rdi
call JS_ToStringCheckObject
mov rbx, rax
mov r14, rdx
cmp r14d, 6
jz loc_6C087
mov ebp, 7FFFFFFFh
and ebp, [rbx+4]
mov rdx, [r12]
mov rcx, [r12+8... | _DWORD * js_string_slice(
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)
{
l... | js_string_slice:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x18
MOV R12,R8
MOV R15,RDI
CALL 0x0013de40
MOV RBX,RAX
MOV R14,RDX
CMP R14D,0x6
JZ 0x0016c087
MOV EBP,0x7fffffff
AND EBP,dword ptr [RBX + 0x4]
MOV RDX,qword ptr [R12]
MOV RCX,qword ptr [R12 + 0x8]
MOV dword ptr [RSP],EBP
LEA RSI,[RSP + 0x14... |
int1 [16] js_string_slice(int8 param_1)
{
int iVar1;
long lVar2;
int8 uVar3;
uint uVar4;
int8 *in_R8;
int1 auVar5 [16];
uint local_38;
uint local_34;
auVar5 = JS_ToStringCheckObject();
uVar3 = auVar5._8_8_;
lVar2 = auVar5._0_8_;
if (auVar5._8_4_ != 6) {
uVar4 = *(uint *)(lVar2 + 4) & 0... | |
21,093 | testing::internal::edit_distance::(anonymous namespace)::Hunk::~Hunk() | giladroyz[P]FindPeaks/build_O3/_deps/googletest-src/googletest/src/gtest.cc | Hunk(size_t left_start, size_t right_start)
: left_start_(left_start),
right_start_(right_start),
adds_(),
removes_(),
common_() {} | O3 | cpp | testing::internal::edit_distance::(anonymous namespace)::Hunk::~Hunk():
pushq %r15
pushq %r14
pushq %rbx
movq %rdi, %rbx
leaq 0x58(%rdi), %r14
movq 0x58(%rdi), %rdi
cmpq %r14, %rdi
je 0x1d97e
movq (%rdi), %r15
movl $0x20, %esi
callq 0x84e0
movq %r15, %rdi
cmpq %r14, %r15
jne 0x1d969
leaq 0x40(%rbx), %r14
movq 0x40(%rbx... | _ZN7testing8internal13edit_distance12_GLOBAL__N_14HunkD2Ev:
push r15
push r14
push rbx
mov rbx, rdi
lea r14, [rdi+58h]
mov rdi, [rdi+58h]; void *
cmp rdi, r14
jz short loc_1D97E
loc_1D969:
mov r15, [rdi]
mov esi, 20h ; ' '; unsigned __int64
call __ZdlPvm; operator delete(void *,... | void testing::internal::edit_distance::`anonymous namespace'::Hunk::~Hunk(
testing::internal::edit_distance::_anonymous_namespace_::Hunk *this)
{
char *v2; // r14
char *v3; // rdi
char *v4; // r15
testing::internal::edit_distance::_anonymous_namespace_::Hunk **v5; // rdi
testing::internal::edit_dista... | ~Hunk:
PUSH R15
PUSH R14
PUSH RBX
MOV RBX,RDI
LEA R14,[RDI + 0x58]
MOV RDI,qword ptr [RDI + 0x58]
CMP RDI,R14
JZ 0x0011d97e
LAB_0011d969:
MOV R15,qword ptr [RDI]
MOV ESI,0x20
CALL 0x001084e0
MOV RDI,R15
CMP R15,R14
JNZ 0x0011d969
LAB_0011d97e:
LEA R14,[RBX + 0x40]
MOV RDI,qword ptr [RBX + 0x40]
CMP RDI,R14
JZ 0x0011d9a... |
/* testing::internal::edit_distance::(anonymous namespace)::Hunk::~Hunk() */
void __thiscall testing::internal::edit_distance::(anonymous_namespace)::Hunk::~Hunk(Hunk *this)
{
Hunk *pHVar1;
Hunk *pHVar2;
pHVar2 = *(Hunk **)(this + 0x58);
while (pHVar2 != this + 0x58) {
pHVar1 = *(Hunk **)pHVar2;
o... | |
21,094 | ha_partition::read_par_file(char const*) | eloqsql/sql/ha_partition.cc | bool ha_partition::read_par_file(const char *name)
{
char buff[FN_REFLEN];
uchar *tot_name_len_offset;
File file;
uchar *file_buffer;
uint i, len_bytes, len_words, tot_partition_words, tot_name_words, chksum;
DBUG_ENTER("ha_partition::read_par_file");
DBUG_PRINT("enter", ("table name: '%s'", name));
if... | O0 | cpp | ha_partition::read_par_file(char const*):
pushq %rbp
movq %rsp, %rbp
subq $0x280, %rsp # imm = 0x280
movq %fs:0x28, %rax
movq %rax, -0x8(%rbp)
movq %rdi, -0x220(%rbp)
movq %rsi, -0x228(%rbp)
movq -0x220(%rbp), %rax
movq %rax, -0x278(%rbp)
jmp 0xedb0c6
movq -0x278(%rbp), %rax
cmpq $0x0, 0x4f0(%rax)
je 0xedb0e... | _ZN12ha_partition13read_par_fileEPKc:
push rbp
mov rbp, rsp
sub rsp, 280h
mov rax, fs:28h
mov [rbp+var_8], rax
mov [rbp+var_220], rdi
mov [rbp+var_228], rsi
mov rax, [rbp+var_220]
mov [rbp+var_278], rax
jmp short $+2
loc_EDB0C6:
mov rax, [rbp+var_278]
cmp qword ptr [rax+4F... | char ha_partition::read_par_file(ha_partition *this, const char *a2)
{
long long v2; // rax
long long *v3; // rax
long long v5; // [rsp+10h] [rbp-270h]
long long v6; // [rsp+20h] [rbp-260h]
int v7; // [rsp+28h] [rbp-258h]
unsigned int v8; // [rsp+30h] [rbp-250h]
unsigned int v9; // [rsp+34h] [rbp-24Ch]
... | create_func_sum:
PUSH RBP
MOV RBP,RSP
SUB RSP,0x60
MOV qword ptr [RBP + -0x10],RDI
MOV qword ptr [RBP + -0x18],RSI
MOV dword ptr [RBP + -0x1c],EDX
MOV RAX,qword ptr [RBP + -0x18]
MOV RDI,qword ptr [RAX]
MOV RAX,qword ptr [RDI]
CALL qword ptr [RAX + 0xb0]
LEA RCX,[0x1e01468]
CMP RAX,RCX
JZ 0x00edb0cc
MOV qword ptr [RBP ... |
/* create_func_sum(my_xpath_st*, Item**, unsigned int) */
Item_func_xpath_sum * create_func_sum(my_xpath_st *param_1,Item **param_2,uint param_3)
{
int1 *puVar1;
Item_func_xpath_sum *this;
Item_func_xpath_sum *local_58;
Item_func_xpath_sum *local_10;
puVar1 = (int1 *)(**(code **)(*(long *)*param_2 + 0xb... | |
21,095 | bfdec_mul_si | bluesky950520[P]quickjs/libbf.c | int bfdec_mul_si(bfdec_t *r, const bfdec_t *a, int64_t b1, limb_t prec,
bf_flags_t flags)
{
bfdec_t b;
int ret;
bfdec_init(r->ctx, &b);
ret = bfdec_set_si(&b, b1);
ret |= bfdec_mul(r, a, &b, prec, flags);
bfdec_delete(&b);
return ret;
} | O1 | c | bfdec_mul_si:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x28, %rsp
movl %r8d, %ebp
movq %rcx, %r14
movq %rsi, %r15
movq %rdi, %r12
movq (%rdi), %rax
movq %rsp, %r13
movq %rax, (%r13)
movl $0x0, 0x8(%r13)
movabsq $-0x8000000000000000, %rax # imm = 0x8000000000000000
movq %rax, 0x10(%r13)
xo... | bfdec_mul_si:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 28h
mov ebp, r8d
mov r14, rcx
mov r15, rsi
mov r12, rdi
mov rax, [rdi]
mov r13, rsp
mov [r13+0], rax
mov dword ptr [r13+8], 0
mov rax, 8000000000000000h
mov [r13+10h], rax
xorps x... | long long bfdec_mul_si(_QWORD **a1, long long a2, signed long long a3, long long a4, unsigned int a5)
{
int v7; // ebx
unsigned int v8; // ebp
_QWORD *v10; // [rsp+0h] [rbp-58h] BYREF
int v11; // [rsp+8h] [rbp-50h]
unsigned long long v12; // [rsp+10h] [rbp-48h]
__int128 v13; // [rsp+18h] [rbp-40h]
v10 =... | bfdec_mul_si:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x28
MOV EBP,R8D
MOV R14,RCX
MOV R15,RSI
MOV R12,RDI
MOV RAX,qword ptr [RDI]
MOV R13,RSP
MOV qword ptr [R13],RAX
MOV dword ptr [R13 + 0x8],0x0
MOV RAX,-0x8000000000000000
MOV qword ptr [R13 + 0x10],RAX
XORPS XMM0,XMM0
MOVUPS xmmword ptr [R13 + ... |
uint bfdec_mul_si(int8 *param_1,int8 param_2,int8 param_3,int8 param_4,
int4 param_5)
{
uint uVar1;
uint uVar2;
int8 *local_58;
int4 local_50;
int8 local_48;
int8 local_40;
long lStack_38;
local_58 = (int8 *)*param_1;
local_50 = 0;
local_48 = 0x8000000000000000;
local_40 = 0;... | |
21,096 | bfdec_mul_si | bluesky950520[P]quickjs/libbf.c | int bfdec_mul_si(bfdec_t *r, const bfdec_t *a, int64_t b1, limb_t prec,
bf_flags_t flags)
{
bfdec_t b;
int ret;
bfdec_init(r->ctx, &b);
ret = bfdec_set_si(&b, b1);
ret |= bfdec_mul(r, a, &b, prec, flags);
bfdec_delete(&b);
return ret;
} | O2 | c | bfdec_mul_si:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x28, %rsp
movl %r8d, %ebx
movq %rcx, %r14
movq %rsi, %r15
movq %rdi, %r12
movq (%rdi), %rax
movq %rsp, %r13
movq %rax, (%r13)
andl $0x0, 0x8(%r13)
movabsq $-0x8000000000000000, %rax # imm = 0x8000000000000000
movq %rax, 0x10(%r13)
xo... | bfdec_mul_si:
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 28h
mov ebx, r8d
mov r14, rcx
mov r15, rsi
mov r12, rdi
mov rax, [rdi]
mov r13, rsp
mov [r13+0], rax
and dword ptr [r13+8], 0
mov rax, 8000000000000000h
mov [r13+10h], rax
xorps x... | long long bfdec_mul_si(__int128 *a1, long long a2, signed long long a3, long long a4, unsigned int a5)
{
int v7; // ebp
unsigned int v8; // ebx
long long v10; // [rsp+0h] [rbp-58h] BYREF
int v11; // [rsp+8h] [rbp-50h]
unsigned long long v12; // [rsp+10h] [rbp-48h]
__int128 v13; // [rsp+18h] [rbp-40h]
v1... | bfdec_mul_si:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x28
MOV EBX,R8D
MOV R14,RCX
MOV R15,RSI
MOV R12,RDI
MOV RAX,qword ptr [RDI]
MOV R13,RSP
MOV qword ptr [R13],RAX
AND dword ptr [R13 + 0x8],0x0
MOV RAX,-0x8000000000000000
MOV qword ptr [R13 + 0x10],RAX
XORPS XMM0,XMM0
MOVUPS xmmword ptr [R13 + ... |
uint bfdec_mul_si(int8 *param_1,int8 param_2,int8 param_3,int8 param_4,
int4 param_5)
{
uint uVar1;
uint uVar2;
int8 local_58;
int4 local_50;
int8 local_48;
int8 local_40;
int8 uStack_38;
local_58 = *param_1;
local_50 = 0;
local_48 = 0x8000000000000000;
local_40 = 0;
uStack... | |
21,097 | PVG_FT_Stroker_ParseOutline | dmazzella[P]pylunasvg/lunasvg/plutovg/source/plutovg-ft-stroker.c | PVG_FT_Error PVG_FT_Stroker_ParseOutline(PVG_FT_Stroker stroker,
const PVG_FT_Outline* outline)
{
PVG_FT_Vector v_last;
PVG_FT_Vector v_control;
PVG_FT_Vector v_start;
PVG_FT_Vector* point;
PVG_FT_Vector* limit;
char* tags;
PVG_FT_Error... | O3 | c | PVG_FT_Stroker_ParseOutline:
testq %rsi, %rsi
sete %dl
testq %rdi, %rdi
sete %cl
movl $0xffffffff, %eax # imm = 0xFFFFFFFF
orb %dl, %cl
jne 0x3ec48
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
subq $0x78, %rsp
movq %rdi, %r14
xorl %eax, %eax
movl %eax, 0x70(%rdi)
movl $0xffffffff, %ecx ... | PVG_FT_Stroker_ParseOutline:
test rsi, rsi
setz dl
test rdi, rdi
setz cl
mov eax, 0FFFFFFFFh
or cl, dl
jnz locret_3EC48
push rbp
push r15
push r14
push r13
push r12
push rbx
sub rsp, 78h
mov r14, rdi
xor eax, eax
mov [rdi+70h], eax
mov ecx, 0FFFFFFFFh
mov ... | long long PVG_FT_Stroker_ParseOutline(const __m128i *a1, int *a2)
{
long long result; // rax
int v4; // r8d
long long v5; // r13
unsigned int v6; // ecx
long long v7; // rdi
long long v8; // rax
const __m128i *v9; // r15
const __m128i *v10; // r12
__m128i v11; // xmm0
long long v12; // rdx
char *... | PVG_FT_Stroker_ParseOutline:
TEST RSI,RSI
SETZ DL
TEST RDI,RDI
SETZ CL
MOV EAX,0xffffffff
OR CL,DL
JNZ 0x0013ec48
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
SUB RSP,0x78
MOV R14,RDI
XOR EAX,EAX
MOV dword ptr [RDI + 0x70],EAX
MOV ECX,0xffffffff
MOV dword ptr [RDI + 0x8c],ECX
MOV byte ptr [RDI + 0x90],AL
MOV d... |
int8 PVG_FT_Stroker_ParseOutline(int8 *param_1,int *param_2)
{
char cVar1;
long *plVar2;
long lVar3;
int8 uVar4;
long lVar5;
long *plVar6;
byte *pbVar7;
uint uVar8;
uint uVar9;
int iVar10;
long *plVar11;
long lVar12;
long *plVar13;
bool bVar14;
long lVar15;
ulong uVar16;
ulong uVar17... | |
21,098 | mp_mul_basecase_dec | bluesky950520[P]quickjs/libbf.c | void mp_mul_basecase_dec(limb_t *result,
const limb_t *op1, mp_size_t op1_size,
const limb_t *op2, mp_size_t op2_size)
{
mp_size_t i;
limb_t r;
result[op1_size] = mp_mul1_dec(result, op1, op1_size, op2[0], 0);
for(i=1;i<op2_size;i++) {
r = mp_a... | O2 | c | mp_mul_basecase_dec:
pushq %rbp
pushq %r15
pushq %r14
pushq %r13
pushq %r12
pushq %rbx
pushq %rax
movq %r8, %rbx
movq %rcx, %r14
movq %rdx, %r15
movq %rsi, %r12
movq %rdi, %r13
movq (%rcx), %rcx
xorl %r8d, %r8d
callq 0x763f6
movq %rax, (%r13,%r15,8)
addq $0x8, %r13
pushq $0x1
popq %rbp
cmpq %rbx, %rbp
jge 0x76679
movq ... | mp_mul_basecase_dec:
push rbp
push r15
push r14
push r13
push r12
push rbx
push rax
mov rbx, r8
mov r14, rcx
mov r15, rdx
mov r12, rsi
mov r13, rdi
mov rcx, [rcx]
xor r8d, r8d
call mp_mul1_dec
mov [r13+r15*8+0], rax
add r13, 8
push 1
pop rbp
loc_76654:
... | long long mp_mul_basecase_dec(long long a1, long long a2, long long a3, unsigned long long *a4, long long a5)
{
long long result; // rax
long long v9; // r13
long long i; // rbp
result = mp_mul1_dec(a1, a2, a3, *a4, 0LL);
*(_QWORD *)(a1 + 8 * a3) = result;
v9 = a1 + 8;
for ( i = 1LL; i < a5; ++i )
{
... | mp_mul_basecase_dec:
PUSH RBP
PUSH R15
PUSH R14
PUSH R13
PUSH R12
PUSH RBX
PUSH RAX
MOV RBX,R8
MOV R14,RCX
MOV R15,RDX
MOV R12,RSI
MOV R13,RDI
MOV RCX,qword ptr [RCX]
XOR R8D,R8D
CALL 0x001763f6
MOV qword ptr [R13 + R15*0x8],RAX
ADD R13,0x8
PUSH 0x1
POP RBP
LAB_00176654:
CMP RBP,RBX
JGE 0x00176679
MOV RCX,qword ptr [R1... |
void mp_mul_basecase_dec(long param_1,int8 param_2,long param_3,long param_4,long param_5)
{
int8 uVar1;
long lVar2;
uVar1 = mp_mul1_dec();
*(int8 *)(param_1 + param_3 * 8) = uVar1;
param_1 = param_1 + 8;
for (lVar2 = 1; lVar2 < param_5; lVar2 = lVar2 + 1) {
uVar1 = mp_add_mul1_dec(param_1,param_2,... | |
21,099 | dequantize_row_q4_0 | ngxson[P]ggml-easy/ggml/src/ggml-quants.c | void dequantize_row_q4_0(const block_q4_0 * GGML_RESTRICT x, float * GGML_RESTRICT y, int64_t k) {
static const int qk = QK4_0;
assert(k % qk == 0);
const int nb = k / qk;
for (int i = 0; i < nb; i++) {
const float d = GGML_FP16_TO_FP32(x[i].d);
for (int j = 0; j < qk/2; ++j) {
... | O1 | c | dequantize_row_q4_0:
leaq 0x1f(%rdx), %rax
testq %rdx, %rdx
cmovnsq %rdx, %rax
sarq $0x5, %rax
testl %eax, %eax
jle 0x2cb9a
andl $0x7fffffff, %eax # imm = 0x7FFFFFFF
leaq 0x2(%rdi), %rcx
addq $0x40, %rsi
xorl %edx, %edx
movq 0x3d48c(%rip), %r8 # 0x69fa8
pxor %xmm0, %xmm0
movdqa 0x21b88(%rip), %xmm1 # 0x4e... | dequantize_row_q4_0:
lea rax, [rdx+1Fh]
test rdx, rdx
cmovns rax, rdx
sar rax, 5
test eax, eax
jle locret_2CB9A
and eax, 7FFFFFFFh
lea rcx, [rdi+2]
add rsi, 40h ; '@'
xor edx, edx
mov r8, cs:ggml_table_f32_f16_ptr
pxor xmm0, xmm0
movdqa xmm1, cs:xmmword_4E6B0
movdqa xmm2, cs:... | long long dequantize_row_q4_0(long long a1, long long a2, long long a3)
{
long long result; // rax
long long v4; // rcx
long long v5; // rsi
long long v6; // rdx
__m128i si128; // xmm1
__m128i v8; // xmm2
__m128 v9; // xmm3
__m128 v10; // xmm3
long long i; // r9
__m128i v12; // xmm4
result = a3 ... | dequantize_row_q4_0:
LEA RAX,[RDX + 0x1f]
TEST RDX,RDX
CMOVNS RAX,RDX
SAR RAX,0x5
TEST EAX,EAX
JLE 0x0012cb9a
AND EAX,0x7fffffff
LEA RCX,[RDI + 0x2]
ADD RSI,0x40
XOR EDX,EDX
MOV R8,qword ptr [0x00169fa8]
PXOR XMM0,XMM0
MOVDQA XMM1,xmmword ptr [0x0014e6b0]
MOVDQA XMM2,xmmword ptr [0x0014e6c0]
LAB_0012cb30:
LEA R9,[RDX +... |
/* WARNING: Globals starting with '_' overlap smaller symbols at the same address */
void dequantize_row_q4_0(long param_1,long param_2,long param_3)
{
float *pfVar1;
float fVar2;
int4 uVar3;
int1 auVar4 [13];
int1 auVar5 [13];
int1 auVar6 [13];
ulong uVar7;
int1 auVar8 [13];
int1 auVar9 [16];
in... |
Subsets and Splits
C++ Functions With Standard Library Dependencies
Identifies C++ functions that depend on standard library components, revealing patterns in how developers utilize STL libraries and potentially highlighting common coding practices or dependencies in the dataset.
C++ Standard Library Function Analysis
Filters C++ code examples that use standard library containers and types, providing useful insights into common programming patterns and data structures in the dataset.
Random Training Function Samples
Performs basic filtering and random sampling of assembly code data without revealing meaningful patterns or relationships.
Random Training Function Samples
Retrieves a random sample of 1000 records from the training dataset, providing basic data exploration but offering limited analytical value beyond seeing raw entries.