/third_party/ffmpeg/libavcodec/arm/ |
H A D | vp8_armv6.S | 244 .byte 0, 2, 8, 16 245 .byte 10, 4, 6, 12 246 .byte 18, 24, 26, 20 247 .byte 14, 22, 28, 30
|
H A D | cabac.h | 61 "ldr %[r_c] , [%[c], %[byte]] \n\t" in get_cabac_inline_arm() 65 "str %[r_c] , [%[c], %[byte]] \n\t" in get_cabac_inline_arm() 72 "strlt %[r_c] , [%[c], %[byte]] \n\t" in get_cabac_inline_arm() 96 [byte]"M"(offsetof(CABACContext, bytestream)), in get_cabac_inline_arm()
|
/third_party/ffmpeg/libavcodec/aarch64/ |
H A D | mpegaudiodsp_neon.S | 28 .byte 12, 13, 14, 15 29 .byte 8, 9, 10, 11 30 .byte 4, 5, 6, 7 31 .byte 0, 1, 2, 3
|
H A D | cabac.h | 60 "ldr %[r_c] , [%[c], %[byte]] \n\t" in get_cabac_inline_aarch64() 66 "str %[r_a] , [%[c], %[byte]] \n\t" in get_cabac_inline_aarch64() 91 [byte]"i"(offsetof(CABACContext, bytestream)), in get_cabac_inline_aarch64()
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | hevc_sao_10bit.asm | 214 movsx a_strideq, byte [tmp2q+eoq*4+1] 215 movsx b_strideq, byte [tmp2q+eoq*4+3] 218 movsx tmpq, byte [tmp2q+eoq*4] 220 movsx tmpq, byte [tmp2q+eoq*4+2]
|
H A D | hevc_sao.asm | 213 movsx a_strideq, byte [tmp2q+eoq*4+1] 214 movsx b_strideq, byte [tmp2q+eoq*4+3] 217 movsx tmpq, byte [tmp2q+eoq*4] 219 movsx tmpq, byte [tmp2q+eoq*4+2]
|
/third_party/ffmpeg/libavfilter/ |
H A D | vsrc_cellauto.c | 273 uint8_t byte = 0; in fill_picture() local 277 byte |= row[j]<<(7-k++); in fill_picture() 280 *p++ = byte; in fill_picture() 281 byte = 0; in fill_picture()
|
/third_party/ffmpeg/libavformat/ |
H A D | av1dec.c | 129 uint8_t byte; in leb() local 133 byte = avio_r8(pb); in leb() 134 more = byte & 0x80; in leb() 135 bits = byte & 0x7f; in leb()
|
/third_party/libunwind/libunwind/src/arm/ |
H A D | Gex_tables.c | 225 uint8_t byte, shift = 0; in arm_exidx_decode() local 228 byte = READ_OP (); in arm_exidx_decode() 229 offset |= (byte & 0x7f) << shift; in arm_exidx_decode() 232 while (byte & 0x80); in arm_exidx_decode()
|
/third_party/libunwind/libunwind/src/ia64/ |
H A D | unwind_decoder.h | 91 unw_word byte, result = 0; in unw_decode_uleb128() local 96 byte = *bp++; in unw_decode_uleb128() 97 result |= (byte & 0x7f) << shift; in unw_decode_uleb128() 98 if ((byte & 0x80) == 0) in unw_decode_uleb128()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-global.c | 393 * Helper function to encode byte as hexadecimal values. 397 uint32_t byte) /**< value */ in ecma_builtin_global_object_byte_to_hex() 399 JERRY_ASSERT (byte < 256); in ecma_builtin_global_object_byte_to_hex() 402 ecma_char_t hex_digit = (ecma_char_t) (byte >> 4); in ecma_builtin_global_object_byte_to_hex() 404 hex_digit = (lit_utf8_byte_t) (byte & 0xf); in ecma_builtin_global_object_byte_to_hex() 555 * Maximum value of a byte. 702 * The %xx is three byte long, and the maximum encoded value is 0xff, in ecma_builtin_global_object_unescape() 703 * which maximum encoded length is two byte. Similar to this, the maximum in ecma_builtin_global_object_unescape() 704 * encoded length of %uxxxx is four byte. */ in ecma_builtin_global_object_unescape() 396 ecma_builtin_global_object_byte_to_hex(lit_utf8_byte_t *dest_p, uint32_t byte) ecma_builtin_global_object_byte_to_hex() argument
|
/third_party/jerryscript/jerry-core/parser/regexp/ |
H A D | re-bytecode.c | 79 * Append a byte 83 const uint8_t byte) /**< byte value */ in re_append_byte() 86 *dest_p = byte; in re_append_byte() 90 * Insert a byte value 95 const uint8_t byte) /**< byte value */ in re_insert_byte() 98 *dest_p = byte; in re_insert_byte() 102 * Get a single byte and icnrease bytecode position. 143 * Encode 2 byte unsigne 82 re_append_byte(re_compiler_ctx_t *re_ctx_p, const uint8_t byte) re_append_byte() argument 93 re_insert_byte(re_compiler_ctx_t *re_ctx_p, const uint32_t offset, const uint8_t byte) re_insert_byte() argument [all...] |
/third_party/ntfs-3g/libntfs-3g/ |
H A D | lcnalloc.c | 244 u8 *buf, *byte, bit, writeback; in ntfs_cluster_alloc() local 339 byte = buf + (lcn >> 3); in ntfs_cluster_alloc() 342 if (*byte & bit) { in ntfs_cluster_alloc() 369 *byte |= bit; in ntfs_cluster_alloc()
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-bytecode-generator.cc | 322 int byte = 0; in CheckBitInTable() local 324 if (table->get(i + j) != 0) byte |= 1 << j; in CheckBitInTable() 326 Emit8(byte); in CheckBitInTable() 396 void RegExpBytecodeGenerator::Copy(byte* a) { in Copy()
|
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/span/ |
H A D | span.go | 121 func (s *Span) MarshalJSON() ([]byte, error) { return json.Marshal(&s.v) } 122 func (s *Span) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &s.v) } 127 func (p *Point) MarshalJSON() ([]byte, error) { return json.Marshal(&p.v) } 128 func (p *Point) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &p.v) }
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/ |
H A D | span.go | 121 func (s *Span) MarshalJSON() ([]byte, error) { return json.Marshal(&s.v) } 122 func (s *Span) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &s.v) } 127 func (p *Point) MarshalJSON() ([]byte, error) { return json.Marshal(&p.v) } 128 func (p *Point) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &p.v) }
|
/third_party/protobuf/js/experimental/runtime/kernel/ |
H A D | writer.js | 348 const byte = (hasNext ? shift | 0x80 : shift) & 0xFF; 349 this.currentBuffer_.push(byte); 367 const byte = (hasNext ? shift | 0x80 : shift) & 0xFF; 368 this.currentBuffer_.push(byte);
|
/third_party/spirv-tools/utils/vscode/src/lsp/span/ |
H A D | span.go | 121 func (s *Span) MarshalJSON() ([]byte, error) { return json.Marshal(&s.v) } 122 func (s *Span) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &s.v) } 127 func (p *Point) MarshalJSON() ([]byte, error) { return json.Marshal(&p.v) } 128 func (p *Point) UnmarshalJSON(b []byte) error { return json.Unmarshal(b, &p.v) }
|
/foundation/ability/ability_base/interfaces/inner_api/base/include/ |
H A D | base_types.h | 24 using byte = char;
|
/kernel/linux/linux-5.10/drivers/staging/comedi/drivers/ |
H A D | ni_labpc.h | 48 unsigned int byte, unsigned long reg);
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | cfi_types.h | 20 .4byte __kcfi_typeid_##name
|
/kernel/linux/linux-6.6/drivers/comedi/drivers/ |
H A D | ni_labpc.h | 48 unsigned int byte, unsigned long reg);
|
/third_party/libexif/libexif/apple/ |
H A D | exif-mnote-data-apple.h | 24 #include <libexif/exif-byte-order.h>
|
/third_party/libexif/libexif/pentax/ |
H A D | exif-mnote-data-pentax.h | 24 #include <libexif/exif-byte-order.h>
|
/third_party/libexif/libexif/olympus/ |
H A D | exif-mnote-data-olympus.h | 26 #include <libexif/exif-byte-order.h>
|