/external/skia/src/ports/ |
H A D | SkDiscardableMemory_none.cpp | 12 SkDiscardableMemory* SkDiscardableMemory::Create(size_t bytes) { argument 13 return SkGetGlobalDiscardableMemoryPool()->create(bytes);
|
/external/clang/test/CodeGen/ |
H A D | 2005-07-26-UnionInitCrash.c | 3 union { char bytes[8]; double alignment; }EQ1 = {0,0,0,0,0,0,0,0}; member in union:__anon2073
|
/external/kmod/shared/ |
H A D | strbuf.h | 9 char *bytes; member in struct:strbuf
|
H A D | scratchbuf.h | 12 char *bytes; member in struct:scratchbuf 24 return buf->bytes; 28 .bytes = buf_, \
|
/external/libchrome/crypto/ |
H A D | random.cc | 13 void RandBytes(void *bytes, size_t length) { argument 17 base::RandBytes(bytes, length);
|
H A D | random_unittest.cc | 15 // Currently, that means the bytes cannot be all the same (e.g. all zeros). 16 bool IsTrivial(const std::string& bytes) { argument 17 for (size_t i = 0; i < bytes.size(); i++) { 18 if (bytes[i] != bytes[0]) { 26 std::string bytes(16, '\0'); 27 crypto::RandBytes(base::WriteInto(&bytes, bytes.size()), bytes.size()); 28 EXPECT_TRUE(!IsTrivial(bytes)); [all...] |
/external/syslinux/com32/lib/ |
H A D | inet.c | 35 const uint8_t *bytes = (const uint8_t *)&addr.s_addr; local 37 sprintf(buf, "%u.%u.%u.%u", bytes[0], bytes[1], bytes[2], bytes[3]);
|
H A D | fread.c | 11 size_t bytes = 0; local 27 bytes += rv; 31 return bytes;
|
H A D | fwrite.c | 11 size_t bytes = 0; local 27 bytes += rv; 31 return bytes;
|
H A D | vasprintf.c | 12 int bytes; local 17 bytes = vsnprintf(NULL, 0, format, ap1) + 1; 20 *bufp = p = malloc(bytes); 24 return vsnprintf(p, bytes, format, ap);
|
/external/bison/lib/ |
H A D | calloc.c | 56 size_t bytes = n * s; local 57 if (bytes / s != n)
|
/external/boringssl/src/crypto/ecdh/ |
H A D | ecdh_test.cc | 57 std::vector<uint8_t> bytes; local 58 if (!t->GetBytes(&bytes, key)) { 62 return bssl::UniquePtr<BIGNUM>(BN_bin2bn(bytes.data(), bytes.size(), nullptr));
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
H A D | DEREnumerated.java | 12 * @param bytes the value of this enumerated as an encoded BigInteger (signed). 15 DEREnumerated(byte[] bytes) argument 17 super(bytes);
|
H A D | DERGeneralizedTime.java | 12 DERGeneralizedTime(byte[] bytes) argument 14 super(bytes);
|
H A D | DERInteger.java | 14 * @param bytes a byte array containing the signed number.A copy is made of the byte array. 16 public DERInteger(byte[] bytes) argument 18 super(bytes, true);
|
H A D | DERUTCTime.java | 11 DERUTCTime(byte[] bytes) argument 13 super(bytes);
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
H A D | ByteArray.java | 25 private final byte[] bytes; field in class:ByteArray 28 ByteArray(byte[] bytes) { argument 29 this.bytes = bytes; 30 this.hashCode = Arrays.hashCode(bytes); 44 return Arrays.equals(bytes, lhs.bytes);
|
/external/curl/lib/ |
H A D | curl_des.c | 41 * bytes [in/out] - The data whose parity bits are to be adjusted for 45 void Curl_des_set_odd_parity(unsigned char *bytes, size_t len) argument 50 unsigned char b = bytes[i]; 57 bytes[i] |= 0x01; 59 bytes[i] &= 0xfe;
|
/external/elfutils/libasm/ |
H A D | asm_fill.c | 42 asm_fill (AsmScn_t *asmscn, void *bytes, size_t len) argument 51 if (bytes == NULL) 63 memcpy (pattern->bytes, bytes, len);
|
/external/libcups/filter/ |
H A D | gziptoany.c | 33 ssize_t bytes; /* Number of bytes read/written */ local 86 while ((bytes = cupsFileRead(fp, buffer, sizeof(buffer))) > 0) 87 if (write(1, buffer, (size_t)bytes) < bytes)
|
/external/libvncserver/examples/ |
H A D | colourmaptest.c | 7 uint8_t bytes[256*3]; local 16 bytes[i*3+0]=255-i; /* red */ 17 bytes[i*3+1]=0; /* green */ 18 bytes[i*3+2]=i; /* blue */ 20 bytes[128*3+0]=0xff; 21 bytes[128*3+1]=0; 22 bytes[128*3+2]=0; 23 server->colourMap.data.bytes=bytes;
|
/external/libvpx/libvpx/ |
H A D | md5_utils.h | 12 * To compute the message digest of a chunk of bytes, declare an 14 * needed on buffers full of bytes, and then call MD5Final, which 36 UWORD32 bytes[2]; member in struct:MD5Context
|
/external/llvm/lib/DebugInfo/PDB/ |
H A D | PDBSymbolCustom.cpp | 25 void PDBSymbolCustom::getDataBytes(llvm::SmallVector<uint8_t, 32> &bytes) { argument 26 RawSymbol->getDataBytes(bytes);
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/ |
H A D | IsoTypeReaderVariable.java | 22 public static long read(ByteBuffer bb, int bytes) { argument 23 switch (bytes) { 35 throw new RuntimeException("I don't know how to read " + bytes + " bytes");
|
/external/valgrind/helgrind/tests/ |
H A D | tc16_byterace.c | 7 char bytes[10]; variable 13 bytes[2*i + 0] ++; /* child accesses: 0 2 4 6 8 */ 28 bytes accessed */ 30 bytes[2*i + 1] ++; /* accesses: 1 3 5 7 9 */ 32 /* Unprotected relative to child, but harmful; same bytes */ 34 bytes[3*i + 1] ++; /* accesses: 1 4(race!) 7 */
|