/kernel/linux/linux-5.10/arch/alpha/lib/ |
H A D | memchr.S | 24 - does binary search to find 0 byte in last 46 # below when we find the address of the last byte. Given 85 # Now, determine which byte matched: 114 # At least one byte left to process.
|
/kernel/linux/linux-6.6/arch/alpha/lib/ |
H A D | memchr.S | 24 - does binary search to find 0 byte in last 46 # below when we find the address of the last byte. Given 85 # Now, determine which byte matched: 114 # At least one byte left to process.
|
/kernel/linux/linux-5.10/drivers/platform/chrome/wilco_ec/ |
H A D | debugfs.c | 32 * parse_hex_sentence() - Convert a ascii hex representation into byte array. 53 /* Temp buffer for holding a "word" of chars that represents one byte */ in parse_hex_sentence() 56 u8 byte; in parse_hex_sentence() local 83 if (kstrtou8(tmp, 16, &byte)) in parse_hex_sentence() 85 out[n_parsed++] = byte; in parse_hex_sentence() 115 /* Need at least two bytes for message type and one byte of data */ in raw_write()
|
/kernel/linux/linux-6.6/drivers/platform/chrome/wilco_ec/ |
H A D | debugfs.c | 32 * parse_hex_sentence() - Convert a ascii hex representation into byte array. 53 /* Temp buffer for holding a "word" of chars that represents one byte */ in parse_hex_sentence() 56 u8 byte; in parse_hex_sentence() local 83 if (kstrtou8(tmp, 16, &byte)) in parse_hex_sentence() 85 out[n_parsed++] = byte; in parse_hex_sentence() 115 /* Need at least two bytes for message type and one byte of data */ in raw_write()
|
/kernel/linux/linux-6.6/drivers/hwmon/ |
H A D | sbrmi.c | 102 u8 byte; in rmi_mailbox_xfer() local 124 byte = (msg->data_in >> i * 8) & 0xff; in rmi_mailbox_xfer() 126 SBRMI_INBNDMSG1 + i, byte); in rmi_mailbox_xfer()
|
/third_party/icu/icu4c/source/common/ |
H A D | ucnvmbcs.h | 80 * a UTF-8 trail byte. ASCII is allocated linearly with 128 contiguous entries. 85 * UTF-8 lead byte and middle trail byte. Unlike the older MBCS stage 2 table, 101 * U+0FFF covers UTF-8 two-byte sequences and three-byte sequences starting with 216 * -- stage 3 tables with byte results 218 * -- SBCS: each 16-bit result contains flags and the result byte, see ucnvmbcs.c 298 /* single-byte fromUnicode: get the 16-bit result word */ 301 /* single-byte fromUnicode using the sbcsIndex */ 304 /* single-byte fromUTF [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | ucnvmbcs.h | 80 * a UTF-8 trail byte. ASCII is allocated linearly with 128 contiguous entries. 85 * UTF-8 lead byte and middle trail byte. Unlike the older MBCS stage 2 table, 101 * U+0FFF covers UTF-8 two-byte sequences and three-byte sequences starting with 216 * -- stage 3 tables with byte results 218 * -- SBCS: each 16-bit result contains flags and the result byte, see ucnvmbcs.c 298 /* single-byte fromUnicode: get the 16-bit result word */ 301 /* single-byte fromUnicode using the sbcsIndex */ 304 /* single-byte fromUTF [all...] |
/third_party/lwip/src/apps/snmp/ |
H A D | snmpv3_mbedtls.c | 82 u8_t byte; in snmpv3_auth() local 84 if (snmp_pbuf_stream_read(&read_stream, &byte)) { in snmpv3_auth() 88 if (mbedtls_md_hmac_update(&ctx, &byte, 1) != 0) { in snmpv3_auth()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | preparse-data-impl.h | 100 uint8_t byte = data_.get(index_++); in ReadVarint32() local 101 value |= static_cast<int32_t>(byte & 0x7F) << shift; in ReadVarint32() 103 has_another_byte = byte & 0x80; in ReadVarint32() 113 // Check that there indeed is a byte following. in ReadUint8()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ucnvmbcs.h | 80 * a UTF-8 trail byte. ASCII is allocated linearly with 128 contiguous entries. 85 * UTF-8 lead byte and middle trail byte. Unlike the older MBCS stage 2 table, 101 * U+0FFF covers UTF-8 two-byte sequences and three-byte sequences starting with 216 * -- stage 3 tables with byte results 218 * -- SBCS: each 16-bit result contains flags and the result byte, see ucnvmbcs.c 298 /* single-byte fromUnicode: get the 16-bit result word */ 301 /* single-byte fromUnicode using the sbcsIndex */ 304 /* single-byte fromUTF [all...] |
/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
H A D | CodedInputStream.php | 195 $byte = ord($this->buffer[$this->current]); variable 196 $result |= ($byte & 0x7f) << $shift; 200 } while ($byte > 0x7f);
|
/third_party/rust/crates/nom/src/bits/ |
H A D | streaming.rs | 32 for byte in input.iter_elements().take(cnt + 1) { in take() 37 byte.into() in take() 39 ((byte << offset) as u8 >> offset).into() in take()
|
H A D | complete.rs | 27 /// // Consumes 4 bits, offset is 4, returns their values and increase offset to 0 of next byte 58 for byte in input.iter_elements().take(cnt + 1) { in take() 63 byte.into() in take() 65 ((byte << offset) as u8 >> offset).into() in take()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-module-builder.cc | 55 void WasmFunctionBuilder::EmitByte(byte val) { body_.write_u8(val); } in EmitByte() 91 void WasmFunctionBuilder::EmitCode(const byte* code, uint32_t code_size) { in EmitCode() 108 void WasmFunctionBuilder::EmitWithU8(WasmOpcode opcode, const byte immediate) { in EmitWithU8() 113 void WasmFunctionBuilder::EmitWithU8U8(WasmOpcode opcode, const byte imm1, in EmitWithU8U8() 114 const byte imm2) { in EmitWithU8U8() 170 byte placeholder_bytes[kMaxVarInt32Size] = {0}; in EmitDirectCallIndex() 180 // We only want to emit one mapping per byte offset. in AddAsmWasmOffset() 232 byte** ptr = buffer->pos_ptr(); in WriteBody() 256 // Offset of the recorded byte offsets. in WriteAsmWasmOffsetTable() 298 void WasmModuleBuilder::AddDataSegment(const byte* dat [all...] |
/third_party/rust/crates/regex/src/ |
H A D | dfa.rs | 22 In pathological cases, a new state can be created for every byte of input. 104 /// and the set of empty-width flags set at the byte in the input when the 116 /// given state `s` and byte `b`, the next state can be found at index 129 /// permutations of flags set just before the initial byte of input. (The 153 /// It is laid out in row-major order, with states as rows and byte class 250 /// The flags are packed into the first byte of data. 259 /// it is packed into a single byte; Otherwise the byte 128 (-128 as an i8) 334 /// exists in the regex *and* a non-ASCII byte is observed. 415 // We add 1 to account for the special EOF byte in new() 1720 fn byte(b: u8) -> Self { byte() functions [all...] |
/third_party/node/deps/openssl/config/archs/BSD-x86/asm/crypto/des/ |
H A D | des-586.S | 8 .byte 243,15,30,251 483 .byte 243,15,30,251 960 .byte 243,15,30,251 1077 .byte 243,15,30,251 1124 .byte 243,15,30,251 1249 .byte 243,15,30,251 1374 .byte 243,15,30,251 1440 .byte 243,15,30,251 1448 .byte 243,15,30,251 1455 .byte 24 [all...] |
/third_party/node/deps/openssl/config/archs/BSD-x86/asm_avx2/crypto/des/ |
H A D | des-586.S | 8 .byte 243,15,30,251 483 .byte 243,15,30,251 960 .byte 243,15,30,251 1077 .byte 243,15,30,251 1124 .byte 243,15,30,251 1249 .byte 243,15,30,251 1374 .byte 243,15,30,251 1440 .byte 243,15,30,251 1448 .byte 243,15,30,251 1455 .byte 24 [all...] |
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/asm/crypto/des/ |
H A D | des-586.S | 7 .byte 243,15,30,251 481 .byte 243,15,30,251 957 .byte 243,15,30,251 1073 .byte 243,15,30,251 1119 .byte 243,15,30,251 1243 .byte 243,15,30,251 1367 .byte 243,15,30,251 1433 .byte 243,15,30,251 1441 .byte 243,15,30,251 1448 .byte 24 [all...] |
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/crypto/des/ |
H A D | des-586.S | 7 .byte 243,15,30,251 481 .byte 243,15,30,251 957 .byte 243,15,30,251 1073 .byte 243,15,30,251 1119 .byte 243,15,30,251 1243 .byte 243,15,30,251 1367 .byte 243,15,30,251 1433 .byte 243,15,30,251 1441 .byte 243,15,30,251 1448 .byte 24 [all...] |
/third_party/node/deps/openssl/config/archs/solaris-x86-gcc/asm/crypto/des/ |
H A D | des-586.S | 8 .byte 243,15,30,251 484 .byte 243,15,30,251 962 .byte 243,15,30,251 1080 .byte 243,15,30,251 1128 .byte 243,15,30,251 1254 .byte 243,15,30,251 1380 .byte 243,15,30,251 1446 .byte 243,15,30,251 1454 .byte 243,15,30,251 1461 .byte 24 [all...] |
/third_party/node/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/crypto/des/ |
H A D | des-586.S | 8 .byte 243,15,30,251 484 .byte 243,15,30,251 962 .byte 243,15,30,251 1080 .byte 243,15,30,251 1128 .byte 243,15,30,251 1254 .byte 243,15,30,251 1380 .byte 243,15,30,251 1446 .byte 243,15,30,251 1454 .byte 243,15,30,251 1461 .byte 24 [all...] |
/third_party/node/deps/openssl/config/archs/linux-elf/asm_avx2/crypto/des/ |
H A D | des-586.S | 8 .byte 243,15,30,251 484 .byte 243,15,30,251 962 .byte 243,15,30,251 1080 .byte 243,15,30,251 1128 .byte 243,15,30,251 1254 .byte 243,15,30,251 1380 .byte 243,15,30,251 1446 .byte 243,15,30,251 1454 .byte 243,15,30,251 1461 .byte 24 [all...] |
/third_party/node/deps/openssl/config/archs/linux-elf/asm/crypto/des/ |
H A D | des-586.S | 8 .byte 243,15,30,251 484 .byte 243,15,30,251 962 .byte 243,15,30,251 1080 .byte 243,15,30,251 1128 .byte 243,15,30,251 1254 .byte 243,15,30,251 1380 .byte 243,15,30,251 1446 .byte 243,15,30,251 1454 .byte 243,15,30,251 1461 .byte 24 [all...] |
/foundation/ability/ability_base/interfaces/kits/native/want/include/ |
H A D | want.h | 467 * @description: Obtains a byte-type value matching the given key. 469 * @param defaultValue Indicates the default byte-type value. 470 * @return Returns the byte-type value of the parameter matching the given key; 473 byte GetByteParam(const std::string &key, byte defaultValue) const; 476 * @description: Obtains a byte-type array matching the given key. 478 * @return Returns the byte-type array of the parameter matching the given key; 481 std::vector<byte> GetByteArrayParam(const std::string &key) const; 484 * @description: Sets a parameter value of the byte type. 486 * @param value Indicates the byte [all...] |
/kernel/linux/linux-5.10/arch/sh/lib/ |
H A D | checksum.S | 43 * is aligned on either a 2-byte or 4-byte boundary. We get at 44 * least a twofold speedup on 486 and Pentium if it is 4-byte aligned. 45 * Fortunately, it is easy to convert 2-byte alignment to 4-byte 72 ! buf is 2 byte aligned (len could be 0) 86 ! buf is 4 byte aligned (len could be 0) 218 ! This is not common, so simple byte by byte copy will do. 255 ! src and dest equally aligned, but to a two byte boundar [all...] |