/bootable/diskinstaller/ |
installer_img_layout.conf | 4 # bytes in a disk "block", must be a power of 2!
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/ |
DERBitString.java | 66 * return the correct number of bytes for a bit string defined in 71 int bytes = 4; local 78 bytes--; 81 byte[] result = new byte[bytes]; 82 for (int i = 0; i < bytes; i++) 202 byte[] bytes = new byte[getBytes().length + 1]; 204 bytes[0] = (byte)getPadBits(); 205 System.arraycopy(getBytes(), 0, bytes, 1, bytes.length - 1); local 207 out.writeEncoded(BIT_STRING, bytes); [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/ |
ExtendedDigest.java | 7 * Return the size in bytes of the internal buffer the digest applies it's compression
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/ |
DESedeParameters.java | 7 * DES-EDE Key length in bytes. 25 * @param key bytes making up the key 27 * @param length number of bytes making up the key 48 * @param key bytes making up the key
|
/external/chromium/base/win/ |
scoped_bstr.cc | 51 BSTR ScopedBstr::AllocateBytes(size_t bytes) { 52 Reset(SysAllocStringByteLen(NULL, static_cast<UINT>(bytes))); 56 void ScopedBstr::SetByteLen(size_t bytes) { 59 data[-1] = static_cast<uint32>(bytes);
|
/external/chromium/chrome/browser/ui/webui/ |
sync_internals_html_source.cc | 40 scoped_refptr<RefCountedBytes> bytes(new RefCountedBytes()); 41 bytes->data.resize(html.size()); 42 std::copy(html.begin(), html.end(), bytes->data.begin()); 43 SendResponse(request_id, bytes);
|
/external/chromium/chrome/common/ |
guid_unittest.cc | 13 uint64 bytes[] = { 0, 0 }; local 14 std::string clientid = guid::RandomDataToGUIDString(bytes); 19 uint64 bytes[] = { 0x0123456789ABCDEFULL, 0xFEDCBA9876543210ULL }; local 20 std::string clientid = guid::RandomDataToGUIDString(bytes);
|
/external/clang/test/Analysis/ |
keychainAPI-diagnostic-visitor.m | 26 char *bytes; 28 st = SecKeychainItemCopyContent(2, ptr, ptr, &length, (void **)&bytes); // expected-note {{Data is allocated here}} 29 x = bytes; 31 x = bytes;;
|
/external/iptables/extensions/ |
libxt_quota.man | 7 The quota in bytes.
|
/external/kernel-headers/original/asm-arm/ |
shmparam.h | 7 * every size/ways bytes.
|
/external/kernel-headers/original/linux/netfilter/ |
xt_multiport.h | 13 /* Must fit inside union xt_matchinfo: 16 bytes */
|
/external/oauth/core/src/main/java/net/oauth/client/ |
ExcerptInputStream.java | 8 * A decorator that retains a copy of the first few bytes of data. 26 // Only add the ellipsis if there are at least LIMIT bytes 39 /** The first few bytes of data, plus ELLIPSIS if there are more bytes. */
|
/external/openssh/ |
buffer.c | 160 /* Returns the number of bytes of data in the buffer. */ 174 error("buffer_get_ret: trying to get more bytes %d than in buffer %d", 190 /* Consumes the given number of bytes from the beginning of the buffer. */ 193 buffer_consume_ret(Buffer *buffer, u_int bytes) 195 if (bytes > buffer->end - buffer->offset) { 196 error("buffer_consume_ret: trying to get more bytes than in buffer"); 199 buffer->offset += bytes; 204 buffer_consume(Buffer *buffer, u_int bytes) 206 if (buffer_consume_ret(buffer, bytes) == -1) 210 /* Consumes the given number of bytes from the end of the buffer. * [all...] |
/external/oprofile/libutil/ |
op_deviceio.h | 38 * Read size bytes from a device into buffer buf. 40 * then a read is requested in one go of size bytes. 43 * calls if the number of bytes read is not what is requested 46 * The number of bytes read is returned, or a negative number
|
/external/skia/src/gpu/ |
GrAllocPool.h | 27 * Returns a block of memory bytes size big. This address must not be 31 void* alloc(size_t bytes); 34 * Releases the most recently allocated bytes back to allocpool. 36 void release(size_t bytes);
|
/external/valgrind/main/memcheck/tests/ |
pointer-trace.stderr.exp | 1 1,000 bytes in 1 blocks are definitely lost in loss record ... of ...
|
/libcore/luni/src/main/java/java/security/spec/ |
PKCS8EncodedKeySpec.java | 28 * bytes. 31 * the encoded key bytes. 39 * Returns a copy of the encoded key bytes. 41 * @return a copy of the encoded key bytes.
|
X509EncodedKeySpec.java | 27 * bytes. 30 * the encoded key bytes. 38 * Returns the encoded key bytes. 40 * @return the encoded key bytes.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/ |
xt_multiport.h | 13 /* Must fit inside union xt_matchinfo: 16 bytes */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/ |
xt_multiport.h | 13 /* Must fit inside union xt_matchinfo: 16 bytes */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/ |
xt_multiport.h | 13 /* Must fit inside union xt_matchinfo: 16 bytes */
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
StdAttributeFactory.java | 217 ByteArray bytes = cf.getBytes(); local 219 int maxStack = bytes.getUnsignedShort(offset); // u2 max_stack 220 int maxLocals = bytes.getUnsignedShort(offset + 2); // u2 max_locals 221 int codeLength = bytes.getInt(offset + 4); // u4 code_length 225 observer.parsed(bytes, offset, 2, 227 observer.parsed(bytes, offset + 2, 2, 229 observer.parsed(bytes, offset + 4, 4, 244 new BytecodeArray(bytes.slice(codeOffset, codeOffset + codeLength), 251 int exceptionTableLength = bytes.getUnsignedShort(offset); 257 observer.parsed(bytes, offset, 2 321 ByteArray bytes = cf.getBytes(); local 355 ByteArray bytes = cf.getBytes(); local 384 ByteArray bytes = cf.getBytes(); local 412 ByteArray bytes = cf.getBytes(); local 469 ByteArray bytes = cf.getBytes(); local 510 ByteArray bytes = cf.getBytes(); local 533 ByteArray bytes = cf.getBytes(); local 682 ByteArray bytes = cf.getBytes(); local 704 ByteArray bytes = cf.getBytes(); local [all...] |
/dalvik/dexgen/src/com/android/dexgen/util/ |
ByteArray.java | 31 private final byte[] bytes; field in class:ByteArray 36 /** {@code >= 0, <= bytes.length}; size computed as 43 * @param bytes {@code non-null;} the underlying array 45 * @param end {@code >= start, <= bytes.length;} end index of 48 public ByteArray(byte[] bytes, int start, int end) { 49 if (bytes == null) { 50 throw new NullPointerException("bytes == null"); 61 if (end > bytes.length) { 62 throw new IllegalArgumentException("end > bytes.length"); 65 this.bytes = bytes [all...] |
/dalvik/dx/src/com/android/dx/util/ |
ByteArray.java | 31 private final byte[] bytes; field in class:ByteArray 36 /** {@code >= 0, <= bytes.length}; size computed as 43 * @param bytes {@code non-null;} the underlying array 45 * @param end {@code >= start, <= bytes.length;} end index of 48 public ByteArray(byte[] bytes, int start, int end) { 49 if (bytes == null) { 50 throw new NullPointerException("bytes == null"); 61 if (end > bytes.length) { 62 throw new IllegalArgumentException("end > bytes.length"); 65 this.bytes = bytes [all...] |
/development/tools/axl/ |
chewperf.py | 59 bytes = sum(x[1] for x in chewed) 60 print "total time", totalTime, "bytes", bytes, "rate", bytes * 1000 / totalTime 65 bytes = x[1] 67 buckets[bucket] += bytes 69 buckets[bucket] = bytes
|