HomeSort by relevance Sort by last modified time
    Searched refs:kWordSize (Results 1 - 11 of 11) sorted by null

  /frameworks/compile/libbcc/bcinfo/Wrap/
bitcode_wrapperer.cpp 29 static const uint32_t kWordSize = 4;
77 wrapper_bc_offset_ = kWordSize * kFixedFields;
107 if (GetBufferUnreadBytes() < kWordSize) {
109 return GetBufferUnreadBytes() >= kWordSize;
163 cursor_ += kWordSize;
168 uint8_t buffer[kWordSize];
173 return outfile_->Write(buffer, kWordSize);
203 int field_data_total = wrapper_bc_offset_ - kWordSize * kFixedFields;
267 if (GetBufferUnreadBytes() < kLLVMFields * kWordSize) {
269 if (GetBufferUnreadBytes() < kLLVMFields * kWordSize) return false
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceAssembler.h 64 return -Position - kWordSize;
74 return Position - kWordSize;
86 Position = -position - kWordSize;
96 static constexpr uint32_t kWordSize = sizeof(uint32_t);
IceAssembler.cpp 45 Position = Pos + kWordSize;
IceAssemblerARM32.cpp 33 static constexpr IValueT kWordSize = sizeof(WordType);
    [all...]
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 39 uptr size_in_words = RoundUpTo(size_in_bytes, kWordSize) / kWordSize;
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 70 uptr size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize;
  /external/swiftshader/third_party/subzero/src/DartARM32/
assembler_arm.cc 523 ldr(rd2, Address(rn, offset + kWordSize), cond);
535 str(rd2, Address(rn, offset + kWordSize), cond);
    [all...]
assembler_arm.h 87 return IsBound() ? -position_ - kWordSize : position_ - kWordSize;
103 position_ = -position - kWordSize;
109 position_ = position + kWordSize;
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 36 const uptr kWordSize = SANITIZER_WORDSIZE / 8;
37 const uptr kWordSizeInBits = 8 * kWordSize;
  /external/v8/src/arm64/
constants-arm64.h 105 const unsigned kWordSize = 32;
107 const unsigned kWordSizeInBytes = kWordSize >> 3;
    [all...]
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 915 SIZE_T size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize;
    [all...]

Completed in 292 milliseconds