HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 551 - 575 of 2623) sorted by null

<<21222324252627282930>>

  /external/libogg/include/ogg/
ogg.h 54 unsigned char *body_data; /* bytes from packet bodies */
92 long bytes; member in struct:__anon16079
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/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/opencv3/3rdparty/libwebp/mux/
muxread.c 55 // Fill the chunk with the given data (includes chunk header bytes), after some
74 chunk_data.bytes = data + CHUNK_HEADER_SIZE;
81 const uint8_t* bytes = chunk->data_.bytes; local
83 const uint8_t* const last = bytes + size;
96 const WebPData temp = { bytes, hdr_size };
107 bytes += subchunk_size;
110 while (bytes != last) {
112 if (ChunkVerifyAndAssign(&subchunk, bytes, size, size,
131 bytes += subchunk_size
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
integral.hpp 161 uchar4 bytes; local
162 bytes.x = (in & 0x000000ff) >> 0;
163 bytes.y = (in & 0x0000ff00) >> 8;
164 bytes.z = (in & 0x00ff0000) >> 16;
165 bytes.w = (in & 0xff000000) >> 24;
166 return bytes;
402 // save, because step is actually can't be less 512 bytes
  /external/opencv3/modules/hal/include/opencv2/hal/
intrin_cpp.hpp 117 size_t bytes = std::min(sizeof(_Tp2)*n2, sizeof(_Tp)*n); local
119 memcpy(&c.s[0], &s[0], bytes);
  /external/pdfium/third_party/freetype/src/pshinter/
pshrec.h 98 FT_Byte* bytes; member in struct:PS_MaskRec_
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DataMatrixDecodedBitStreamParser.cpp 52 CFX_ByteArray& bytes,
54 CBC_CommonBitSource bits(&bytes);
97 tempCp->Init(bytes, result,
460 CFX_ByteArray* bytes = new CFX_ByteArray(); local
461 bytes->SetSize(count);
466 delete bytes;
471 delete bytes;
474 bytes->SetAt(i, Unrandomize255State(iTemp5, codewordPosition++));
476 BC_FX_ByteString_Append(result, *bytes);
477 delete bytes;
    [all...]
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417HighLevelEncoder.cpp 58 CFX_ByteString bytes; local
59 CBC_UtilCodingConvert::UnicodeToUTF8(wideMsg, bytes);
61 int32_t len = bytes.GetLength();
63 FX_WCHAR ch = (FX_WCHAR)(bytes.GetAt(i) & 0xff);
64 if (ch == '?' && bytes.GetAt(i) != '?') {
71 for (int32_t k = 0; k < bytes.GetLength(); k++) {
72 byteArr.Add(bytes.GetAt(k));
80 } else if (compaction == BYTES) {
262 void CBC_PDF417HighLevelEncoder::encodeBinary(CFX_ByteArray* bytes,
279 t += bytes->GetAt(idx + i) & 0xff;
    [all...]
  /external/piex/src/binary_parse/
range_checked_byte_ptr.cc 144 std::vector<unsigned char> bytes = extractBytes(pos, length); local
146 result.reserve(bytes.size());
147 for (size_t i = 0; i < bytes.size(); ++i) {
148 result.push_back(static_cast<char>(bytes[i]));
  /external/proguard/src/proguard/classfile/constant/
Utf8Constant.java 54 // Initially, we're storing the UTF-8 bytes in a byte array.
59 private byte[] bytes; field in class:Utf8Constant
78 this.bytes = null;
84 * Initializes the UTF-8 data with an array of bytes.
86 public void setBytes(byte[] bytes)
88 this.bytes = bytes;
94 * Returns the UTF-8 data as an array of bytes.
107 return bytes;
116 this.bytes = null
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
LiteralByteString.java 45 * single array of bytes, contiguous in memory. It supports substring by
54 protected final byte[] bytes; field in class:LiteralByteString
60 * @param bytes array to wrap
62 LiteralByteString(byte[] bytes) {
63 this.bytes = bytes;
71 return bytes[index];
76 return bytes.length;
103 result = new BoundedByteString(bytes, getOffsetIntoBytes() + beginIndex,
117 System.arraycopy(bytes, sourceOffset, target, targetOffset, numberToCopy)
    [all...]
  /external/protobuf/src/google/protobuf/io/
coded_stream_unittest.cc 127 // Helper method used by tests for bytes warning. See implementation comment
151 uint8 bytes[10]; // Encoded bytes. member in struct:google::protobuf::io::__anon21864::VarintCase
152 int size; // Encoded size, in bytes.
186 memcpy(buffer_, kVarintCases_case.bytes, kVarintCases_case.size);
201 memcpy(buffer_, kVarintCases_case.bytes, kVarintCases_case.size);
248 memcpy(buffer_ + 1, kVarintCases_case.bytes, kVarintCases_case.size);
279 memcpy(buffer_, kVarintCases_case.bytes, kVarintCases_case.size);
297 memcpy(buffer_, kVarintCases_case.bytes, kVarintCases_case.size);
330 memcmp(buffer_, kVarintCases_case.bytes, kVarintCases_case.size))
403 uint8 bytes[12]; member in struct:google::protobuf::io::__anon21864::VarintErrorCase
494 uint8 bytes[sizeof(uint32)]; \/\/ Encoded bytes. member in struct:google::protobuf::io::__anon21864::Fixed32Case
499 uint8 bytes[sizeof(uint64)]; \/\/ Encoded bytes. member in struct:google::protobuf::io::__anon21864::Fixed64Case
    [all...]
zero_copy_stream_impl.cc 243 int bytes; local
245 bytes = write(file_, buffer_base + total_written, size - total_written);
246 } while (bytes < 0 && errno == EINTR);
248 if (bytes <= 0) {
259 if (bytes < 0) {
264 total_written += bytes;
388 // Hit the end of the stream. Figure out how many more bytes we still have

Completed in 1882 milliseconds

<<21222324252627282930>>