Home
last modified time | relevance | path

Searched refs:bit_pattern (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dset_spec_constant_default_value_pass.cpp270 std::vector<uint32_t> bit_pattern; in Process() local
282 bit_pattern = ParseDefaultValueStr( in Process()
294 bit_pattern = ParseDefaultValueBitPattern( in Process()
299 if (bit_pattern.empty()) continue; in Process()
308 .words != bit_pattern) { in Process()
310 std::move(bit_pattern)); in Process()
317 if (!static_cast<bool>(bit_pattern.front())) { in Process()
325 if (static_cast<bool>(bit_pattern.front())) { in Process()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dset_spec_constant_default_value_pass.cpp270 std::vector<uint32_t> bit_pattern; in Process() local
282 bit_pattern = ParseDefaultValueStr( in Process()
294 bit_pattern = ParseDefaultValueBitPattern( in Process()
299 if (bit_pattern.empty()) continue; in Process()
308 .words != bit_pattern) { in Process()
310 std::move(bit_pattern)); in Process()
317 if (!static_cast<bool>(bit_pattern.front())) { in Process()
325 if (static_cast<bool>(bit_pattern.front())) { in Process()
/third_party/spirv-tools/source/opt/
Dset_spec_constant_default_value_pass.cpp270 std::vector<uint32_t> bit_pattern; in Process() local
282 bit_pattern = ParseDefaultValueStr( in Process()
294 bit_pattern = ParseDefaultValueBitPattern( in Process()
299 if (bit_pattern.empty()) continue; in Process()
308 .words != bit_pattern) { in Process()
310 std::move(bit_pattern)); in Process()
317 if (!static_cast<bool>(bit_pattern.front())) { in Process()
325 if (static_cast<bool>(bit_pattern.front())) { in Process()
/third_party/node/deps/v8/src/utils/
Dboxed-float.h50 explicit constexpr Float32(uint32_t bit_pattern) in Float32() argument
51 : bit_pattern_(bit_pattern) {} in Float32()
89 explicit constexpr Float64(uint64_t bit_pattern) in Float64() argument
90 : bit_pattern_(bit_pattern) {} in Float64()
/third_party/astc-encoder/Source/
Dastcenc_partition_tables.cpp38 uint64_t bit_pattern[7] in generate_canonical_partitioning()
43 bit_pattern[i] = 0; in generate_canonical_partitioning()
66 bit_pattern[i >> 5] |= xlat_index << (2 * (i & 0x1F)); in generate_canonical_partitioning()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtp/
Dgstrtpbuffer.c1370 guint16 bit_pattern, guint8 id, guint nth, gpointer * data, guint * size) in _get_extension_onebyte_header() argument
1377 if (bit_pattern != 0xBEDE) in _get_extension_onebyte_header()
1446 guint16 bit_pattern, guint8 id, guint nth, gpointer * data, guint * size) in gst_rtp_buffer_get_extension_onebyte_header_from_bytes() argument
1450 return _get_extension_onebyte_header (pdata, len, bit_pattern, id, nth, data, in gst_rtp_buffer_get_extension_onebyte_header_from_bytes()
1474 guint16 bit_pattern; in gst_rtp_buffer_get_extension_onebyte_header() local
1478 if (!gst_rtp_buffer_get_extension_data (rtp, &bit_pattern, (gpointer) & pdata, in gst_rtp_buffer_get_extension_onebyte_header()
1482 return _get_extension_onebyte_header (pdata, wordlen * 4, bit_pattern, id, in gst_rtp_buffer_get_extension_onebyte_header()
Dgstrtpbasedepayload.c1147 guint16 bit_pattern; in read_rtp_header_extensions() local
1162 if (gst_rtp_buffer_get_extension_data (&rtp, &bit_pattern, (gpointer) & pdata, in read_rtp_header_extensions()
1169 if (bit_pattern == 0xBEDE) { in read_rtp_header_extensions()
1173 } else if (bit_pattern >> 4 == 0x100) { in read_rtp_header_extensions()
1179 bit_pattern >> 8, bit_pattern & 0xff); in read_rtp_header_extensions()
Dgstrtpbuffer.h236 guint16 bit_pattern,
Dgstrtpbasepayload.c1734 guint16 bit_pattern; in set_headers() local
1750 bit_pattern = 0xBEDE; in set_headers()
1753 bit_pattern = 0x1000; in set_headers()
1765 gst_rtp_buffer_set_extension_data (&rtp, bit_pattern, wordlen); in set_headers()
1782 gst_rtp_buffer_set_extension_data (&rtp, bit_pattern, wordlen); in set_headers()
/third_party/node/deps/v8/src/codegen/arm64/
Dmacro-assembler-arm64-inl.h1384 const uint64_t bit_pattern, in TestAndBranchIfAnySet() argument
1387 DCHECK_GT(CountSetBits(bit_pattern, bits), 0); in TestAndBranchIfAnySet()
1388 if (CountSetBits(bit_pattern, bits) == 1) { in TestAndBranchIfAnySet()
1389 Tbnz(reg, MaskToBit(bit_pattern), label); in TestAndBranchIfAnySet()
1391 Tst(reg, bit_pattern); in TestAndBranchIfAnySet()
1397 const uint64_t bit_pattern, in TestAndBranchIfAllClear() argument
1400 DCHECK_GT(CountSetBits(bit_pattern, bits), 0); in TestAndBranchIfAllClear()
1401 if (CountSetBits(bit_pattern, bits) == 1) { in TestAndBranchIfAllClear()
1402 Tbz(reg, MaskToBit(bit_pattern), label); in TestAndBranchIfAllClear()
1404 Tst(reg, bit_pattern); in TestAndBranchIfAllClear()
Dmacro-assembler-arm64.h905 const uint64_t bit_pattern, Label* label);
910 const uint64_t bit_pattern, Label* label);