Searched defs:bytes (Results 276 - 300 of 1230) sorted by relevance

<<11121314151617181920>>

/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_set.h70 struct ip_set_counter_match bytes; member in struct:xt_set_info_match_v3
/external/libnl/include/linux/
H A Dgen_stats.h15 * @bytes: number of seen bytes
20 __u64 bytes; member in struct:gnet_stats_basic
/external/libvorbis/examples/
H A Ddecoder_example.c57 int bytes; local
90 bytes=fread(buffer,1,4096,stdin);
91 ogg_sync_wrote(&oy,bytes);
96 if(bytes<4096)break;
177 bytes=fread(buffer,1,4096,stdin);
178 if(bytes==0 && i<2){
182 ogg_sync_wrote(&oy,bytes);
286 bytes=fread(buffer,1,4096,stdin);
287 ogg_sync_wrote(&oy,bytes);
288 if(bytes
[all...]
H A Dencoder_example.c65 /* we cheat on the WAV header; we just bypass 44 bytes (simplest WAV
66 header is 44 bytes) and assume that the data is 44.1khz, stereo, 16 bit
182 long bytes=fread(readbuffer,1,READ*4,stdin); /* stereo hardwired here */ local
184 if(bytes==0){
198 for(i=0;i<bytes/4;i++){
/external/lldb/include/lldb/Core/
H A DOpcode.h66 Opcode (uint8_t *bytes, size_t length) argument
68 SetOpcodeBytes (bytes, length);
183 SetOpcodeBytes (const void *bytes, size_t length) argument
185 if (bytes && length > 0)
189 assert (length < sizeof (m_data.inst.bytes));
190 memcpy (m_data.inst.bytes, bytes, length);
206 return m_data.inst.bytes;
245 case Opcode::eTypeBytes: return m_data.inst.bytes;
262 uint8_t bytes[1
[all...]
/external/lldb/tools/debugserver/source/
H A DRNBServices.cpp205 const UInt8 *bytes = ::CFDataGetBytePtr (plistData.get()); local
206 if (bytes != NULL && size > 0)
208 plist.assign((char *)bytes, size);
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp10 // This class implements the disassembler of strings of bytes written in
39 VectorMemoryObject(const ByteArrayTy &bytes) : Bytes(bytes) {} argument
81 Size = 1; // skip illegible bytes
110 // Strip to the end of line if we already processed any bytes on this
220 // It's a real token, get the bytes and emit them
/external/lzma/CPP/7zip/UI/Common/
H A DArchiveOpenCallback.cpp16 STDMETHODIMP COpenCallbackImp::SetTotal(const UInt64 *files, const UInt64 *bytes) argument
20 return ReOpenCallback->SetTotal(files, bytes);
23 return Callback->Open_SetTotal(files, bytes);
27 STDMETHODIMP COpenCallbackImp::SetCompleted(const UInt64 *files, const UInt64 *bytes) argument
31 return ReOpenCallback->SetCompleted(files, bytes);
34 return Callback->Open_SetCompleted(files, bytes);
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.c309 unsigned bytes = n * sizeof(struct tgsi_token); local
310 struct tgsi_token *new_tokens = (struct tgsi_token *) MALLOC(bytes);
312 memcpy(new_tokens, tokens, bytes);
323 unsigned bytes = num_tokens * sizeof(struct tgsi_token); local
324 return (struct tgsi_token *) MALLOC(bytes);
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_resource_buffer.c167 unsigned bytes,
182 buf->b.b.width0 = bytes;
165 i915_user_buffer_create(struct pipe_screen *screen, void *ptr, unsigned bytes, unsigned bind) argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_resource_buffer.c378 unsigned bytes,
393 sbuf->b.b.width0 = bytes;
376 svga_user_buffer_create(struct pipe_screen *screen, void *ptr, unsigned bytes, unsigned bind) argument
/external/mesa3d/src/glx/apple/
H A Dglxreply.c40 const GLint bytes = (reply_is_always_array) local
42 const GLint extra = 4 - (bytes & 3);
44 _XRead(dpy, dest, bytes);
/external/mesa3d/src/mesa/main/
H A Dtexcompress.c468 * \param srcRowStride stride in bytes between rows of blocks in the
480 GLuint bytes, bw, bh; local
482 bytes = _mesa_get_format_bytes(format);
492 texImage.RowStride = srcRowStride * bh / bytes;
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
H A DAbstractTransformTask.java144 byte bytes[] = getBytes(zip);
149 new ByteArrayInputStream(bytes)
154 bytes = process(bytes);
166 outEntry.setSize(bytes.length);
171 crc.update(bytes);
173 outEntry.setCompressedSize(bytes.length);
176 out.write(bytes);
211 * @param bytes
216 private byte[] process(byte[] bytes) throw argument
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
H A DPlayReadyHeader.java33 * The sample Id is used as the IV in CTR mode. Block offset, starting at 0 and incremented by 1 after every 16 bytes, from the beginning of the sample is used as the Counter.
35 * The sample ID for each sample (media object) is stored as an ASF payload extension system with the ID of ASF_Payload_Extension_Encryption_SampleID = {6698B84E-0AFA-4330-AEB2-1C0A98D7A44D}. The payload extension can be stored as a fixed size extension of 8 bytes.
141 public abstract void parse(ByteBuffer bytes); argument
164 public void parse(ByteBuffer bytes) { argument
166 byte[] str = new byte[bytes.slice().limit()];
167 bytes.get(str);
212 public void parse(ByteBuffer bytes) { argument
213 this.value = bytes.duplicate();
240 public void parse(ByteBuffer bytes) { argument
241 this.value = bytes
[all...]
/external/nanopb-c/tests/decode_unittests/
H A Ddecode_unittests.c33 if (byte != ref->bytes[i])
171 struct { size_t size; uint8_t bytes[5]; } d; member in struct:__anon28051
176 TEST((s = S("\x01\xFF"), pb_dec_bytes(&s, &f, &d) && d.size == 1 && d.bytes[0] == 0xFF))
180 /* Note: the size limit on bytes-fields is not strictly obeyed, as
185 * 6 bytes should error out.
252 struct { size_t size; uint8_t bytes[10]; } ref; member in struct:__anon28052
258 ref.size = 1; ref.bytes[0] = 0x55;
261 ref.size = 3; ref.bytes[0] = ref.bytes[1] = ref.bytes[
[all...]
/external/nanopb-c/tests/encode_unittests/
H A Dencode_unittests.c39 * Y is a string, which may contain null bytes. Null terminator is ignored.
172 struct { size_t size; uint8_t bytes[5]; } value = {5, {'x', 'y', 'z', 'z', 'y'}}; member in struct:__anon28053
266 COMMENT("Test pb_encode with bytes message.")
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DBenchmark.java77 /** The size of the HTTP response body, in uncompressed bytes. */
215 /** Returns a gzipped copy of {@code bytes}. */
216 private byte[] gzip(byte[] bytes) throws IOException { argument
219 gzippedOut.write(bytes);
/external/openssl/crypto/evp/
H A Devp_pkey.c219 const unsigned char *bytes, int len)
222 type, bytes, len)) return 1;
228 const unsigned char *bytes, int len)
231 type, bytes, len)) return 1;
237 const unsigned char *bytes, int len)
240 type, bytes, len)) return 1;
217 EVP_PKEY_add1_attr_by_OBJ(EVP_PKEY *key, const ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len) argument
226 EVP_PKEY_add1_attr_by_NID(EVP_PKEY *key, int nid, int type, const unsigned char *bytes, int len) argument
235 EVP_PKEY_add1_attr_by_txt(EVP_PKEY *key, const char *attrname, int type, const unsigned char *bytes, int len) argument
/external/openssl/crypto/rand/
H A Drandfile.c109 int RAND_load_file(const char *file, long bytes) argument
111 /* If bytes >= 0, read up to 'bytes' bytes.
112 * if bytes == -1, read complete file. */
135 if (bytes == 0) return(ret);
146 * of bytes from a random device, nor do we want to use buffered
149 bytes = (bytes == -1) ? 2048 : bytes; /* o
[all...]
/external/pixman/test/
H A Drotate-test.c64 uint32_t *bytes = malloc (WIDTH * HEIGHT * 4); local
67 prng_randmemset (bytes, WIDTH * HEIGHT * 4, 0);
70 format, WIDTH, HEIGHT, bytes, WIDTH * 4);
73 pixman_image_set_destroy_function (image, on_destroy, bytes);
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DByteStringMicro.java36 * Immutable array of bytes.
42 private final byte[] bytes; field in class:ByteStringMicro
44 private ByteStringMicro(final byte[] bytes) { argument
45 this.bytes = bytes;
54 return bytes[index];
58 * Gets the number of bytes.
61 return bytes.length;
68 return bytes.length == 0;
80 * Copies the given bytes int
82 copyFrom(final byte[] bytes, final int offset, final int size) argument
92 copyFrom(final byte[] bytes) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysevents.cc342 const char *bytes; local
343 if (msg->FindString("bytes", &bytes) == B_OK) {
348 keysym.unicode = Translate2Unicode(bytes);
372 const char *bytes; local
373 if (msg->FindString("bytes", &bytes) == B_OK) {
374 keysym.unicode = Translate2Unicode(bytes);
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_macmouse.c56 int row, bytes; local
72 bytes = (w+7)/8;
75 SDL_memcpy(&cursor->curs.data[row], data, bytes);
76 data += bytes;
79 SDL_memcpy(&cursor->curs.mask[row], mask, bytes);
80 mask += bytes;
/external/skia/bench/
H A DMemoryBench.cpp64 const size_t bytes = num*sizeof(int); local
65 int* ints = (int*)sk_malloc_throw(bytes);
66 sk_bzero(ints, bytes);

Completed in 3867 milliseconds

<<11121314151617181920>>