HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 701 - 725 of 1193) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
tcmalloc_unittest.cc 594 // This makes sure that reallocing a small number of bytes in either
856 size_t bytes; local
858 "tcmalloc.pageheap_unmapped_bytes", &bytes));
859 return bytes;
897 // Use up the extra MB/4 bytes from 'a' and also release 'b'.
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
tcmalloc_unittest.cc 594 // This makes sure that reallocing a small number of bytes in either
856 size_t bytes; local
858 "tcmalloc.pageheap_unmapped_bytes", &bytes));
859 return bytes;
897 // Use up the extra MB/4 bytes from 'a' and also release 'b'.
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/
bin-objfmt.c 531 int bytes; member in struct:map_output_info
554 while (!yasm_intnum_check_size(bsd->length, info->bytes * 8, 0, 0))
555 info->bytes *= 2;
556 while (!yasm_intnum_check_size(bsd->istart, info->bytes * 8, 0, 0))
557 info->bytes *= 2;
558 while (!yasm_intnum_check_size(bsd->ivstart, info->bytes * 8, 0, 0))
559 info->bytes *= 2;
568 yasm_intnum_get_sized(intn, info->buf, info->bytes, info->bytes*8, 0, 0,
570 for (i=info->bytes; i != 0; i--
    [all...]
  /external/chromium_org/ui/aura/
root_window_host_x11.cc 1112 unsigned long old_nvalues, bytes; local
    [all...]
  /external/dhcpcd/
dhcpcd.c 667 ssize_t bytes; local
676 bytes = get_raw_packet(iface, ETHERTYPE_IP,
678 if (bytes == 0 || bytes == -1)
680 if (valid_udp_packet(packet, bytes, &from, partialcsum) == -1) {
706 bytes = get_udp_data(&pp, packet);
707 if ((size_t)bytes > sizeof(*dhcp)) {
715 memcpy(dhcp, pp, bytes);
    [all...]
  /external/freetype/src/cff/
cfftypes.h 51 /* off_size :: The size in bytes of object offsets in index. */
54 /* bytes. */
61 /* bytes :: If the index is loaded in memory, its bytes. */
73 FT_Byte* bytes; member in struct:CFF_IndexRec_
  /external/icu4c/test/cintltst/
custrtst.c 1444 char bytes[40]; local
    [all...]
ncnvtst.c 1858 uint8_t bytes[8]; \/* partial input bytes resulting in no output *\/ member in struct:__anon20851
    [all...]
  /external/icu4c/test/perf/collationperf/
collperf.cpp 1328 unsigned char bytes[10]; local
    [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/linux/
telephony.h 206 * always pass full size frames, any unused bytes will be padded with zeros,
261 unsigned int bytes; member in union:telephony_exception
  /external/libmtp/src/
libusb-glue.c 403 /* Check if descriptor length is at least 10 bytes */
714 printf(" IN endpoint maxpacket: %d bytes\n", ptp_usb->inep_maxpacket);
715 printf(" OUT endpoint maxpacket: %d bytes\n", ptp_usb->outep_maxpacket);
791 * 1. Send the command (0x0c bytes) if headers are split, else, send
792 * command plus sizeof(endpoint) - 0x0c bytes.
795 * 3. REPEAT send 0x10000 byte chunks UNTIL remaining bytes < 0x10000
797 * 4. Send remaining bytes MOD sizeof(endpoint)
798 * 5. Send remaining bytes. If this happens to be exactly sizeof(endpoint)
819 unsigned char *bytes; local
823 bytes = malloc(CONTEXT_BLOCK_SIZE)
942 unsigned char *bytes; local
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
userial_linux.c 173 long bytes; member in struct:__anon22201
190 t->bytes =
210 if (t->bytes)
211 ALOGD( "%s:%s, bytes=%ld, lapse=%ld (%d.%02d kbps) (bus data rate %d.%02d kbps) overhead %d(%d percent)\n",
213 t->label, t->bytes, t->lapse,
214 (int)(8 * t->bytes / t->lapse), (int)(800 * t->bytes / (t->lapse)) % 100,
215 (int)(9 * (t->bytes + t->count * t->overhead) / t->lapse), (int)(900 * (t->bytes + t->count * t->overhead) / (t->lapse)) % 100,
216 (int)(t->count * t->overhead), (int)(t->count * t->overhead * 100 / t->bytes)
    [all...]
  /external/libogg/src/
framing.c 307 int bytes = 0, lacing_vals, i; local
312 for (i = 0; i < count; ++i) bytes += (int)iov[i].iov_len;
313 lacing_vals=bytes/255+1;
328 if(_os_body_expand(os,bytes) || _os_lacing_expand(os,lacing_vals))
346 os->lacing_vals[os->lacing_fill+i]=bytes%255;
365 iov.iov_len = op->bytes;
376 int bytes=0; local
480 bytes+=os->header[i+27]=(unsigned char)(os->lacing_vals[i]&0xff);
486 og->body_len=bytes;
493 os->body_returned+=bytes;
639 long bytes=oy->fill-oy->returned; local
693 long bytes; local
960 int bytes=size; local
    [all...]
  /external/libsepol/src/
services.c 934 int hidden next_entry(void *buf, struct policy_file *fp, size_t bytes)
940 nread = fread(buf, bytes, 1, fp->fp);
946 if (bytes > fp->len)
948 memcpy(buf, fp->data, bytes);
949 fp->data += bytes;
950 fp->len -= bytes;
961 size_t bytes = size * n; local
967 if (bytes > fp->len) {
972 memcpy(fp->data, ptr, bytes);
973 fp->data += bytes;
    [all...]
  /external/libvorbis/lib/
vorbisfile.c 72 long bytes=(vf->callbacks.read_func)(buffer,1,READSIZE,vf->datasource); local
73 if(bytes>0)ogg_sync_wrote(&vf->oy,bytes);
74 if(bytes==0 && errno)return(-1);
75 return(bytes);
103 n) search for a new page beginning for n bytes
118 /* skipped n bytes */
718 vf->bittrack+=op_ptr->bytes*8;
776 /* bitrate tracking; add the header's bytes here, the body bytes
    [all...]
  /external/mesa3d/src/mesa/main/
teximage.c 1418 uint64_t bytes = _mesa_format_image_size64(format, width, height, depth); local
    [all...]
  /external/mksh/src/
histrap.c 686 * Bytes 1, 2:
690 * <command byte><command number(4 octets, big endian)><bytes><NUL>
831 histload(Source *s, unsigned char *base, size_t bytes)
837 /* !bytes check as some systems (older FreeBSDs) have buggy memchr */
838 if (!bytes || (cp = memchr(base, COMMAND, bytes)) == NULL)
841 bytes -= ++cp - base;
844 if (bytes < 5 || (cp = memchr(base + 4, '\0', bytes - 4)) == NULL)
866 bytes -= ++cp - base
884 size_t bytes; local
    [all...]
  /external/openssh/
clientloop.c 972 int bytes = 0; local
1174 bytes++;
    [all...]
sshd.c 2254 int bytes = BN_num_bytes(session_key_int); local
    [all...]
  /external/pixman/test/
utils.c 68 * bufLen - number of bytes in buffer
252 /* swap bytes only on big endian systems */
426 uint8_t *bytes = fence_malloc (n_bytes); local
428 if (!bytes)
431 prng_randmemset (bytes, n_bytes, 0);
433 return bytes;
    [all...]
  /external/qemu/
savevm.c 118 /* Padding to get up to 60 bytes (ethernet min packet size, minus FCS). */
227 int bytes; local
231 bytes = fread(buf, 1, size, fp);
232 } while ((bytes == 0) && ferror(fp) && (errno == EINTR));
233 return bytes;
779 fprintf(stderr, "%s: not enough bytes to load structure\n", __FUNCTION__);
797 uint8_t *bytes = (uint8_t*) &v; local
798 qemu_put_buffer(f, bytes, sizeof(float));
804 uint8_t bytes[sizeof(float)]; local
805 qemu_get_buffer(f, bytes, sizeof(float))
    [all...]
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 118 size_t bytes = sk_stream->read(data, length); local
119 if (bytes != length) {
263 * byte into separate bytes (useful for paletted and grayscale images). */
557 // now check that if we are 4-bytes per pixel, we also don't overflow
618 We hit some images (e.g. fruit_.png) who contain bytes that are == colortable_count
    [all...]
  /external/skia/src/pipe/
SkGPipeWrite.cpp 87 virtual void* allocThrow(size_t bytes) SK_OVERRIDE;
123 void* FlattenableHeap::allocThrow(size_t bytes) {
124 void* ptr = sk_malloc_throw(bytes);
297 size_t bytes = fWriter.size() - fBytesNotified; local
298 if (bytes > 0) {
299 fController->notifyWritten(bytes);
300 fBytesNotified += bytes;
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
VCard.java 330 byte[] bytes = new byte[0];
332 bytes = getBytes(avatarURL);
338 setAvatar(bytes);
353 * Specify the bytes of the JPEG for the avatar to use.
354 * If bytes is null, then the avatar will be removed.
357 * @param bytes the bytes of the avatar, or null to remove the avatar data
359 public void setAvatar(byte[] bytes) {
360 setAvatar(bytes, "image/jpeg");
364 * Specify the bytes for the avatar to use as well as the mime type
451 int bytes = (int) file.length(); local
    [all...]

Completed in 3133 milliseconds

<<21222324252627282930>>