Home
last modified time | relevance | path

Searched refs:byte_index (Results 1 – 14 of 14) sorted by relevance

/external/swiftshader/third_party/SPIRV-Tools/test/
Dunit_spirv.h143 for (size_t byte_index = 0; byte_index <= num_bytes; byte_index++) { in MakeVector() local
145 (byte_index < num_bytes ? uint8_t(input[byte_index]) : uint8_t(0)); in MakeVector()
146 word |= (new_byte << (8 * (byte_index % sizeof(uint32_t)))); in MakeVector()
147 if (3 == (byte_index % sizeof(uint32_t))) { in MakeVector()
/external/deqp-deps/SPIRV-Tools/test/
Dunit_spirv.h143 for (size_t byte_index = 0; byte_index <= num_bytes; byte_index++) { in MakeVector() local
145 (byte_index < num_bytes ? uint8_t(input[byte_index]) : uint8_t(0)); in MakeVector()
146 word |= (new_byte << (8 * (byte_index % sizeof(uint32_t)))); in MakeVector()
147 if (3 == (byte_index % sizeof(uint32_t))) { in MakeVector()
/external/libchrome/mojo/public/cpp/system/
Ddata_pipe_utils.cc75 uint32_t byte_index = 0; in BlockingCopyFromString() local
76 while (it != source.end() && byte_index < buffer_num_bytes) { in BlockingCopyFromString()
77 char_buffer[byte_index++] = *it++; in BlockingCopyFromString()
79 destination->EndWriteData(byte_index); in BlockingCopyFromString()
/external/webrtc/webrtc/libjingle/xmllite/
Dxmlparser.cc235 long byte_index) { in SetPosition() argument
238 byte_index_ = byte_index; in SetPosition()
244 unsigned long * byte_index) { in GetPosition() argument
253 if (byte_index != NULL) { in GetPosition()
254 *byte_index = static_cast<unsigned long>(byte_index_); in GetPosition()
Dxmlparser.h38 unsigned long * byte_index) = 0;
78 unsigned long * byte_index);
85 void SetPosition(int line, int column, long byte_index);
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Dllvm.amdgcn.ds.bpermute.ll35 %byte_index = shl i32 %index, 2
36 %bpermute = call i32 @llvm.amdgcn.ds.bpermute(i32 %byte_index, i32 %src) #0
47 %byte_index = shl i32 %index, 2
48 %bpermute = call i32 @llvm.amdgcn.ds.bpermute(i32 %byte_index, i32 %src) #0
/external/v8/src/
Dsafepoint-table.cc32 int byte_index = reg_index >> kBitsPerByteLog2; in HasRegisterAt() local
34 return (bits_[byte_index] & (1 << bit_index)) != 0; in HasRegisterAt()
213 int byte_index = index >> kBitsPerByteLog2; in Emit() local
215 bits[byte_index] |= (1 << bit_index); in Emit()
222 int byte_index = index >> kBitsPerByteLog2; in Emit() local
224 bits[byte_index] |= (1U << bit_index); in Emit()
Dframes.cc948 int byte_index = index >> kBitsPerByteLog2; in IterateCompiledFrame() local
950 if ((safepoint_bits[byte_index] & (1U << bit_index)) != 0) { in IterateCompiledFrame()
/external/v8/src/wasm/
Ddecoder.h312 TraceFlag trace, int byte_index>
317 static_assert(byte_index < kMaxLength, "invalid template instantiation"); in read_leb_tail()
318 constexpr int shift = byte_index * 7; in read_leb_tail()
319 constexpr bool is_last_byte = byte_index == kMaxLength - 1; in read_leb_tail()
333 constexpr int next_byte_index = byte_index + (is_last_byte ? 0 : 1); in read_leb_tail()
338 *length = byte_index + (at_end ? 0 : 1); in read_leb_tail()
/external/mesa3d/src/gallium/drivers/radeon/
Dradeon_vcn_enc_1_2.c77 if (enc->byte_index == 0) in radeon_enc_output_one_byte()
79 …s->current.buf[enc->cs->current.cdw] |= ((unsigned int)(byte) << index_to_shifts[enc->byte_index]); in radeon_enc_output_one_byte()
80 enc->byte_index++; in radeon_enc_output_one_byte()
82 if (enc->byte_index >= 4) { in radeon_enc_output_one_byte()
83 enc->byte_index = 0; in radeon_enc_output_one_byte()
133 enc->byte_index = 0; in radeon_enc_reset()
156 if (enc->byte_index > 0) { in radeon_enc_flush_headers()
158 enc->byte_index = 0; in radeon_enc_flush_headers()
Dradeon_vcn_enc.h403 unsigned byte_index; member
/external/mesa3d/src/mesa/main/
Dtexcompress_bptc.c324 int byte_index = offset / 8; in extract_bits() local
331 result |= ((block[byte_index] >> bit_index) & in extract_bits()
340 byte_index++; in extract_bits()
/external/u-boot/drivers/ddr/marvell/a38x/
Dddr3_debug.c1269 u32 byte_index) in ddr3_tip_compare() argument
1275 (byte_index == in ddr3_tip_compare()
1276 0xff) ? (u32) 0xffffffff : (u32) (0xff << (byte_index * 8)); in ddr3_tip_compare()
/external/google-breakpad/src/processor/
Dminidump.cc1354 for (unsigned int byte_index = 0; in Print() local
1355 byte_index < descriptor_->memory.data_size; in Print()
1356 byte_index++) { in Print()
1357 printf("%02x", memory[byte_index]); in Print()