/kernel/linux/linux-6.6/include/linux/raid/ |
H A D | pq.h | 156 extern void (*raid6_2data_recov)(int disks, size_t bytes, int faila, int failb, 158 extern void (*raid6_datap_recov)(int disks, size_t bytes, int faila, 160 void raid6_dual_recov(int disks, size_t bytes, int faila, int failb,
|
/kernel/linux/linux-6.6/drivers/usb/gadget/udc/ |
H A D | pxa25x_udc.h | 80 unsigned long bytes; member 216 dev->stats.write.bytes, dev->stats.write.ops, in dump_state() 217 dev->stats.read.bytes, dev->stats.read.ops); in dump_state()
|
/kernel/linux/linux-6.6/drivers/nvmem/ |
H A D | mxs-ocotp.c | 59 void *val, size_t bytes) in mxs_ocotp_read() 85 while (bytes) { in mxs_ocotp_read() 93 bytes -= 4; in mxs_ocotp_read() 58 mxs_ocotp_read(void *context, unsigned int offset, void *val, size_t bytes) mxs_ocotp_read() argument
|
H A D | imx-ocotp-ele.c | 64 static int imx_ocotp_reg_read(void *context, unsigned int offset, void *val, size_t bytes) in imx_ocotp_reg_read() argument 75 num_bytes = round_up(bytes, 4); in imx_ocotp_reg_read() 99 memcpy(val, (u8 *)p, bytes); in imx_ocotp_reg_read()
|
/kernel/linux/linux-6.6/block/ |
H A D | blk-crypto-internal.h | 16 unsigned int keysize; /* key size in bytes */ 17 unsigned int ivsize; /* iv size in bytes */ 134 void __bio_crypt_advance(struct bio *bio, unsigned int bytes); 135 static inline void bio_crypt_advance(struct bio *bio, unsigned int bytes) in bio_crypt_advance() argument 138 __bio_crypt_advance(bio, bytes); in bio_crypt_advance()
|
/kernel/linux/linux-6.6/net/x25/ |
H A D | x25_out.c | 30 int bytes = 1; in x25_pacsize_to_bytes() local 36 bytes *= 2; in x25_pacsize_to_bytes() 38 return bytes; in x25_pacsize_to_bytes() 44 * Returns the amount of user data bytes sent on success 76 " failed, err=%d, %d bytes " in x25_output()
|
/kernel/linux/linux-6.6/mm/ |
H A D | page_counter.c | 250 u64 bytes; in page_counter_memparse() local 257 bytes = memparse(buf, &end); in page_counter_memparse() 261 *nr_pages = min(bytes / PAGE_SIZE, (u64)PAGE_COUNTER_MAX); in page_counter_memparse()
|
/kernel/linux/linux-6.6/scripts/ |
H A D | cleanpatch | 9 use bytes; 19 no bytes; # Tab alignment depends on characters 57 no bytes; # Tab alignment depends on characters
|
/third_party/cups-filters/backend/ |
H A D | beh.c | 141 size_t bytes; in main() local 155 while ((bytes = fread(buf, 1, sizeof(buf), stdin))) in main() 156 fwrite(buf, 1, bytes, tmpfile); in main()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | BreakIteratorFactory.java | 131 ByteBuffer bytes = null; in createBreakInstance() 152 bytes = ICUBinary.getData(rulesFileName); in createBreakInstance() 163 iter = RuleBasedBreakIterator.getInstanceFromCompiledRules(bytes, isPhraseBreaking); in createBreakInstance()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | BreakIteratorFactory.java | 132 ByteBuffer bytes = null; in createBreakInstance() 145 bytes = ICUBinary.getData(rulesFileName); in createBreakInstance() 155 iter = RuleBasedBreakIterator.getInstanceFromCompiledRules(bytes); in createBreakInstance()
|
/third_party/node/deps/cares/src/lib/ |
H A D | ares__buf.h | 75 /*! Append multiple bytes to a dynamic buffer object 255 /*! Fetch the bytes starting from the tagged position up to the _current_ 259 * \param[in,out] bytes Buffer to hold data 260 * \param[in,out] len On input, buffer size, on output, bytes place in 265 unsigned char *bytes, size_t *len); 267 /*! Fetch the bytes starting from the tagged position up to the _current_ 274 * \param[in] len On input, buffer size, on output, bytes place in 282 /*! Consume the given number of bytes without reading them. 307 /*! Fetch the requested number of bytes into the provided buffer 310 * \param[out] bytes Buffe [all...] |
/third_party/skia/src/core/ |
H A D | SkImageInfo.cpp | 64 size_t bytes = safe.add(safe.mul(safe.addInt(this->height(), -1), rowBytes), in computeByteSize() local 71 return (safe.ok() && (bytes <= kMaxSigned32BitSize)) ? bytes : SIZE_MAX; in computeByteSize()
|
/third_party/skia/src/gpu/ |
H A D | GrProgramDesc.h | 51 const uint8_t* bytes = reinterpret_cast<const uint8_t*>(data); 52 for (; numBytes --> 0; bytes++) { 53 this->addBits(8, *bytes, label); 119 // Gets the number of bytes in asKey(). It will be a 4-byte aligned value.
|
/third_party/openssl/test/ |
H A D | bio_prefix_text.c | 84 size_t bytes; in run_pipe() local 86 if (!BIO_write_ex(chain[amount - 1], buf, bytes_in, &bytes)) in run_pipe() 88 bytes_out += bytes; in run_pipe()
|
/third_party/skia/src/ports/ |
H A D | SkImageEncoder_WIC.cpp | 65 uint8_t* bytes = pixels + y * bitmap.rowBytes() + x * bitmap.bytesPerPixel(); in SkEncodeImageWithWIC() local 66 SkPMColor* src = reinterpret_cast<SkPMColor*>(bytes); in SkEncodeImageWithWIC() 67 SkColor* dst = reinterpret_cast<SkColor*>(bytes); in SkEncodeImageWithWIC()
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | bytestream.h | 33 // a sequence of bytes. Using these abstract interfaces in your APIs can help 44 // NullByteSink Consumes a never-ending stream of bytes 48 // LimitedByteSource Limits the number of bytes read from an 67 // An abstract interface for an object that consumes a sequence of bytes. This 83 // Appends the "n" bytes starting at "bytes". 84 virtual void Append(const char* bytes, size_t n) = 0; 96 // bytes. 112 // Returns the number of bytes left to read from the source. Available() 130 // Skips the next n bytes [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | str_cat_benchmark.cc | 175 for (int bytes : {10, 100, 1000, 10000}) { in StrAppendConfig() 178 if (bytes % (10 * chunks) == 0) { in StrAppendConfig() 179 benchmark->Args({bytes, chunks}); in StrAppendConfig()
|
/third_party/rust/crates/rustix/tests/process/ |
H A D | prctl.rs | 182 let mut bytes = Vec::default(); in load_linux_kernel_config() variables 183 decoder.read_to_end(&mut bytes)?; in load_linux_kernel_config() 184 return Ok(bytes); in load_linux_kernel_config()
|
/foundation/communication/dhcp/services/dhcp_server/src/ |
H A D | dhcp_function.cpp | 553 ssize_t bytes; in InitPidfile() local 554 if ((bytes = write(fd, buf, strlen(buf))) <= 0) { in InitPidfile() 555 DHCP_LOGE("InitPidfile() failed, write pidfile:%{public}s error:%{public}d, bytes:%{public}zd!", in InitPidfile() 556 pidfile.c_str(), errno, bytes); in InitPidfile() 560 DHCP_LOGI("InitPidfile() pid:%{public}s write %{public}s, bytes:%{public}zd!", buf, pidfile.c_str(), bytes); in InitPidfile() 596 ssize_t bytes; in GetPID() local 597 if ((bytes = read(fd, buf, sb.st_size)) < 0) { in GetPID() 598 DHCP_LOGE("GetPID() failed, read pidfile:%{public}s error, bytes:%{public}zd!", pidfile.c_str(), bytes); in GetPID() [all...] |
/kernel/linux/linux-5.10/drivers/mtd/nand/raw/ingenic/ |
H A D | ingenic_nand_drv.c | 163 params.bytes = nand->chip.ecc.bytes; in ingenic_nand_ecc_calculate() 177 params.bytes = nand->chip.ecc.bytes; in ingenic_nand_ecc_correct() 190 /* JZ4740 uses 9 bytes of ECC to correct maximum 4 errors */ in ingenic_nand_attach_chip() 191 chip->ecc.bytes = 9; in ingenic_nand_attach_chip() 193 chip->ecc.bytes = fls((1 + 8) * chip->ecc.size) * in ingenic_nand_attach_chip() 209 dev_info(nfc->dev, "using %s (strength %d, size %d, bytes %d)\n", in ingenic_nand_attach_chip() 211 chip->ecc.strength, chip->ecc.size, chip->ecc.bytes); in ingenic_nand_attach_chip() 227 eccbytes = mtd->writesize / chip->ecc.size * chip->ecc.bytes; in ingenic_nand_attach_chip() [all...] |
/kernel/linux/linux-6.6/arch/powerpc/crypto/ |
H A D | aesp10-ppc.pl | 540 my @bytes=(); 546 push @bytes,($l>>24)&0xff,($l>>16)&0xff,($l>>8)&0xff,$l&0xff; 549 @bytes = map(/^0/?oct:int,split(/,\s*/,$2)); 555 /\?inv/ && do { @bytes=map($_^0xf,@bytes); last; }; 556 /\?rev/ && do { @bytes=reverse(@bytes); last; }; 561 print ".byte\t",join(',',map (sprintf("0x%02x",$_),@bytes)),"\n";
|
/kernel/linux/linux-5.10/include/linux/usb/ |
H A D | hcd.h | 645 * Ceiling [nano/micro]seconds (typical) for that many bytes at high speed 650 #define HS_NSECS(bytes) (((55 * 8 * 2083) \ 651 + (2083UL * (3 + BitTime(bytes))))/1000 \ 653 #define HS_NSECS_ISO(bytes) (((38 * 8 * 2083) \ 654 + (2083UL * (3 + BitTime(bytes))))/1000 \ 656 #define HS_USECS(bytes) NS_TO_US(HS_NSECS(bytes)) 657 #define HS_USECS_ISO(bytes) NS_TO_US(HS_NSECS_ISO(bytes))
|
/kernel/linux/linux-6.6/drivers/mtd/nand/raw/ingenic/ |
H A D | ingenic_nand_drv.c | 163 params.bytes = nand->chip.ecc.bytes; in ingenic_nand_ecc_calculate() 177 params.bytes = nand->chip.ecc.bytes; in ingenic_nand_ecc_correct() 190 /* JZ4740 uses 9 bytes of ECC to correct maximum 4 errors */ in ingenic_nand_attach_chip() 191 chip->ecc.bytes = 9; in ingenic_nand_attach_chip() 193 chip->ecc.bytes = fls((1 + 8) * chip->ecc.size) * in ingenic_nand_attach_chip() 209 dev_info(nfc->dev, "using %s (strength %d, size %d, bytes %d)\n", in ingenic_nand_attach_chip() 211 chip->ecc.strength, chip->ecc.size, chip->ecc.bytes); in ingenic_nand_attach_chip() 227 eccbytes = mtd->writesize / chip->ecc.size * chip->ecc.bytes; in ingenic_nand_attach_chip() [all...] |
/kernel/linux/linux-6.6/include/linux/usb/ |
H A D | hcd.h | 640 * Ceiling [nano/micro]seconds (typical) for that many bytes at high speed 645 #define HS_NSECS(bytes) (((55 * 8 * 2083) \ 646 + (2083UL * (3 + BitTime(bytes))))/1000 \ 648 #define HS_NSECS_ISO(bytes) (((38 * 8 * 2083) \ 649 + (2083UL * (3 + BitTime(bytes))))/1000 \ 651 #define HS_USECS(bytes) NS_TO_US(HS_NSECS(bytes)) 652 #define HS_USECS_ISO(bytes) NS_TO_US(HS_NSECS_ISO(bytes))
|