Searched refs:r_length (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/ |
D | MachO_x86_64.cpp | 37 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 …]
|
D | MachO_arm64.cpp | 38 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/ |
D | MachORelocation.h | 28 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/ |
D | mqtt.c | 495 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/libabigail/src/ |
D | abg-tools-utils.cc | 600 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/ |
D | MachO.h | 952 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/ |
D | MachO.h | 918 r_length:2, member 927 r_length:2, member 933 r_length:2,
|