/development/ndk/platforms/android-21/include/linux/ |
telephony.h | 187 unsigned int bytes; member in union:telephony_exception
|
/development/ndk/platforms/android-9/include/linux/ |
telephony.h | 168 unsigned int bytes; member in union:telephony_exception
|
/device/google/contexthub/firmware/os/drivers/ams_tmd2772/ |
ams_tmd2772.c | 153 uint8_t bytes[AMS_TMD2772_MAX_I2C_TRANSFER_SIZE]; member in union:I2cTransfer::__anon3238 256 xfer->txrxBuf.bytes[0] = reg; 257 xfer->txrxBuf.bytes[1] = value; 258 ret = i2cMasterTx(I2C_BUS_ID, I2C_ADDR, xfer->txrxBuf.bytes, 2, i2cCallback, xfer); 311 xfer->txrxBuf.bytes[0] = AMS_TMD2772_REG_ENABLE; 312 xfer->txrxBuf.bytes[1] = POWER_ON_BIT | WAIT_ENABLE_BIT | 314 xfer->txrxBuf.bytes[2] = AMS_TMD2772_ATIME_SETTING; 315 xfer->txrxBuf.bytes[3] = AMS_TMD2772_PTIME_SETTING; 316 xfer->txrxBuf.bytes[4] = alsOn ? AMS_TMD2772_WTIME_SETTING_ALS_ON : AMS_TMD2772_WTIME_SETTING_ALS_OFF; 317 i2cMasterTx(I2C_BUS_ID, I2C_ADDR, xfer->txrxBuf.bytes, 5, i2cCallback, xfer) [all...] |
/device/linaro/bootloader/arm-trusted-firmware/plat/hikey/ |
usb.c | 178 /* EP0 OUT Transfer Size:64 Bytes, 1 Packet, 3 Setup Packet, Read to receive setup packet*/ 189 dma_desc_ep0.status.b.bytes = 64; 364 dma_desc_in.status.b.bytes = len; 444 dma_desc_in.status.b.bytes = 0; 455 dma_desc_in.status.b.bytes = len; 581 dma_desc.status.b.bytes = 0; 600 dma_desc.status.b.bytes = rx_desc_bytes; 992 /*FIXME,Maybe you can use bytes*/ 993 /*int bytes = endpoints[0].size - (DIEPTSIZ(0) & 0x3FFFF);*/ //actual transfer 1034 /*FIXME,need use bytes*/ 1100 int bytes = rx_desc_bytes - dma_desc.status.b.bytes; local 1224 int bytes; local 1360 int bytes; local [all...] |
/external/c-ares/ |
ares_init.c | 825 DWORD bytes; local 885 NULL, &bytes 890 if (bytes) 892 line = malloc(bytes+1); 894 (unsigned char *)line, &bytes) == [all...] |
/external/compiler-rt/lib/lsan/ |
lsan_common.cc | 410 Printf(" count bytes template\n"); 614 Printf("%p (%zu bytes)\n", leaked_objects_[j].addr, 621 uptr bytes = 0, allocations = 0; local 624 bytes += leaks_[i].total_size; 628 summary.append("%zu byte(s) leaked in %zu allocation(s).", bytes,
|
/external/curl/lib/ |
smb.h | 128 char bytes[1]; member in struct:smb_negotiate_response 148 char bytes[1024]; member in struct:smb_setup 157 char bytes[1024]; member in struct:smb_tree_connect 180 char bytes[1024]; member in struct:smb_nt_create
|
/external/dhcpcd-6.8.2/ |
if-bsd.c | 412 ssize_t bytes; local 425 bytes = read(fd, state->buffer, state->buffer_size); 426 if (bytes == -1 || bytes == 0) 427 return bytes; 428 state->buffer_len = (size_t)bytes; 431 bytes = -1; 441 bytes = (ssize_t)packet.bh_caplen - ETHER_HDR_LEN; 442 if ((size_t)bytes > len) 443 bytes = (ssize_t)len 1150 ssize_t bytes; local [all...] |
if-linux.c | 325 ssize_t bytes; local 335 bytes = recv(fd, NULL, 0, 337 if (bytes == -1) 339 if ((size_t)bytes == buflen) { 341 if (bytes == 0) 342 bytes = 512; 344 bytes *= 2; 346 if (buflen < (size_t)bytes) { 348 buflen = (size_t)bytes + 1; 355 bytes = recvfrom(fd, buf, buflen, flags 1250 ssize_t bytes; local [all...] |
if-options.c | 2071 ssize_t bytes; local [all...] |
ipv6.c | 248 * 512 bits (64 bytes). */ 469 int bytes, bits, i; local 477 bytes = len / NBBY; 479 for (i = 0; i < bytes; i++) 482 mask->s6_addr[bytes] = masks[bits - 1]; [all...] |
/external/eigen/Eigen/src/Core/util/ |
Memory.h | 84 * Fast, but wastes 16 additional bytes of memory. Does not throw any exception. 150 /** \internal Allocates \a size bytes. The returned pointer is guaranteed to have 16 or 32 bytes alignment depending on the requirements. 209 /** \internal Allocates \a size bytes. If Align is true, then the returned ptr is 16-byte-aligned. 292 /** \internal Allocates \a size objects of type T. The returned pointer is guaranteed to have 16 bytes alignment. 423 * \tparam Alignment requested alignment in Bytes. 428 * the size of the array is returned. For example with SSE, the requested alignment is typically 16-bytes. If 703 * // Matrix4f requires 16 bytes alignment: 706 * // Vector3f does not require 16 bytes alignment, no need to use Eigen's allocator: 823 unsigned char * bytes = reinterpret_cast<unsigned char *>(abcd)+2 local [all...] |
/external/fio/ |
backend.c | 147 unsigned long long bytes = 0; local 167 bytes += td->this_io_bytes[ddir]; 184 if (bytes < td->rate_bytes[ddir]) { 190 rate = ((bytes - td->rate_bytes[ddir]) * 1000) / spent; 195 bytes < td->rate_bytes[ddir]) { 226 td->rate_bytes[ddir] = bytes; 578 int bytes = io_u->xfer_buflen - io_u->resid; local 583 if (!bytes) { 590 io_u->xfer_buf += bytes; 591 io_u->offset += bytes; 669 unsigned long long bytes, limit; local 691 unsigned long long bytes, limit; local 840 int bytes = io_u->xfer_buflen - io_u->resid; local [all...] |
io_u.c | 638 * Put a top limit on how many bytes we do for 1595 uint64_t secs, remainder, bps, bytes; local 1647 unsigned int bytes = io_u->buflen - io_u->resid; local [all...] |
iolog.c | 333 unsigned int bytes; local 355 &bytes); 427 ipo->len = bytes; 428 if (rw != DDIR_INVAL && bytes > td->o.max_bs[rw]) 429 td->o.max_bs[rw] = bytes; 432 td->o.size += bytes;
|
/external/fio/engines/ |
net.c | 351 int bytes = 0; local 357 if (!bytes) 358 bytes = ret; 364 bytes += ret; 368 return bytes; 372 * Receive bytes from a socket and fill them into the internal pipe 382 * Transmit 'len' bytes from the internal pipe 398 int bytes = 0; local 404 if (!bytes) 405 bytes = ret [all...] |
/external/freetype/src/cff/ |
cffload.c | 303 if ( FT_FRAME_EXTRACT( size, idx->bytes ) ) 331 if ( idx->bytes ) 332 FT_FRAME_RELEASE( idx->bytes ); 435 FT_Byte* org_bytes = idx->bytes; 566 if ( idx->bytes ) 569 *pbytes = idx->bytes + off1 - 1; 598 if ( idx->bytes == 0 ) 615 FT_Byte* bytes; local 626 error = cff_index_access_element( idx, element, &bytes, &byte_len ); 633 FT_MEM_COPY( name, bytes, byte_len ) [all...] |
/external/guava/guava-tests/test/com/google/common/io/ |
FilesTest.java | 26 import com.google.common.primitives.Bytes; 90 byte[] bytes = Files.readFile(in, asciiFile.length()); 91 assertTrue(Arrays.equals(ASCII.getBytes(Charsets.US_ASCII), bytes)); local 105 byte[] bytes = Files.readFile(in, 10); 106 assertTrue(Arrays.equals(ASCII.getBytes(Charsets.US_ASCII), bytes)); local 120 byte[] bytes = Files.readFile(in, 500); 121 assertTrue(Arrays.equals(ASCII.getBytes(Charsets.US_ASCII), bytes)); local 135 byte[] bytes = Files.readFile(in, 0); 136 assertTrue(Arrays.equals(ASCII.getBytes(Charsets.US_ASCII), bytes)); local 588 byte[] bytes = newPreFilledByteArray(size) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
UCaseProps.java | 46 ByteBuffer bytes=ICUBinary.getRequiredData(DATA_FILE_NAME); local 47 readData(bytes); 50 private final void readData(ByteBuffer bytes) throws IOException { 52 ICUBinary.readHeader(bytes, FMT, new IsAcceptable()); 55 int count=bytes.getInt(); 63 indexes[i]=bytes.getInt(); 67 trie=Trie2_16.createFromSerialized(bytes); 71 throw new IOException(DATA_FILE_NAME+": not enough bytes for the trie"); 73 // skip padding after trie bytes 74 ICUBinary.skipBytes(bytes, expectedTrieLength-trieLength) [all...] |
/external/icu/icu4c/source/test/cintltst/ |
ncnvtst.c | 1855 uint8_t bytes[8]; \/* partial input bytes resulting in no output *\/ member in struct:__anon20159 [all...] |
/external/icu/icu4c/source/test/perf/collationperf/ |
collperf.cpp | 1332 unsigned char bytes[10]; local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
UCaseProps.java | 42 ByteBuffer bytes=ICUBinary.getRequiredData(DATA_FILE_NAME); local 43 readData(bytes); 46 private final void readData(ByteBuffer bytes) throws IOException { 48 ICUBinary.readHeader(bytes, FMT, new IsAcceptable()); 51 int count=bytes.getInt(); 59 indexes[i]=bytes.getInt(); 63 trie=Trie2_16.createFromSerialized(bytes); 67 throw new IOException(DATA_FILE_NAME+": not enough bytes for the trie"); 69 // skip padding after trie bytes 70 ICUBinary.skipBytes(bytes, expectedTrieLength-trieLength) [all...] |
/external/javassist/src/test/test/javassist/convert/ |
ArrayAccessReplaceTest.java | 281 private byte[] bytes; field in class:ArrayAccessReplaceTest.Simple 302 return bytes[pos]; 346 bytes[pos] = value;
|
/external/kernel-headers/original/uapi/linux/ |
rds.h | 216 uint64_t bytes; member in struct:rds_iovec
|
telephony.h | 202 * always pass full size frames, any unused bytes will be padded with zeros, 257 unsigned int bytes; member in union:telephony_exception
|