HomeSort by relevance Sort by last modified time
    Searched full:bytes (Results 726 - 750 of 10215) sorted by null

<<21222324252627282930>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
string.h 37 /* Copy N bytes of SRC to DEST. */
41 /* Copy N bytes of SRC to DEST, guaranteeing
47 /* Copy no more than N bytes of SRC to DEST, stopping when C is found.
49 or NULL if C was not found in the first N bytes of SRC. */
58 /* Set N bytes of S to C. */
61 /* Compare N bytes of S1 and S2. */
65 /* Search N bytes of S for C. */
76 /* Search N bytes of S for the final occurrence of C. */
108 /* Put a transformation of SRC into no more than N bytes of DEST. */
123 /* Put a transformation of SRC into no more than N bytes of DEST. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
string.h 37 /* Copy N bytes of SRC to DEST. */
41 /* Copy N bytes of SRC to DEST, guaranteeing
47 /* Copy no more than N bytes of SRC to DEST, stopping when C is found.
49 or NULL if C was not found in the first N bytes of SRC. */
58 /* Set N bytes of S to C. */
61 /* Compare N bytes of S1 and S2. */
65 /* Search N bytes of S for C. */
76 /* Search N bytes of S for the final occurrence of C. */
108 /* Put a transformation of SRC into no more than N bytes of DEST. */
123 /* Put a transformation of SRC into no more than N bytes of DEST. *
    [all...]
  /external/flac/libFLAC/
bitreader.c 55 /* also, some sections currently only have fast versions for 4 or 8 bytes per word */
60 /* SWAP_BE_WORD_TO_HOST swaps bytes in a brword (which is always big-endian) if necessary to match host byte order */
86 * But to be practical it should be at least 1K bytes.
138 /* any incomplete word at the tail will be left-justified, and bytes from the read callback are added on the right */
142 unsigned bytes; /* # of bytes in incomplete word at buffer[words] */ member in struct:FLAC__BitReader
211 size_t bytes; local
217 end = br->words + (br->bytes? 1:0);
227 bytes = (br->capacity - br->words) * FLAC__BYTES_PER_WORD - br->bytes;
    [all...]
  /bionic/libc/arch-x86/string/
memcmp.S 22 movl 20(%esp),%ecx /* compare remainder by bytes */
34 subl %ecx,%edi /* four pairs of bytes do not */
memset.S 27 movb %al,%ah /* copy char to all bytes in word */
47 movl %ebx,%ecx /* set remainder by bytes */
swab.S 26 jz L2 # while swaping alternate bytes.
36 jz L4 # while swapping alternate bytes.
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
BerInputStreamTest.java 114 // fill tag and length bytes
116 encoding[1] = (byte) 0x82; // length is encoded in two bytes
134 byte[] encoded = new byte[] { 0x01, 0x01, 0x03, // boolean bytes
135 0x06, 0x02, 0x01, 0x03, // oid bytes
136 0x01, 0x00 // just random bytes
151 // extra bytes for oid
159 // less bytes for oid
195 // negative test case: the stream returns only 4 bytes of content
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERSequence.java 76 byte[] bytes = bOut.toByteArray();
78 out.writeEncoded(SEQUENCE | CONSTRUCTED, bytes);
  /external/chromium/net/tools/flip_server/
ring_buffer.h 49 // appends up-to-'size' bytes to the ringbuffer.
50 virtual int Write(const char * bytes, int size);
54 // If there are no writable bytes available, then *size will contain 0.
59 // If there are no readable bytes available, then *size will contain 0.
62 // Returns the number of bytes read into 'bytes'.
63 virtual int Read(char* bytes, int size);
68 // Reserves contiguous writable empty space in the buffer of size bytes.
  /external/chromium/third_party/libjingle/source/talk/base/
md5.h 11 * To compute the message digest of a chunk of bytes, declare an
13 * needed on buffers full of bytes, and then call MD5Final, which
  /external/dropbear/libtomcrypt/src/pk/asn1/der/short_integer/
der_length_short_integer.c 35 /* get the number of bytes */
54 /* bytes in value */
  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_i2osp.c 20 /* always stores the same # of bytes, pads with leading zero bytes
  /external/elfutils/lib/
md5.h 64 initialization function update the context for the next LEN bytes
71 initialization function update the context for the next LEN bytes
77 /* Process the remaining bytes in the buffer and put result from CTX
78 in first 16 bytes following RESBUF. The result is always in little
87 /* Put result from CTX in first 16 bytes following RESBUF. The result is
96 /* Compute MD5 message digest for bytes read from STREAM. The
97 resulting message digest number will be written into the 16 bytes
101 /* Compute MD5 message digest for LEN bytes beginning at BUFFER. The
  /external/icu4c/i18n/
inputext.h 47 UBool fC1Bytes; // True if any bytes in the range 0x80 - 0x9F are in the input;false by default
50 const uint8_t *fRawInput; // Original, untouched input bytes.
  /external/iptables/extensions/
libxt_quota.c 24 "[!] --quota quota quota (bytes)\n");
31 printf(" quota: %llu bytes", (unsigned long long)q->quota);
  /external/iptables/include/linux/netfilter_ipv4/
ipt_ULOG.h 22 * bytes. So the multipart netlink-message has to be < 131000 bytes.
  /external/kernel-headers/original/asm-generic/
xor.h 19 xor_8regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2)
21 long lines = bytes / (sizeof (long)) / 8;
38 xor_8regs_3(unsigned long bytes, unsigned long *p1, unsigned long *p2,
41 long lines = bytes / (sizeof (long)) / 8;
59 xor_8regs_4(unsigned long bytes, unsigned long *p1, unsigned long *p2,
62 long lines = bytes / (sizeof (long)) / 8;
81 xor_8regs_5(unsigned long bytes, unsigned long *p1, unsigned long *p2,
84 long lines = bytes / (sizeof (long)) / 8;
104 xor_32regs_2(unsigned long bytes, unsigned long *p1, unsigned long *p2)
106 long lines = bytes / (sizeof (long)) / 8
    [all...]
  /external/kernel-headers/original/asm-mips/
msgbuf.h 38 unsigned long msg_cbytes; /* current number of bytes on queue */
40 unsigned long msg_qbytes; /* max number of bytes on queue */
  /external/kernel-headers/original/asm-x86/
unaligned.h 17 * single bytes at locations that are expected to be improperly aligned,
30 * single bytes at locations that are expected to be improperly aligned,
  /external/kernel-headers/original/linux/
ashmem.h 31 __u32 offset; /* offset into region, in bytes, page-aligned */
32 __u32 len; /* length forward from offset, in bytes, page-aligned */
blkpg.h 50 long long start; /* starting offset in bytes */
51 long long length; /* length in bytes */
  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_ULOG.h 22 * bytes. So the multipart netlink-message has to be < 131000 bytes.
  /external/kernel-headers/original/linux/nfsd/
stats.h 23 unsigned int io_read; /* bytes returned to read requests */
24 unsigned int io_write; /* bytes passed in write requests */
  /external/libvpx/vp8/encoder/arm/armv6/
vp8_mse16x16_armv6.asm 42 sel r7, r8, lr ; select bytes with positive difference
44 sel r8, r9, lr ; select bytes with negative difference
63 sel r7, r8, lr ; select bytes with positive difference
65 sel r8, r9, lr ; select bytes with negative difference
82 sel r7, r8, lr ; select bytes with positive difference
84 sel r8, r9, lr ; select bytes with negative difference
104 sel r7, r8, lr ; select bytes with positive difference
107 sel r8, r9, lr ; select bytes with negative difference
vp8_variance16x16_armv6.asm 40 sel r7, r6, lr ; select bytes with positive difference
42 sel r6, r9, lr ; select bytes with negative difference
63 sel r7, r6, lr ; select bytes with positive difference
65 sel r6, r9, lr ; select bytes with negative difference
87 sel r7, r6, lr ; select bytes with positive difference
89 sel r6, r9, lr ; select bytes with negative difference
112 sel r7, r6, lr ; select bytes with positive difference
115 sel r6, r9, lr ; select bytes with negative difference

Completed in 1012 milliseconds

<<21222324252627282930>>