/kernel/linux/linux-6.6/drivers/soc/tegra/fuse/ |
H A D | fuse-tegra30.c | 139 .bytes = 4, 145 .bytes = 4, 151 .bytes = 4, 157 .bytes = 4, 163 .bytes = 4, 169 .bytes = 4, 175 .bytes = 4, 181 .bytes = 4, 187 .bytes = 4, 193 .bytes [all...] |
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/ |
H A D | DigitSequenceMatcher.java | 74 /** Return the unsigned short value at the current position and move ahead 2 bytes. */ 77 /** Return the unsigned int value at the current position and move ahead 4 bytes. */ 166 return bytes[position + offset] & 0xFF; in peekByte() 170 return bytes[position++] & 0xFF; in readByte() 191 private final byte[] bytes; field in DigitSequenceMatcher.ByteArrayMatcher 194 this.bytes = data; in ByteArrayMatcher() 204 return bytes.length; in size() 221 int data = bytes.charAt(offset >>> 1); in peekByte() 227 int data = bytes.charAt(position >>> 1); in readByte() 235 int data = bytes in readShort() 258 private final String bytes; global() field in DigitSequenceMatcher.StringMatcher 260 StringMatcher(String bytes) StringMatcher() argument [all...] |
/third_party/toybox/toys/posix/ |
H A D | xargs.c | 31 -s Size in bytes per command line 42 long entries, bytes; 47 // If !entry count TT.bytes and TT.entries, stopping at max. 73 // We ought to add sizeof(char *) to TT.bytes to be correct, but we don't in handle_entries() 77 if (++TT.bytes >= TT.s && TT.s) return save; in handle_entries() 88 TT.bytes += sizeof(char *)+strlen(data)+1; in handle_entries() 89 if ((TT.s && TT.bytes >= TT.s) || (TT.n && TT.entries >= TT.n)) return data; in handle_entries() 100 int entries, bytes, done = 0, ran_once = 0, status; in xargs_main() local 105 // with -s. POSIX also says we have to reserve 2048 bytes "to guarantee in xargs_main() 109 bytes in xargs_main() [all...] |
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | IsValidUtf8Test.java | 49 * sequence that will round trip when converted to a String and then back to bytes and will return 90 // Bad trailing bytes in testIsValidUtf8_4BytesSamples() 123 private byte[] toByteArray(int... bytes) { in toByteArray() argument 124 byte[] realBytes = new byte[bytes.length]; in toByteArray() 125 for (int i = 0; i < bytes.length; i++) { in toByteArray() 126 realBytes[i] = (byte) bytes[i]; in toByteArray() 131 private void assertValidUtf8(ByteStringFactory factory, int[] bytes, boolean not) { in assertValidUtf8() argument 132 byte[] realBytes = toByteArray(bytes); in assertValidUtf8() 134 assertTrue(not ^ Utf8.isValidUtf8(realBytes, 0, bytes.length)); in assertValidUtf8() 136 ByteString sub = leaf.substring(0, bytes in assertValidUtf8() 151 assertValidUtf8(int... bytes) assertValidUtf8() argument 157 assertInvalidUtf8(int... bytes) assertInvalidUtf8() argument [all...] |
H A D | CodedInputStreamTest.java | 130 * Helper to construct a byte array from a bunch of bytes. The inputs are actually ints so that I 133 private byte[] bytes(int... bytesAsInts) { in bytes() method in CodedInputStreamTest 134 byte[] bytes = new byte[bytesAsInts.length]; in bytes() 136 bytes[i] = (byte) bytesAsInts[i]; in bytes() 138 return bytes; in bytes() 142 * An InputStream which limits the number of bytes it reads at a time. We use this to make sure 187 * Parses the given bytes using readRawVarint32() and readRawVarint64() and checks that the result 223 * Parses the given bytes using readRawVarint32() and readRawVarint64() and expects them to fail 256 assertReadVarint(bytes(0x00), 0); in testReadVarint() 257 assertReadVarint(bytes( in testReadVarint() [all...] |
/kernel/linux/linux-5.10/drivers/ps3/ |
H A D | ps3-vuart.c | 352 const void *buf, unsigned int bytes, u64 *bytes_written) in ps3_vuart_raw_write() 358 ps3_mm_phys_to_lpar(__pa(buf)), bytes, bytes_written); in ps3_vuart_raw_write() 369 *bytes_written, bytes, priv->stats.bytes_written); in ps3_vuart_raw_write() 382 unsigned int bytes, u64 *bytes_read) in ps3_vuart_raw_read() 387 dev_dbg(&dev->core, "%s:%d: %xh\n", __func__, __LINE__, bytes); in ps3_vuart_raw_read() 390 ps3_mm_phys_to_lpar(__pa(buf)), bytes, bytes_read); in ps3_vuart_raw_read() 401 *bytes_read, bytes, priv->stats.bytes_read); in ps3_vuart_raw_read() 407 * ps3_vuart_clear_rx_bytes - Discard bytes received. 409 * @bytes: Max byte count to discard, zero = all pending. 415 unsigned int bytes) in ps3_vuart_clear_rx_bytes() 351 ps3_vuart_raw_write(struct ps3_system_bus_device *dev, const void *buf, unsigned int bytes, u64 *bytes_written) ps3_vuart_raw_write() argument 381 ps3_vuart_raw_read(struct ps3_system_bus_device *dev, void *buf, unsigned int bytes, u64 *bytes_read) ps3_vuart_raw_read() argument 414 ps3_vuart_clear_rx_bytes(struct ps3_system_bus_device *dev, unsigned int bytes) ps3_vuart_clear_rx_bytes() argument 474 ps3_vuart_write(struct ps3_system_bus_device *dev, const void *buf, unsigned int bytes) ps3_vuart_write() argument 550 u64 bytes; ps3_vuart_queue_rx_bytes() local 598 ps3_vuart_read(struct ps3_system_bus_device *dev, void *buf, unsigned int bytes) ps3_vuart_read() argument 672 ps3_vuart_read_async(struct ps3_system_bus_device *dev, unsigned int bytes) ps3_vuart_read_async() argument 783 u64 bytes; ps3_vuart_handle_interrupt_rx() local [all...] |
/kernel/linux/linux-6.6/drivers/ps3/ |
H A D | ps3-vuart.c | 352 const void *buf, unsigned int bytes, u64 *bytes_written) in ps3_vuart_raw_write() 358 ps3_mm_phys_to_lpar(__pa(buf)), bytes, bytes_written); in ps3_vuart_raw_write() 369 *bytes_written, bytes, priv->stats.bytes_written); in ps3_vuart_raw_write() 382 unsigned int bytes, u64 *bytes_read) in ps3_vuart_raw_read() 387 dev_dbg(&dev->core, "%s:%d: %xh\n", __func__, __LINE__, bytes); in ps3_vuart_raw_read() 390 ps3_mm_phys_to_lpar(__pa(buf)), bytes, bytes_read); in ps3_vuart_raw_read() 401 *bytes_read, bytes, priv->stats.bytes_read); in ps3_vuart_raw_read() 407 * ps3_vuart_clear_rx_bytes - Discard bytes received. 409 * @bytes: Max byte count to discard, zero = all pending. 415 unsigned int bytes) in ps3_vuart_clear_rx_bytes() 351 ps3_vuart_raw_write(struct ps3_system_bus_device *dev, const void *buf, unsigned int bytes, u64 *bytes_written) ps3_vuart_raw_write() argument 381 ps3_vuart_raw_read(struct ps3_system_bus_device *dev, void *buf, unsigned int bytes, u64 *bytes_read) ps3_vuart_raw_read() argument 414 ps3_vuart_clear_rx_bytes(struct ps3_system_bus_device *dev, unsigned int bytes) ps3_vuart_clear_rx_bytes() argument 474 ps3_vuart_write(struct ps3_system_bus_device *dev, const void *buf, unsigned int bytes) ps3_vuart_write() argument 550 u64 bytes; ps3_vuart_queue_rx_bytes() local 598 ps3_vuart_read(struct ps3_system_bus_device *dev, void *buf, unsigned int bytes) ps3_vuart_read() argument 672 ps3_vuart_read_async(struct ps3_system_bus_device *dev, unsigned int bytes) ps3_vuart_read_async() argument 783 u64 bytes; ps3_vuart_handle_interrupt_rx() local [all...] |
/third_party/backends/backend/ |
H A D | hs2p.h | 380 _lto2b (u_long val, SANE_Byte * bytes) in _lto2b() argument 382 bytes[0] = (val >> 8) & 0xff; in _lto2b() 383 bytes[1] = val & 0xff; in _lto2b() 387 _lto3b (u_long val, SANE_Byte * bytes) in _lto3b() argument 389 bytes[0] = (val >> 16) & 0xff; in _lto3b() 390 bytes[1] = (val >> 8) & 0xff; in _lto3b() 391 bytes[2] = val & 0xff; in _lto3b() 395 _lto4b (u_long val, SANE_Byte * bytes) in _lto4b() argument 397 bytes[0] = (val >> 24) & 0xff; in _lto4b() 398 bytes[ in _lto4b() 404 _2btol(SANE_Byte * bytes) _2btol() argument 414 _4btol(SANE_Byte * bytes) _4btol() argument 434 _3btol(SANE_Byte * bytes) _3btol() argument [all...] |
/third_party/node/tools/inspector_protocol/encoding/ |
H A D | encoding_test.cc | 58 // span - sequence of bytes 238 // std::numeric_limits<int32_t> is encoded as a uint32 (4 unsigned bytes) in TEST() 293 "additional info = 27 would require 8 bytes of payload (but " in TEST() 381 // must be even number of bytes. in String16WireRepToHost() 398 // the additional info part of the initial byte. Payload is two bytes for each in TEST() 426 // bytes closely. in TEST() 433 // Now check the first three bytes: in TEST() 435 // Additional information: 25, indicating size is represented by 2 bytes. in TEST() 608 2 << 5 | 27, // BYTE_STRING (type 2), followed by 8 bytes length in TEST() 631 // value 27. This is followed by 8 bytes o in TEST() 838 std::vector<uint8_t> bytes = {0xd8, 0x5a, 0, 0, 0, kPayloadLen}; TEST() local 862 std::vector<uint8_t> bytes = {cbor::InitialByteForEnvelope(), TEST() local 912 std::vector<uint8_t> bytes = {0xd8, 0x5a, 0, 0, 0, kPayloadLen, // envelope TEST() local 929 std::vector<uint8_t> bytes = {0xd8, 0x5a, 0, 0, 0, kPayloadLen, // envelope TEST() local 947 std::vector<uint8_t> bytes = {0xd8, 0x5a, 0, 0, 0, kPayloadLen, // envelope TEST() local 962 std::vector<uint8_t> bytes = {0xd8, 0x5a, 0, TEST() local 978 std::vector<uint8_t> bytes; MakeNestedCBOR() local 997 std::vector<uint8_t> bytes = MakeNestedCBOR(3); TEST() local 1008 std::vector<uint8_t> bytes = MakeNestedCBOR(300); TEST() local 1028 std::vector<uint8_t> bytes = MakeNestedCBOR(301); TEST() local 1038 std::vector<uint8_t> bytes = MakeNestedCBOR(320); TEST() local 1051 std::vector<uint8_t> bytes = {0xd8, 0x5a, 0, 0, 0, kPayloadLen, // envelope TEST() local 1070 std::vector<uint8_t> bytes = {0xd8, 0x5a, 0, 0, 0, kPayloadLen, // envelope TEST() local 1093 std::vector<uint8_t> bytes = {0xd8, 0x5a, 0, 0, 0, kPayloadLen, // envelope TEST() local 1113 std::vector<uint8_t> bytes = {0xd8, 0x5a, 0, 0, 0, kPayloadLen, // envelope TEST() local 1135 std::vector<uint8_t> bytes = {0xd8, 0x5a, 0, 0, 0, kPayloadLen, // envelope TEST() local 1156 std::vector<uint8_t> bytes = {0xd8, 0x5a, 0, 0, 0, kPayloadLen, // envelope TEST() local 1177 std::vector<uint8_t> bytes = {0xd8, 0x5a, 0, 0, 0, kPayloadLen, // envelope TEST() local 1210 std::vector<uint8_t> bytes = {0xd8, 0x5a, 0, 0, 0, kPayloadLen, // envelope TYPED_TEST() local 1257 std::vector<uint8_t> bytes = { TYPED_TEST() local 1267 std::vector<uint8_t> bytes = { TYPED_TEST() local 1278 std::vector<uint8_t> bytes = { TYPED_TEST() local 1287 std::vector<uint8_t> bytes = { TYPED_TEST() local 1296 std::vector<uint8_t> bytes = { TYPED_TEST() local 1306 std::vector<uint8_t> bytes = { TYPED_TEST() local [all...] |
/third_party/json/include/nlohmann/detail/output/ |
H A D | serializer.hpp | 270 o->write_characters("\"bytes\": [", 10); in dump() 301 o->write_characters("{\"bytes\":[", 10); in dump() 395 std::size_t bytes = 0; // number of bytes written to string_buffer in dump_escaped() local 397 // number of bytes written at the point of the last valid byte in dump_escaped() 413 string_buffer[bytes++] = '\\'; in dump_escaped() 414 string_buffer[bytes++] = 'b'; in dump_escaped() 420 string_buffer[bytes++] = '\\'; in dump_escaped() 421 string_buffer[bytes++] = 't'; in dump_escaped() 427 string_buffer[bytes in dump_escaped() [all...] |
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | CodedInputStreamReader.java | 291 final int bytes = input.readUInt32(); in readDoubleList() 292 verifyPackedFixed64Length(bytes); in readDoubleList() 293 int endPos = input.getTotalBytesRead() + bytes; in readDoubleList() 317 final int bytes = input.readUInt32(); in readDoubleList() 318 verifyPackedFixed64Length(bytes); in readDoubleList() 319 int endPos = input.getTotalBytesRead() + bytes; in readDoubleList() 349 final int bytes = input.readUInt32(); in readFloatList() 350 verifyPackedFixed32Length(bytes); in readFloatList() 351 int endPos = input.getTotalBytesRead() + bytes; in readFloatList() 375 final int bytes in readFloatList() 1222 verifyPackedFixed64Length(int bytes) verifyPackedFixed64Length() argument 1321 verifyPackedFixed32Length(int bytes) verifyPackedFixed32Length() argument [all...] |
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/hmm/ |
H A D | hmm.c | 224 ia_css_ptr hmm_alloc(size_t bytes, enum hmm_bo_type type, in hmm_alloc() argument 243 pgnr = size_to_pgnr_ceil(bytes); in hmm_alloc() 269 hmm_set(bo->start, 0, bytes); in hmm_alloc() 272 "%s: pages: 0x%08x (%zu bytes), type: %d from highmem %d, user ptr %p, cached %d\n", in hmm_alloc() 273 __func__, bo->start, bytes, type, from_highmem, userptr, cached); in hmm_alloc() 336 unsigned int bytes) in load_and_flush_by_kmap() 349 while (bytes) { in load_and_flush_by_kmap() 355 if ((bytes + offset) >= PAGE_SIZE) { in load_and_flush_by_kmap() 357 bytes -= len; in load_and_flush_by_kmap() 359 len = bytes; in load_and_flush_by_kmap() 335 load_and_flush_by_kmap(ia_css_ptr virt, void *data, unsigned int bytes) load_and_flush_by_kmap() argument 379 load_and_flush(ia_css_ptr virt, void *data, unsigned int bytes) load_and_flush() argument 414 hmm_load(ia_css_ptr virt, void *data, unsigned int bytes) hmm_load() argument 430 hmm_flush(ia_css_ptr virt, unsigned int bytes) hmm_flush() argument 436 hmm_store(ia_css_ptr virt, const void *data, unsigned int bytes) hmm_store() argument 529 hmm_set(ia_css_ptr virt, int c, unsigned int bytes) hmm_set() argument [all...] |
/third_party/skia/fuzz/oss_fuzz/ |
H A D | FuzzSkRuntimeEffect.cpp | 18 * The fuzzer will take in the bytes and divide into two parts. 19 * original bytes : [... code bytes ... | 256 bytes] 20 * The first part is codeBytes, the original bytes minus 256 bytes, which will be treated 22 * For the second part, it will first reserve 256 bytes and then allocate bytes with same size 32 static bool FuzzSkRuntimeEffect_Once(sk_sp<SkData> bytes, const SkRuntimeEffect::Options& options) { in FuzzSkRuntimeEffect_Once() argument 33 if (bytes in FuzzSkRuntimeEffect_Once() 64 FuzzSkRuntimeEffect(sk_sp<SkData> bytes) FuzzSkRuntimeEffect() argument 82 auto bytes = SkData::MakeWithoutCopy(data, size); LLVMFuzzerTestOneInput() local [all...] |
/kernel/linux/linux-5.10/arch/alpha/lib/ |
H A D | ev6-memcpy.S | 9 * - uses bcmpge to compare 8 bytes in parallel 68 ldq $1, 0($17) # L : get 8 bytes 85 wh64 ($7) # L1 : memory subsystem hint: 64 bytes at 87 ldq $6, 0($17) # L0 : bytes 0..7 91 ldq $4, 8($17) # L : bytes 8..15 92 ldq $5, 16($17) # L : bytes 16..23 96 ldq $3, 24($17) # L : bytes 24..31 101 addq $17, 32, $17 # E : src += 32 bytes 102 stq $6, 0($16) # L : bytes 0..7 106 stq $4, 8($16) # L : bytes [all...] |
/kernel/linux/linux-6.6/arch/alpha/lib/ |
H A D | ev6-memcpy.S | 9 * - uses bcmpge to compare 8 bytes in parallel 68 ldq $1, 0($17) # L : get 8 bytes 85 wh64 ($7) # L1 : memory subsystem hint: 64 bytes at 87 ldq $6, 0($17) # L0 : bytes 0..7 91 ldq $4, 8($17) # L : bytes 8..15 92 ldq $5, 16($17) # L : bytes 16..23 96 ldq $3, 24($17) # L : bytes 24..31 101 addq $17, 32, $17 # E : src += 32 bytes 102 stq $6, 0($16) # L : bytes 0..7 106 stq $4, 8($16) # L : bytes [all...] |
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-engine.h | 66 // Native modules cached by their wire bytes. 73 base::Vector<const uint8_t> bytes; member 76 bool eq = bytes == other.bytes; in operator ==() 83 DCHECK_IMPLIES(!bytes.empty() && !other.bytes.empty(), in operator <() 84 bytes != other.bytes); in operator <() 87 if (bytes.size() != other.bytes in operator <() [all...] |
/kernel/linux/linux-5.10/block/ |
H A D | blk-map.c | 168 unsigned int bytes = PAGE_SIZE; in bio_copy_user_iov() local 170 bytes -= offset; in bio_copy_user_iov() 172 if (bytes > len) in bio_copy_user_iov() 173 bytes = len; in bio_copy_user_iov() 193 if (bio_add_pc_page(rq->q, bio, page, bytes, offset) < bytes) { in bio_copy_user_iov() 199 len -= bytes; in bio_copy_user_iov() 261 ssize_t bytes; in bio_map_user_iov() local 265 bytes = iov_iter_get_pages_alloc(iter, &pages, LONG_MAX, &offs); in bio_map_user_iov() 266 if (unlikely(bytes < in bio_map_user_iov() 404 unsigned int bytes = PAGE_SIZE - offset; bio_map_kern() local 486 unsigned int bytes = PAGE_SIZE; bio_copy_kern() local [all...] |
/kernel/linux/linux-5.10/sound/i2c/other/ |
H A D | pt2258.c | 34 unsigned char bytes[2]; in snd_pt2258_reset() local 38 bytes[0] = PT2258_CMD_RESET; in snd_pt2258_reset() 40 if (snd_i2c_sendbytes(pt->i2c_dev, bytes, 1) != 1) in snd_pt2258_reset() 46 bytes[0] = PT2258_CMD_MUTE; in snd_pt2258_reset() 48 if (snd_i2c_sendbytes(pt->i2c_dev, bytes, 1) != 1) in snd_pt2258_reset() 55 bytes[0] = 0xd0; in snd_pt2258_reset() 56 bytes[1] = 0xe0; in snd_pt2258_reset() 58 if (snd_i2c_sendbytes(pt->i2c_dev, bytes, 2) != 2) in snd_pt2258_reset() 97 unsigned char bytes[2]; in pt2258_stereo_volume_put() local 108 bytes[ in pt2258_stereo_volume_put() 146 unsigned char bytes[2]; pt2258_switch_put() local [all...] |
/kernel/linux/linux-6.6/sound/i2c/other/ |
H A D | pt2258.c | 34 unsigned char bytes[2]; in snd_pt2258_reset() local 38 bytes[0] = PT2258_CMD_RESET; in snd_pt2258_reset() 40 if (snd_i2c_sendbytes(pt->i2c_dev, bytes, 1) != 1) in snd_pt2258_reset() 46 bytes[0] = PT2258_CMD_MUTE; in snd_pt2258_reset() 48 if (snd_i2c_sendbytes(pt->i2c_dev, bytes, 1) != 1) in snd_pt2258_reset() 55 bytes[0] = 0xd0; in snd_pt2258_reset() 56 bytes[1] = 0xe0; in snd_pt2258_reset() 58 if (snd_i2c_sendbytes(pt->i2c_dev, bytes, 2) != 2) in snd_pt2258_reset() 97 unsigned char bytes[2]; in pt2258_stereo_volume_put() local 108 bytes[ in pt2258_stereo_volume_put() 146 unsigned char bytes[2]; pt2258_switch_put() local [all...] |
/kernel/linux/linux-5.10/drivers/crypto/vmx/ |
H A D | ghash.c | 42 int bytes; member 49 dctx->bytes = 0; in p8_ghash_init() 123 if (dctx->bytes) { in p8_ghash_update() 124 if (dctx->bytes + srclen < GHASH_DIGEST_SIZE) { in p8_ghash_update() 125 memcpy(dctx->buffer + dctx->bytes, src, in p8_ghash_update() 127 dctx->bytes += srclen; in p8_ghash_update() 130 memcpy(dctx->buffer + dctx->bytes, src, in p8_ghash_update() 131 GHASH_DIGEST_SIZE - dctx->bytes); in p8_ghash_update() 135 src += GHASH_DIGEST_SIZE - dctx->bytes; in p8_ghash_update() 136 srclen -= GHASH_DIGEST_SIZE - dctx->bytes; in p8_ghash_update() [all...] |
/kernel/linux/linux-6.6/drivers/crypto/vmx/ |
H A D | ghash.c | 43 int bytes; member 50 dctx->bytes = 0; in p8_ghash_init() 124 if (dctx->bytes) { in p8_ghash_update() 125 if (dctx->bytes + srclen < GHASH_DIGEST_SIZE) { in p8_ghash_update() 126 memcpy(dctx->buffer + dctx->bytes, src, in p8_ghash_update() 128 dctx->bytes += srclen; in p8_ghash_update() 131 memcpy(dctx->buffer + dctx->bytes, src, in p8_ghash_update() 132 GHASH_DIGEST_SIZE - dctx->bytes); in p8_ghash_update() 136 src += GHASH_DIGEST_SIZE - dctx->bytes; in p8_ghash_update() 137 srclen -= GHASH_DIGEST_SIZE - dctx->bytes; in p8_ghash_update() [all...] |
/third_party/elfutils/libdw/ |
H A D | dwarf_nextcu.c | 87 const unsigned char *bytes = data + off; in INTDEF() local 125 A 1-byte unsigned integer representing the size in bytes of in INTDEF() 152 uint64_t length = read_4ubyte_unaligned_inc (dwarf, bytes); in INTDEF() 170 if (bytes_end - bytes < 8) in INTDEF() 172 length = read_8ubyte_unaligned_inc (dwarf, bytes); in INTDEF() 176 if (bytes_end - bytes < 2) in INTDEF() 178 uint_fast16_t version = read_2ubyte_unaligned_inc (dwarf, bytes); in INTDEF() 185 if (bytes_end - bytes < 1) in INTDEF() 187 unit_type = *bytes++; in INTDEF() 226 address_size = *bytes in INTDEF() [all...] |
/kernel/linux/linux-5.10/fs/btrfs/ |
H A D | space-info.h | 9 u64 total_bytes; /* total bytes in the space, 11 u64 bytes_used; /* total bytes used, 13 u64 bytes_pinned; /* total bytes pinned, will be freed when the 15 u64 bytes_reserved; /* total bytes the allocator has reserved for 17 u64 bytes_may_use; /* number of bytes that may be used for 19 u64 bytes_readonly; /* total bytes that are read only */ 34 u64 disk_used; /* total bytes used on disk */ 35 u64 disk_total; /* total bytes on disk, takes mirrors into 44 * bytes_pinned does not reflect the bytes that will be pinned once the 79 u64 bytes; member [all...] |
/kernel/linux/linux-5.10/drivers/rtc/ |
H A D | rtc-dm355evm.c | 23 * counter bytes atomically: the count may increment in the middle 29 u8 bytes[4]; member 41 * Read LSB(0) to MSB(3) bytes. Defend against the counter in dm355evm_rtc_read_time() 48 if (tries && time.bytes[0] == status) in dm355evm_rtc_read_time() 50 time.bytes[0] = status; in dm355evm_rtc_read_time() 55 if (tries && time.bytes[1] == status) in dm355evm_rtc_read_time() 57 time.bytes[1] = status; in dm355evm_rtc_read_time() 62 if (tries && time.bytes[2] == status) in dm355evm_rtc_read_time() 64 time.bytes[2] = status; in dm355evm_rtc_read_time() 69 if (tries && time.bytes[ in dm355evm_rtc_read_time() [all...] |
/kernel/linux/linux-6.6/fs/btrfs/ |
H A D | space-info.h | 89 u64 total_bytes; /* total bytes in the space, 91 u64 bytes_used; /* total bytes used, 93 u64 bytes_pinned; /* total bytes pinned, will be freed when the 95 u64 bytes_reserved; /* total bytes the allocator has reserved for 97 u64 bytes_may_use; /* number of bytes that may be used for 99 u64 bytes_readonly; /* total bytes that are read only */ 100 u64 bytes_zone_unusable; /* total bytes that are unusable until 106 /* Chunk size in bytes */ 128 u64 disk_used; /* total bytes used on disk */ 129 u64 disk_total; /* total bytes o 161 u64 bytes; global() member [all...] |