HomeSort by relevance Sort by last modified time
    Searched full:bytes (Results 301 - 325 of 16566) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/angle/src/libGLESv2/
Uniform.cpp 18 int bytes = gl::UniformInternalSize(type) * elementCount(); local
19 data = new unsigned char[bytes];
20 memset(data, 0, bytes);
  /external/chromium_org/third_party/skia/src/utils/ios/
SkStream_NSData.mm 13 size_t bytes = stream->read(src, length);
14 SkASSERT(bytes == length);
32 this->setMemory([fNSData bytes], [fNSData length], false);
  /external/clang/test/SemaCXX/
warn-large-by-value-copy.cpp 16 S101 f101(S101 s) { return s; } // expected-warning {{return value of 'f101' is a large (101 bytes) pass-by-value object}} \
17 // expected-warning {{'s' is a large (101 bytes) pass-by-value argument}}
35 void tf(TS<size> ts) {} // expected-warning {{ts' is a large (300 bytes) pass-by-value argument}}
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
ByteUtils.java 115 * @return A short, which is the next 2 bytes converted from the InputStream
122 // Read in the next 2 bytes
177 * @return An int, which is the next 4 bytes converted from the InputStream
184 // Read in the next 4 bytes
227 byte[] bytes = new byte[8];
229 bytes[7] = (byte) (n);
231 bytes[6] = (byte) (n);
233 bytes[5] = (byte) (n);
235 bytes[4] = (byte) (n);
237 bytes[3] = (byte) (n)
    [all...]
  /external/skia/src/utils/ios/
SkStream_NSData.mm 13 size_t bytes = stream->read(src, length);
14 SkASSERT(bytes == length);
32 this->setMemory([fNSData bytes], [fNSData length], false);
  /external/valgrind/main/memcheck/tests/
describe-block.stderr.exp 4 Address 0x........ is 0 bytes inside a magic foople zone of size 4,096 client-defined
9 in use at exit: ... bytes in ... blocks
10 total heap usage: ... allocs, ... frees, ... bytes allocated
test-plo-no.stderr.exp-le32 3 Address 0x........ is 4 bytes inside a block of size 5 alloc'd
9 Address 0x........ is 4 bytes inside a block of size 5 alloc'd
15 Address 0x........ is 4 bytes inside a block of size 12 free'd
test-plo-no.stderr.exp-le64 3 Address 0x........ is 0 bytes inside a block of size 5 alloc'd
9 Address 0x........ is 0 bytes inside a block of size 5 alloc'd
15 Address 0x........ is 8 bytes inside a block of size 24 free'd
test-plo-no.stderr.exp-s390x-mvc 3 Address 0x........ is 0 bytes after a block of size 5 alloc'd
9 Address 0x........ is 0 bytes after a block of size 5 alloc'd
15 Address 0x........ is 8 bytes inside a block of size 24 free'd
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
BitString.java 38 public final byte[] bytes; field in class:BitString
44 * @param bytes array of bytes that represents bit string,
49 public BitString(byte[] bytes, int unusedBits) {
55 if (bytes.length == 0 && unusedBits != 0) {
59 this.bytes = bytes;
69 bytes = new byte[size];
78 return (bytes[index] & SET_MASK[offset]) != 0;
85 bytes[index] |= SET_MASK[offset]
    [all...]
  /packages/apps/Gallery2/jni_jpegstream/src/
jpeg_config.h 24 FORMAT_RGB = 0x003, // 3 bytes/pixel RGBRGBRGBRGB...
25 FORMAT_RGBA = 0x004, // 4 bytes/pixel RGBARGBARGBARGBA...
26 FORMAT_ABGR = 0x104 // 4 bytes/pixel ABGRABGRABGR...
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
gen_stats.h 18 * @bytes: number of seen bytes
23 __u64 bytes; member in struct:gnet_stats_basic
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
gen_stats.h 18 * @bytes: number of seen bytes
23 __u64 bytes; member in struct:gnet_stats_basic
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
gen_stats.h 18 * @bytes: number of seen bytes
23 __u64 bytes; member in struct:gnet_stats_basic
  /libcore/luni/src/main/java/java/io/
InputStreamReader.java 35 * of bytes read from the source stream and converts these into characters as
47 private final ByteBuffer bytes = ByteBuffer.allocate(8192); field in class:InputStreamReader
64 * character converter that is used to decode bytes into characters is
92 bytes.limit(0);
109 bytes.limit(0);
127 bytes.limit(0);
153 * bytes, or null if this writer has been closed. Most callers should probably keep
166 * with the two higher-order bytes set to 0. Returns -1 if the end of the
168 * converting bytes in this reader's buffer or by first filling the buffer
191 * been reached. The bytes are either obtained from converting bytes in thi
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ArrayTest.java 24 private static byte[] bytes; field in class:ArrayTest
35 bytes = new byte[] { (byte) 0xff };
46 try { Array.getBoolean(bytes, 0); fail(); } catch (IllegalArgumentException expected) {}
58 assertEquals(bytes[0], Array.getByte(bytes, 0));
70 try { Array.getChar(bytes, 0); fail(); } catch (IllegalArgumentException expected) {}
82 assertEquals((double) bytes[0], Array.getDouble(bytes, 0));
94 assertEquals((float) bytes[0], Array.getFloat(bytes, 0))
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1PRNG_SecureRandomImpl.java 56 // constants to use in expressions operating on bytes in int and long variables:
57 // END_FLAGS - final bytes in words to append to message;
61 // LEFT - shifts to left for bytes
62 // MASK - mask to select counter's bytes after shift to right
75 // HASHBYTES_TO_USE defines # of bytes returned by "computeHash(byte[])"
77 // Note, that this implementation uses more bytes than it is defined
92 // MAX_BYTES - maximum # of seed bytes processing which doesn't require extra frame
121 // - 81 - # of seed bytes in current seed frame
125 // total length of seed bytes, including all processed
132 // - 21-36 - 16 word frame to store a copy of remaining bytes
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
malloc-tree 41 def byteString(bytes):
44 val = bytes
46 if bytes >= oneG:
48 val = float(bytes) / oneG
49 elif bytes >= oneM:
51 val = float(bytes) / oneM
52 elif bytes >= oneK:
54 val = float(bytes) / oneK
58 return '%d' % bytes
59 return '%12d' % bytes
    [all...]
  /external/chromium_org/third_party/skia/src/pipe/utils/
SamplePipeControllers.h 22 virtual void notifyWritten(size_t bytes) SK_OVERRIDE;
40 virtual void notifyWritten(size_t bytes) SK_OVERRIDE;
61 virtual void notifyWritten(size_t bytes) SK_OVERRIDE;
75 PipeBlock(void* block, size_t bytes) { fBlock = block, fBytes = bytes; }
79 // Number of bytes that were written to fBlock.
  /external/kernel-headers/original/asm-x86/
user32.h 14 u32 st_space[20]; /* 8*10 bytes for each FP-reg = 80 bytes */
29 int st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
30 int xmm_space[32]; /* 8*16 bytes for each XMM-reg = 128 bytes */
  /external/skia/src/pipe/utils/
SamplePipeControllers.h 22 virtual void notifyWritten(size_t bytes) SK_OVERRIDE;
40 virtual void notifyWritten(size_t bytes) SK_OVERRIDE;
61 virtual void notifyWritten(size_t bytes) SK_OVERRIDE;
75 PipeBlock(void* block, size_t bytes) { fBlock = block, fBytes = bytes; }
79 // Number of bytes that were written to fBlock.
  /external/smack/src/org/xbill/DNS/
ARecord.java 37 byte [] bytes = new byte[4];
38 bytes[0] = (byte) ((addr >>> 24) & 0xFF);
39 bytes[1] = (byte) ((addr >>> 16) & 0xFF);
40 bytes[2] = (byte) ((addr >>> 8) & 0xFF);
41 bytes[3] = (byte) (addr & 0xFF);
42 return bytes;
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
CharSequencesTest.java 29 byte[] bytes = s.getBytes();
31 String copy = toString(forAsciiBytes(bytes));
34 copy = toString(forAsciiBytes(bytes, 0, s.length()));
37 String crazy = toString(forAsciiBytes(bytes, 0, 5));
40 String a = toString(forAsciiBytes(bytes, 0, 3).subSequence(2, 3));
43 String empty = toString(forAsciiBytes(bytes, 0, 3).subSequence(3, 3));
  /libcore/luni/src/test/java/libcore/java/util/
BitSetTest.java 80 private static void assertBitSet(BitSet bs, byte[] bytes, String s) {
81 for (int i = 0; i < 8 * bytes.length; ++i) {
82 assertEquals(bs.toString(), ((bytes[i / 8] & (1L << (i % 8))) != 0), bs.get(i));
85 for (int i = 0; i < bytes.length; ++i) {
86 cardinality += Integer.bitCount(((int) bytes[i]) & 0xff);
94 assertEquals(roundUp(8 * bytes.length, 64), bs.size());
102 private static void assertBitSet(byte[] bytes, String s) {
104 assertBitSet(BitSet.valueOf(bytes), bytes, s); local
106 assertBitSet(BitSet.valueOf(ByteBuffer.wrap(bytes)), bytes, s) local
111 assertBitSet(BitSet.valueOf(ByteBuffer.wrap(paddedBytes, 1, bytes.length)), bytes, s); local
    [all...]
  /system/core/libsparse/
sparse_format.h 25 __le16 file_hdr_sz; /* 28 bytes for first revision of the file format */
26 __le16 chunk_hdr_sz; /* 12 bytes for first revision of the file format */
27 __le32 blk_sz; /* block size in bytes, must be a multiple of 4 (4096) */
46 __le32 total_sz; /* in bytes of chunk input file including chunk header and data */
51 * For a Fill chunk, it's 4 bytes of the fill data.
52 * For a CRC32 chunk, it's 4 bytes of CRC32

Completed in 1041 milliseconds

<<11121314151617181920>>