Home
last modified time | relevance | path

Searched refs:r_length (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DMachO_x86_64.cpp37 if (RI.r_length == 3) in getRelocationKind()
39 else if (RI.r_extern && RI.r_length == 2) in getRelocationKind()
44 if (RI.r_pcrel && RI.r_length == 2) in getRelocationKind()
48 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
52 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
56 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
64 if (RI.r_length == 2) in getRelocationKind()
66 else if (RI.r_length == 3) in getRelocationKind()
71 if (RI.r_pcrel && RI.r_length == 2) in getRelocationKind()
75 if (RI.r_pcrel && RI.r_length == 2) in getRelocationKind()
[all …]
DMachO_arm64.cpp38 if (RI.r_length == 3) in getRelocationKind()
40 else if (RI.r_length == 2) in getRelocationKind()
49 if (RI.r_length == 2) in getRelocationKind()
51 else if (RI.r_length == 3) in getRelocationKind()
56 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
60 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
64 if (!RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
68 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
72 if (!RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
76 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachORelocation.h28 uint8_t r_length; // length = 2 ^ r_length variable
37 return (1 << 31) | (r_pcrel << 30) | ((r_length & 3) << 28) | in getPackedFields()
40 return (r_symbolnum << 8) | (r_pcrel << 7) | ((r_length & 3) << 5) | in getPackedFields()
49 r_address(addr), r_symbolnum(index), r_pcrel(pcrel), r_length(len), in r_address()
/third_party/lwip/src/apps/mqtt/
Dmqtt.c495 u8_t fqos, u8_t fretain, u16_t r_length) in mqtt_output_append_fixed_header() argument
501 mqtt_output_append_u8(rb, (r_length & 0x7f) | (r_length >= 128 ? 0x80 : 0)); in mqtt_output_append_fixed_header()
502 r_length >>= 7; in mqtt_output_append_fixed_header()
503 } while (r_length > 0); in mqtt_output_append_fixed_header()
514 mqtt_output_check_space(struct mqtt_ringbuf_t *rb, u16_t r_length) in mqtt_output_check_space() argument
517 u16_t total_len = 1 + r_length; in mqtt_output_check_space()
524 r_length >>= 7; in mqtt_output_check_space()
525 } while (r_length > 0); in mqtt_output_check_space()
/third_party/node/deps/v8/tools/
Dwindbg.js208 let r_length = r.length;
210 let length = Math.min(l_length, r_length) - 2; // to account for "0x"
212 res = (parseInt(l[l_length - i], 16) & parseInt(r[r_length - i], 16))
/third_party/libabigail/src/
Dabg-tools-utils.cc600 const string::size_type l_length = l.length(), r_length = r.length(); in decl_names_equal() local
602 while (l_pos1 < l_length && r_pos1 < r_length) in decl_names_equal()
609 r_pos2 = r_length; in decl_names_equal()
634 r_pos1 = r_pos2 == r_length ? r_pos2 : r_pos2 + 2; in decl_names_equal()
637 return (l_pos1 == l_length) == (r_pos1 == r_length); in decl_names_equal()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DMachO.h952 uint32_t r_type : 4, r_extern : 1, r_length : 2, r_pcrel : 1, member
955 uint32_t r_symbolnum : 24, r_pcrel : 1, r_length : 2, r_extern : 1, member
962 uint32_t r_scattered : 1, r_pcrel : 1, r_length : 2, r_type : 4, member
965 uint32_t r_address : 24, r_type : 4, r_length : 2, r_pcrel : 1,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DMachO.h918 r_length:2, member
927 r_length:2, member
933 r_length:2,