/external/kernel-headers/original/uapi/mtd/ |
ubi-user.h | 76 * this number of bytes to the volume character device. The update is finished 77 * when the claimed number of bytes is passed. So, the volume update sequence 99 * user is expected to write the requested amount of bytes (similarly to what 240 * 512 in case of a 512 bytes page NAND flash with no sub-page support. Or 249 * be 2KiB-64 bytes = 1984. Note, that this position is not even 512-bytes 278 * @bytes: volume size in bytes 307 __s64 bytes; member in struct:ubi_mkvol_req 318 * @bytes: new size of the volume in byte 327 __s64 bytes; member in struct:ubi_rsvol_req 392 __s32 bytes; member in struct:ubi_leb_change_req [all...] |
/external/liblzf/ |
lzf.c | 226 ssize_t rc, cs, us, bytes, over = 0; local 271 bytes = cs == -1 ? us : cs; 277 if (l > bytes) 279 over = l - bytes; 280 memmove (header, &p[bytes], over); 284 rd = bytes - l;
|
/external/libogg/include/ogg/ |
ogg.h | 54 unsigned char *body_data; /* bytes from packet bodies */ 92 long bytes; member in struct:__anon29140 125 extern void oggpack_readinit(oggpack_buffer *b,unsigned char *buf,int bytes); 144 extern void oggpackB_readinit(oggpack_buffer *b,unsigned char *buf,int bytes); 173 extern int ogg_sync_wrote(ogg_sync_state *oy, long bytes);
|
/external/libpng/contrib/gregbook/ |
wpng.c | 704 ulg bytes; local 717 bytes = fread(wpng_info.image_data, 1, image_bytes, wpng_info.infile); 718 if (bytes != image_bytes) { 719 fprintf(stderr, PROGNAME ": expected %lu bytes, got %lu bytes\n", 720 image_bytes, bytes); 733 ulg bytes; local 744 bytes = fread(wpng_info.image_data, 1, rowbytes, wpng_info.infile); 745 if (bytes != rowbytes) { 747 ": expected %lu bytes, got %lu bytes (row %ld)\n", rowbytes [all...] |
/external/libvorbis/lib/ |
info.c | 48 static void _v_writestring(oggpack_buffer *o,const char *s, int bytes){ 50 while(bytes--){ 55 static void _v_readstring(oggpack_buffer *o,char *buf,int bytes){ 56 while(bytes--){ 355 oggpack_readinit(&opb,op->packet,op->bytes); 383 oggpack_readinit(&opb,op->packet,op->bytes); 462 int bytes = strlen(ENCODE_VENDOR_STRING); local 469 oggpack_write(opb,bytes,32); 470 _v_writestring(opb,ENCODE_VENDOR_STRING, bytes); 558 op->bytes=oggpack_bytes(&opb) [all...] |
psytune.c | 293 /* we cheat on the WAV header; we just bypass 44 bytes and never 305 long bytes=fread(buffer2,1,framesize*2,stdin); local 306 if(bytes<framesize*2) 307 memset(buffer2+bytes,0,framesize*2-bytes); 309 if(bytes!=0){
|
/external/lldb/include/lldb/Core/ |
InputReader.h | 31 const char *bytes, 37 const char *bytes; member in struct:lldb_private::InputReader::HandlerData 46 bytes(b), 220 HandleRawBytes (const char *bytes, size_t bytes_len);
|
RegisterValue.h | 112 RegisterValue (uint8_t *bytes, size_t length, lldb::ByteOrder byte_order) 114 SetBytes (bytes, length, byte_order); 141 // described by "reg_info" and only copy the least significant bytes 144 // abiding the "dst_byte_order"). Returns the number of bytes copied 336 SetBytes (const void *bytes, size_t length, lldb::ByteOrder byte_order); 397 uint8_t bytes[kMaxRegisterByteSize]; // This must be big enough to hold any register for any supported target. member in struct:lldb_private::RegisterValue::__anon29838::__anon29839
|
Value.h | 60 uint8_t bytes[kMaxByteSize]; member in struct:lldb_private::Value::Vector 76 SetBytes(vector.bytes, vector.length, vector.byte_order); 87 SetBytes(const void *bytes, size_t length, lldb::ByteOrder byte_order) 92 ::memcpy(this->bytes, bytes, length < kMaxByteSize ? length : kMaxByteSize); 110 if (length == 1) scalar = *(const uint8_t *)bytes; 111 else if (length == 2) scalar = *(const uint16_t *)bytes; 112 else if (length == 4) scalar = *(const uint32_t *)bytes; 113 else if (length == 8) scalar = *(const uint64_t *)bytes; 115 else if (length >= 16) scalar = *(const __uint128_t *)bytes; [all...] |
/external/lldb/source/Core/ |
RegisterValue.cpp | 189 error.SetErrorStringWithFormat ("register buffer is too small to receive %u bytes of data.", src_len); 197 error.SetErrorStringWithFormat("%u bytes is too big to store in register %s (%u bytes)", src_len, reg_info->name, dst_len); 201 // Use a data extractor to correctly copy and pad the bytes read into the 338 // Cap the data length if there is more than enough bytes for this register 344 memset (m_data.buffer.bytes, 0, sizeof (m_data.buffer.bytes)); 379 m_data.buffer.bytes, // dst buffer 427 std::vector<uint8_t> bytes; local 432 while (!Pair.first.getAsInteger(0, byte) && bytes.size() < byte_size) [all...] |
/external/lldb/source/Plugins/Process/POSIX/ |
RegisterContext_i386.h | 111 uint8_t bytes[8]; member in struct:RegisterContext_i386::MMSReg 116 uint8_t bytes[16]; member in struct:RegisterContext_i386::XMMReg
|
/external/lldb/source/Plugins/Process/Utility/ |
RegisterContextDarwin_i386.h | 85 uint8_t bytes[10]; member in struct:RegisterContextDarwin_i386::MMSReg 91 uint8_t bytes[16]; member in struct:RegisterContextDarwin_i386::XMMReg
|
/external/lldb/tools/driver/ |
IOChannel.cpp | 306 const char *bytes = (const char *) src; local 310 io_channel->m_prompt_str.append (bytes, src_len); 325 std::string tmp_str (bytes, src_len); 328 io_channel->OutWrite (bytes, src_len, NO_ASYNC);
|
/external/mesa3d/src/gallium/drivers/i915/ |
i915_debug.c | 905 unsigned long bytes = (unsigned long) (end - start) * 4; local 917 debug_printf( "\n\nBATCH: (%d)\n", (int)bytes / 4); 920 stream.offset < bytes) 925 assert(stream.offset <= bytes &&
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_setup_point.c | 323 unsigned bytes; local 360 &bytes);
|
/external/mesa3d/src/gallium/drivers/nvc0/ |
nvc0_transfer.c | 279 unsigned bytes = MIN2(size, 1 << 17); local 288 PUSH_DATA (push, bytes); 294 srcoff += bytes; 295 dstoff += bytes; 296 size -= bytes;
|
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/ |
SIMCCodeEmitter.cpp | 111 ///getEncodingBytes - Get then size in bytes of this instructions encoding. 134 unsigned bytes = getEncodingBytes(MI); local 135 for (unsigned i = 0; i < bytes; i++) {
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
i915_debug.c | 820 GLuint bytes = (end - start) * 4; local 823 printf("\n\nBATCH: (%d)\n", bytes / 4); 830 stream.offset < bytes && 836 assert(stream.offset <= bytes &&
|
/external/mesa3d/src/mesa/main/ |
uniform_query.cpp | 294 unsigned bytes = sizeof(src[0]) * elements; local 295 if (bufSize < 0 || bytes > (unsigned) bufSize) { 298 " but %u bytes are required)", bufSize, bytes ); 314 memcpy(paramsOut, src, bytes);
|
/external/mesa3d/src/mesa/swrast/ |
s_blend.c | 76 GLint bytes; local 86 bytes = 4 * n * sizeof(GLubyte); 88 bytes = 4 * n * sizeof(GLushort); 90 bytes = 4 * n * sizeof(GLfloat); 92 memcpy(src, dst, bytes); [all...] |
/external/nanopb-c/ |
pb_encode.c | 176 * for pointer-type string and bytes fields, the array entries are 428 const uint8_t *bytes = value; local 430 lebytes[0] = bytes[3]; 431 lebytes[1] = bytes[2]; 432 lebytes[2] = bytes[1]; 433 lebytes[3] = bytes[0]; 443 const uint8_t *bytes = value; local 445 lebytes[0] = bytes[7]; 446 lebytes[1] = bytes[6]; 447 lebytes[2] = bytes[5] 617 const pb_bytes_array_t *bytes = (const pb_bytes_array_t*)src; local [all...] |
/external/nfacct/ |
nfacct.c | 173 "{ pkts = %.20llu, bytes = %.20llu } = %s;", 250 static int _nfacct_cmd_add(char *name, int pkts, int bytes) 281 nla_put_u64(msg, NFACCT_BYTES, htobe64(bytes)); 584 uint64_t pkts, bytes; local 595 ret = sscanf(buffer, "{ pkts = %llu, bytes = %llu } = %s", 596 &pkts, &bytes, name); 601 if ((ret = _nfacct_cmd_add(name, pkts, bytes)) != 0)
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
Pipeline.java | 35 * Input class for the pipelined parser. Buffer all bytes read from the socket 87 byte[] bytes; field in class:Pipeline.Buffer 93 public Buffer(byte[] bytes, int length) { 96 this.bytes = bytes; 100 int retval = bytes[ptr++] & 0xFF; 131 public void write(byte[] bytes, int start, int length) throws IOException { 134 Buffer buff = new Buffer(bytes, length); 142 public void write(byte[] bytes) throws IOException { 145 Buffer buff = new Buffer(bytes, bytes.length) [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Response.java | 223 * return false once all locally-available body bytes have been read. 237 * Returns the number of bytes in that will returned by {@link #bytes}, or 250 public final byte[] bytes() throws IOException { method in class:Response.Body 286 return new String(bytes(), charset().name()); 362 * Body#ready} to check if bytes should be read immediately. While there is
|
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/pshinter/ |
pshrec.h | 102 FT_Byte* bytes; member in struct:PS_MaskRec_
|