/external/bouncycastle/src/main/java/org/bouncycastle/asn1/sec/ |
ECPrivateKeyStructure.java | 38 byte[] bytes = BigIntegers.asUnsignedByteArray(key); 43 v.add(new DEROctetString(bytes)); 60 byte[] bytes = BigIntegers.asUnsignedByteArray(key); 65 v.add(new DEROctetString(bytes));
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/ |
CTSBlockCipher.java | 40 * an input of len bytes. 44 * with len bytes of input. 62 * doFinal with an input of len bytes. 66 * with len bytes of input. 80 * @return the number of output bytes copied to out. 106 * process an array of bytes, producing output if necessary. 110 * @param len the number of bytes to be copied out of the input array. 113 * @return the number of output bytes copied to out. 179 * @return the number of output bytes copied to out.
|
/external/chromium/chrome/browser/chromeos/ |
network_message_observer_unittest.cc | 15 int64 end_sec, int64 bytes, int64 used) { 20 plan.plan_data_bytes = bytes; 30 // (unlimited OR used bytes < max bytes) AND
|
/external/chromium/chrome/browser/parsers/ |
metadata_parser_jpeg_factory.h | 19 virtual bool CanParse(const FilePath& path, char* bytes, int bytes_size);
|
/external/chromium/chrome/browser/sync/protocol/ |
bookmark_specifics.proto | 22 optional bytes favicon = 2;
|
/external/clang/test/PCH/ |
preamble.c | 4 // RUN: %clang_cc1 -include-pch %t -preamble-bytes=317,1 -DFOO=f -verify %s -emit-llvm -o - | FileCheck %s
|
/external/clang/test/SemaObjC/ |
objc-string-constant.m | 18 char *bytes;
|
/external/compiler-rt/lib/asan/output_tests/ |
global-overflow.cc | 12 // Check-Common: {{0x.* is located 0 bytes to the right of global variable}}
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
StringDataItem.java | 47 * @return {@code >= 2}; the write size, in bytes 72 ByteArray bytes = value.getBytes(); local 78 out.annotate(bytes.size() + 1, value.toQuoted()); 82 out.write(bytes);
|
/external/e2fsprogs/lib/ext2fs/ |
tst_super_size.c | 2 * This testing program makes sure superblock size is 1024 bytes long
|
/external/e2fsprogs/misc/ |
e2freefrag.h | 12 unsigned long chunkbytes; /* chunk size in bytes */
|
/external/guava/guava/src/com/google/common/hash/ |
AbstractNonStreamingHashFunction.java | 48 public Hasher putBytes(byte[] bytes) { 50 stream.write(bytes); 58 public Hasher putBytes(byte[] bytes, int off, int len) { 59 stream.write(bytes, off, len);
|
MessageDigestHashFunction.java | 78 @Override public Hasher putBytes(byte[] bytes) { 80 digest.update(bytes); 84 @Override public Hasher putBytes(byte[] bytes, int off, int len) { 86 checkPositionIndexes(off, off + len, bytes.length); 87 digest.update(bytes, off, len); 94 digest.update(scratch.array(), 0, Shorts.BYTES); 102 digest.update(scratch.array(), 0, Ints.BYTES); 110 digest.update(scratch.array(), 0, Longs.BYTES); 138 digest.update(scratch.array(), 0, Chars.BYTES);
|
/external/icu4c/i18n/ |
bocsu.h | 38 * - byte stream (unsigned 8-bit bytes) 51 * - Similar to a UTF, encoding the length of the byte sequence in the lead bytes. 56 * We encode differences with few bytes if their absolute values are small. 67 * For large absolute values, the difference is similarly encoded in three bytes. 70 * for lead/single bytes so that the middle range of single bytes is as large 74 * lengths, the trail bytes establish correct order. 94 * Number of lead bytes: 96 * 2*80=160 single bytes for !=0
|
/external/icu4c/test/intltest/ |
testutil.h | 30 static UnicodeString hex(const uint8_t* bytes, int32_t len);
|
/external/icu4c/tools/genrb/ |
rle.h | 27 * Two bytes are packed into a single char, with a single extra zero byte at 32 * Since an encoded run occupies 3 bytes, we only encode runs of 4 or 33 * more bytes. Thus we have n > 0 and n != ESCAPE_BYTE and n <= 0xFF. 60 * Construct an array of bytes from a run-length encoded string.
|
/external/kernel-headers/original/asm-arm/ |
statfs.h | 24 * With EABI there is 4 bytes of padding added to this structure.
|
/external/kernel-headers/original/linux/ |
ppp_defs.h | 126 __u32 ppp_ibytes; /* bytes received */ 127 __u32 ppp_ioctects; /* bytes received not in error */ 132 __u32 ppp_obytes; /* raw bytes sent */ 133 __u32 ppp_ooctects; /* frame bytes sent */ 151 __u32 unc_bytes; /* total uncompressed bytes */ 153 __u32 comp_bytes; /* compressed bytes */ 155 __u32 inc_bytes; /* incompressible bytes */ 159 __u32 in_count; /* Bytes received */ 160 __u32 bytes_out; /* Bytes transmitted */
|
/external/libffi/src/ |
prep_cif.c | 91 unsigned bytes = 0; local 123 bytes = STACK_ARG_SIZE(sizeof(void*)); 143 bytes += sizeof(void*); 148 if (((*ptr)->alignment - 1) & bytes) 149 bytes = ALIGN(bytes, (*ptr)->alignment); 151 bytes += STACK_ARG_SIZE((*ptr)->size); 156 cif->bytes = bytes;
|
/external/openssl/crypto/rand/ |
randfile.c | 106 int RAND_load_file(const char *file, long bytes) 108 /* If bytes >= 0, read up to 'bytes' bytes. 109 * if bytes == -1, read complete file. */ 132 if (bytes == 0) return(ret); 143 * of bytes from a random device, nor do we want to use buffered 146 bytes = (bytes == -1) ? 2048 : bytes; /* ok, is 2048 enough? * [all...] |
/external/protobuf/src/google/protobuf/io/ |
zero_copy_stream.h | 45 // the final data structure where the bytes are to be stored, and the caller 49 // As an example, consider the common case in which you are reading bytes 95 // int bytes = read(infd, buffer, size); 96 // if (bytes < size) { 98 // output->BackUp(size - bytes); 137 // * Otherwise, "size" points to the actual number of bytes read and "data" 138 // points to a pointer to a buffer containing these bytes. 147 // Backs up a number of bytes, so that the next call to Next() returns 160 // * The last "count" bytes of the last buffer returned by Next() will be 165 // Skips a number of bytes. Returns false if the end of the stream i [all...] |
/external/quake/quake/src/WinQuake/ |
snd_sun.cpp | 183 int bytes, b; local 194 bytes = (paintedtime - wbufp) * bsize; 196 if (!bytes) 199 if (bytes > sizeof(writebuf)) { 200 bytes = sizeof(writebuf); 201 stop = wbufp + bytes/bsize; 207 for (b = bytes; b; b--) { 214 if (write(audio_fd, writebuf, bytes) < bytes)
|
/external/skia/include/views/ |
SkSystemEventTypes.h | 16 2) keep them <= 4 bytes, so we can avoid an allocation in SkEvent::setType()
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
Leb128Utils.java | 39 * Gets the number of bytes in the unsigned LEB128 encoding of the 43 * @return its write size, in bytes 61 * Gets the number of bytes in the signed LEB128 encoding of the 65 * @return its write size, in bytes
|
/external/svox/pico/lib/ |
picobase.h | 41 /* maximum number of bytes of an UTF8 character */ 55 * the UTF8 string 'utf8str' of maximum length maxlen (in bytes) 57 * @param maxlen : max length (in bytes) accessible in utf8str 68 * Determines the number of bytes an UTF8 character used based 71 * @return positive value in {1,4} : number of bytes of the UTF8 character 83 * @param lowercaseMaxLen : maximal number of bytes available in 'lowercase' 94 * @param uppercaseMaxLen : maximal number of bytes available in 'uppercase' 107 * @param utf8char : zero terminated UTF8 character containing 1 to 4 bytes (output) 131 * @param utf8char : zero terminated UTF8 character containing 1 to 4 bytes (output)
|