/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl-no-opt/vert/ |
D | functions_nested.vert | 73 int first_byte = (vertex_id * desc.stride) + desc.starting_offset; 85 int _131 = first_byte; 86 first_byte = _131 + 1; 88 int _138 = first_byte; 89 first_byte = _138 + 1; 98 int _156 = first_byte; 99 first_byte = _156 + 1; 101 int _163 = first_byte; 102 first_byte = _163 + 1; 104 int _170 = first_byte; [all …]
|
/third_party/skia/third_party/externals/spirv-cross/shaders-msl-no-opt/vert/ |
D | functions_nested.vert | 44 int first_byte = (vertex_id * desc.stride) + desc.starting_offset; 53 tmp.x = texelFetch(input_stream, first_byte++).x; 54 tmp.y = texelFetch(input_stream, first_byte++).x; 59 tmp.x = texelFetch(input_stream, first_byte++).x; 60 tmp.y = texelFetch(input_stream, first_byte++).x; 61 tmp.z = texelFetch(input_stream, first_byte++).x; 62 tmp.w = texelFetch(input_stream, first_byte++).x; 67 result[n] = texelFetch(input_stream, first_byte++).x;
|
/third_party/gstreamer/gstplugins_bad/ext/dtls/ |
D | gstdtlssrtpdemux.c | 112 guint8 first_byte; in sink_chain() local 120 if (gst_buffer_extract (buffer, 0, &first_byte, 1) != 1) { in sink_chain() 126 if (PACKET_IS_DTLS (first_byte)) { in sink_chain() 132 if (PACKET_IS_RTP (first_byte)) { in sink_chain() 138 GST_WARNING_OBJECT (self, "received invalid buffer: %x", first_byte); in sink_chain()
|
/third_party/re2/re2/ |
D | dfa.cc | 257 first_byte(kFbUnknown), in SearchParams() 269 int first_byte; member 284 StartInfo() : start(NULL), first_byte(kFbUnknown) {} in StartInfo() 286 std::atomic<int> first_byte; member 1177 start_[i].first_byte.store(kFbUnknown, std::memory_order_relaxed); in ResetCache() 1378 if ((p = BytePtr(memchr(p, params->first_byte, ep - p))) == NULL) { in InlinedSearchLoop() 1383 if ((p = BytePtr(memrchr(ep, params->first_byte, p - ep))) == NULL) { in InlinedSearchLoop() 1589 params->first_byte >= 0, in SlowSearchLoop() 1610 bool have_first_byte = params->first_byte >= 0; in FastSearchLoop() 1706 DumpState(info->start).c_str(), info->first_byte.load()); in AnalyzeSearch() [all …]
|
D | bitstate.cc | 334 int fb = prog_->first_byte(); in Search()
|
D | prog.h | 222 int first_byte();
|
D | nfa.cc | 578 int fb = prog_->first_byte(); in Search()
|
/third_party/gstreamer/gstplugins_good/gst/rtp/ |
D | gstrtpklvdepay.c | 181 guint8 first_byte, len_len; in klv_get_vlen() local 186 first_byte = *data++; in klv_get_vlen() 188 if ((first_byte & 0x80) == 0) { in klv_get_vlen() 189 *v_len = first_byte & 0x7f; in klv_get_vlen() 194 len_len = first_byte & 0x7f; in klv_get_vlen()
|
/third_party/boost/libs/math/example/ |
D | inspect_fp.cpp | 23 unsigned char first_byte; in is_big_endian() local 24 memcpy(&first_byte, &x, 1); in is_big_endian() 25 return first_byte != 0; in is_big_endian()
|
/third_party/vk-gl-cts/android/cts/master/vk-master-2021-03-01/ |
D | conditional-rendering.txt | 37 dEQP-VK.conditional_rendering.dispatch.condition_size.primary.first_byte 42 dEQP-VK.conditional_rendering.dispatch.condition_size.inherited.first_byte 47 dEQP-VK.conditional_rendering.dispatch.condition_size.secondary.first_byte 52 dEQP-VK.conditional_rendering.dispatch.condition_size.secondary_inherited.first_byte
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | wrgif.c | 85 boolean first_byte; /* if TRUE, waiting_code is not valid */ member 198 dinfo->first_byte = TRUE; /* no waiting symbol yet */ in compress_init() 216 if (!dinfo->first_byte) in compress_term() 373 if (dest->first_byte) { /* need to initialize waiting_code */ in put_LZW_pixel_rows() 375 dest->first_byte = FALSE; in put_LZW_pixel_rows()
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecparsers/ |
D | nalutils.c | 77 nr->first_byte = 0xff; in nal_reader_init() 106 nr->cache = (nr->cache << 8) | nr->first_byte; in nal_reader_read() 107 nr->first_byte = byte; in nal_reader_read() 176 *val = nr->first_byte >> shift; \
|
D | nalutils.h | 53 guint8 first_byte; member
|
/third_party/protobuf/src/google/protobuf/io/ |
D | coded_stream.cc | 366 ::std::pair<bool, const uint8*> ReadVarint32FromArray(uint32 first_byte, 370 uint32 first_byte, const uint8* buffer, uint32* value) { in ReadVarint32FromArray() argument 373 GOOGLE_DCHECK_EQ(*buffer, first_byte); in ReadVarint32FromArray() 374 GOOGLE_DCHECK_EQ(first_byte & 0x80, 0x80) << first_byte; in ReadVarint32FromArray() 377 uint32 result = first_byte - 0x80; in ReadVarint32FromArray()
|
/third_party/node/src/ |
D | inspector_socket.cc | 249 unsigned char first_byte = *it++; in decode_frame_hybi17() local 252 bool final = (first_byte & kFinalBit) != 0; in decode_frame_hybi17() 253 bool reserved1 = (first_byte & kReserved1Bit) != 0; in decode_frame_hybi17() 254 bool reserved2 = (first_byte & kReserved2Bit) != 0; in decode_frame_hybi17() 255 bool reserved3 = (first_byte & kReserved3Bit) != 0; in decode_frame_hybi17() 256 int op_code = first_byte & kOpCodeMask; in decode_frame_hybi17()
|
D | node_http2.h | 455 uint64_t first_byte; // Time first DATA frame byte was received member 990 first_byte_(stats.first_byte), in Http2StreamPerformanceEntry() 998 uint64_t first_byte() const { return first_byte_; } in first_byte() function
|
/third_party/jerryscript/jerry-core/lit/ |
D | lit-strings.c | 647 lit_get_unicode_char_size_by_utf8_first_byte (const lit_utf8_byte_t first_byte) /**< buffer with ch… in lit_get_unicode_char_size_by_utf8_first_byte() argument 649 if ((first_byte & LIT_UTF8_1_BYTE_MASK) == LIT_UTF8_1_BYTE_MARKER) in lit_get_unicode_char_size_by_utf8_first_byte() 653 else if ((first_byte & LIT_UTF8_2_BYTE_MASK) == LIT_UTF8_2_BYTE_MARKER) in lit_get_unicode_char_size_by_utf8_first_byte() 659 JERRY_ASSERT ((first_byte & LIT_UTF8_3_BYTE_MASK) == LIT_UTF8_3_BYTE_MARKER); in lit_get_unicode_char_size_by_utf8_first_byte()
|
D | lit-strings.h | 110 lit_utf8_size_t lit_get_unicode_char_size_by_utf8_first_byte (const lit_utf8_byte_t first_byte);
|
/third_party/flutter/skia/third_party/externals/wuffs/std/lzw/ |
D | decode_lzw.wuffs | 141 var first_byte base.u8 269 first_byte = this.suffixes[c][0] 272 this.output[output_wi] = first_byte 283 this.suffixes[save_code][lm1_b % 8] = first_byte 286 this.suffixes[save_code][0] = first_byte as base.u8
|
/third_party/jerryscript/jerry-core/parser/js/ |
D | js-parser.c | 1055 uint8_t *first_byte = page_p->bytes + offset; in parser_post_processing() local 1056 uint32_t literal_index = *first_byte; in parser_post_processing() 1074 *first_byte = (uint8_t) literal_index; in parser_post_processing() 1081 *first_byte = CBC_MAXIMUM_BYTE_VALUE; in parser_post_processing() 1088 *first_byte = (uint8_t) ((literal_index >> 8) | CBC_HIGHEST_BIT_MASK); in parser_post_processing() 1446 uint16_t first_byte = page_p->bytes[offset]; in parser_post_processing() local 1449 *dst_p++ = (uint8_t) first_byte; in parser_post_processing() 1453 if (first_byte > literal_one_byte_limit) in parser_post_processing() 1457 if (first_byte > encoding_limit) in parser_post_processing() 1459 first_byte = (uint16_t) (((first_byte << 8) | dst_p[-1]) - encoding_delta); in parser_post_processing() [all …]
|
D | js-parser-util.c | 43 uint8_t first_byte, /**< first byte */ in parser_emit_two_bytes() argument 52 page_p->bytes[last_position] = first_byte; in parser_emit_two_bytes() 62 page_p->bytes[0] = first_byte; in parser_emit_two_bytes() 68 context_p->byte_code.last_p->bytes[PARSER_CBC_STREAM_PAGE_SIZE - 1] = first_byte; in parser_emit_two_bytes()
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/testlists/vk-default/ |
D | conditional-rendering.txt | 154 dEQP-VK.conditional_rendering.dispatch.condition_size.primary.first_byte 159 dEQP-VK.conditional_rendering.dispatch.condition_size.inherited.first_byte 164 dEQP-VK.conditional_rendering.dispatch.condition_size.secondary.first_byte 169 dEQP-VK.conditional_rendering.dispatch.condition_size.secondary_inherited.first_byte
|
/third_party/vk-gl-cts/external/vulkancts/mustpass/master/vk-default/ |
D | conditional-rendering.txt | 154 dEQP-VK.conditional_rendering.dispatch.condition_size.primary.first_byte 159 dEQP-VK.conditional_rendering.dispatch.condition_size.inherited.first_byte 164 dEQP-VK.conditional_rendering.dispatch.condition_size.secondary.first_byte 169 dEQP-VK.conditional_rendering.dispatch.condition_size.secondary_inherited.first_byte
|
/third_party/vk-gl-cts/android/cts/master/vk-master/ |
D | conditional-rendering.txt | 154 dEQP-VK.conditional_rendering.dispatch.condition_size.primary.first_byte 159 dEQP-VK.conditional_rendering.dispatch.condition_size.inherited.first_byte 164 dEQP-VK.conditional_rendering.dispatch.condition_size.secondary.first_byte 169 dEQP-VK.conditional_rendering.dispatch.condition_size.secondary_inherited.first_byte
|
/third_party/mesa3d/src/broadcom/cle/ |
D | gen_pack_header.py | 214 first_byte = field.start // 8 217 for b in range(first_byte, last_byte + 1):
|