HomeSort by relevance Sort by last modified time
    Searched refs:bytes (Results 226 - 250 of 6645) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/core/
SkChecksum.cpp 10 uint32_t SkChecksum::Murmur3(const void* data, size_t bytes, uint32_t seed) {
16 // Handle 4 bytes at a time while possible.
18 const size_t words = bytes/4;
32 // Handle last 0-3 bytes.
35 switch (bytes & 3) {
45 hash ^= bytes;
  /external/valgrind/memcheck/tests/
malloc1_ks_none.stderr.exp 3 Address 0x........ is 1 bytes inside a block of size 10 free'd
8 Address 0x........ is 1 bytes before a block of size 10 alloc'd
  /external/webrtc/webrtc/modules/audio_processing/test/
protobuf_utils.h 24 // number of bytes read.
25 size_t ReadMessageBytesFromFile(FILE* file, rtc::scoped_ptr<uint8_t[]>* bytes);
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/utils/
Utils.java 43 byte[] bytes = new byte[inputStream.available()];
44 inputStream.read(bytes, 0, bytes.length);
45 String json = new String(bytes);
  /libcore/benchmarks/src/benchmarks/regression/
ChecksumBenchmark.java 24 byte[] bytes = new byte[10000];
27 adler.update(bytes);
37 byte[] bytes = new byte[10000];
40 crc.update(bytes);
  /prebuilts/go/darwin-x86/test/bench/go1/
fmt_test.go 10 "bytes"
16 var buf bytes.Buffer
23 var buf bytes.Buffer
31 var buf bytes.Buffer
39 var buf bytes.Buffer
47 var buf bytes.Buffer
55 var buf bytes.Buffer
63 var buf bytes.Buffer
  /prebuilts/go/linux-x86/test/bench/go1/
fmt_test.go 10 "bytes"
16 var buf bytes.Buffer
23 var buf bytes.Buffer
31 var buf bytes.Buffer
39 var buf bytes.Buffer
47 var buf bytes.Buffer
55 var buf bytes.Buffer
63 var buf bytes.Buffer
  /system/update_engine/
mock_file_writer.h 27 MOCK_METHOD2(Write, ssize_t(const void* bytes, size_t count));
  /system/update_engine/payload_consumer/
file_writer.h 42 // Wrapper around write. Returns true if all requested bytes
44 virtual bool Write(const void* bytes, size_t count) = 0;
50 virtual bool Write(const void* bytes,
54 return Write(bytes, count);
72 bool Write(const void* bytes, size_t count) override;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
ld-zero-2.s 5 # Force some (non-delay-slot) zero bytes, to make 'objdump' print ...
ld-zero-3.s 7 # Force some (non-delay-slot) zero bytes, to make 'objdump' print ...
ld-zero-q.s 5 # Force some (non-delay-slot) zero bytes, to make 'objdump' print ...
ld-zero-u.s 6 # Force some (non-delay-slot) zero bytes, to make 'objdump' print ...
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
tls128.s 1 ; Just something allocating 128 bytes TLS data.
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Fingerprint.java 43 // 16 bytes for 128-bit fingerprint
61 // md5 digest bytes.
67 public Fingerprint(byte[] bytes) {
68 if ((bytes == null) || (bytes.length != FINGERPRINT_BYTE_LENGTH)) {
71 mMd5Digest = bytes;
87 byte[] bytes = new byte[8192];
90 int n = in.read(bytes);
111 // decode the hex bytes of the fingerprint portion
112 byte[] bytes = new byte[FINGERPRINT_BYTE_LENGTH]
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeFactory.java 56 * Parses and makes an attribute based on the bytes at the
64 * @param offset offset into {@code dcf}'s {@code bytes}
82 ByteArray bytes = cf.getBytes(); local
84 int nameIdx = bytes.getUnsignedShort(offset);
85 int length = bytes.getInt(offset + 2);
90 observer.parsed(bytes, offset, 2,
92 observer.parsed(bytes, offset + 2, 4,
115 * @param offset offset into {@code bytes} to start parsing at; this
124 ByteArray bytes = cf.getBytes(); local
126 Attribute result = new RawAttribute(name, bytes, offset, length, pool)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
BitsStreamGenerator.java 65 public void nextBytes(byte[] bytes) {
67 final int iEnd = bytes.length - 3;
70 bytes[i] = (byte) (random & 0xff);
71 bytes[i + 1] = (byte) ((random >> 8) & 0xff);
72 bytes[i + 2] = (byte) ((random >> 16) & 0xff);
73 bytes[i + 3] = (byte) ((random >> 24) & 0xff);
77 while (i < bytes.length) {
78 bytes[i++] = (byte) (random & 0xff);
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_Fieldref_info.java 63 protected CONSTANT_Fieldref_info (final UDataInputStream bytes) throws IOException
65 super (bytes);
CONSTANT_InterfaceMethodref_info.java 62 protected CONSTANT_InterfaceMethodref_info (final UDataInputStream bytes) throws IOException
64 super (bytes);
CONSTANT_Methodref_info.java 63 protected CONSTANT_Methodref_info (final UDataInputStream bytes) throws IOException
65 super (bytes);
  /external/guava/guava/src/com/google/common/hash/
AbstractByteHasher.java 31 * Abstract {@link Hasher} that handles converting primitives to bytes using a scratch {@code
32 * ByteBuffer} and streams all bytes to a sink to compute the hash.
46 * Updates this hasher with the given bytes.
53 * Updates this hasher with {@code len} bytes starting at {@code off} in the given buffer.
68 public Hasher putBytes(byte[] bytes) {
69 checkNotNull(bytes);
70 update(bytes);
75 public Hasher putBytes(byte[] bytes, int off, int len) {
76 checkPositionIndexes(off, off + len, bytes.length);
77 update(bytes, off, len)
86 update(scratch.array(), 0, bytes); local
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/
TargetLoader.java 32 public Class<?> add(final String name, final byte[] bytes) {
33 this.classes.put(name, bytes);
37 public Class<?> add(final Class<?> name, final byte[] bytes) {
38 return add(name.getName(), bytes);
75 final byte[] bytes = classes.get(name);
76 if (bytes != null) {
77 Class<?> c = defineClass(name, bytes, 0, bytes.length);
  /external/llvm/lib/Target/MSP430/
MSP430MachineFunctionInfo.h 27 /// stack frame in bytes.
43 void setCalleeSavedFrameSize(unsigned bytes) { CalleeSavedFrameSize = bytes; }
  /external/llvm/test/MC/X86/AlignedBundling/
misaligned-bundle.s 18 movl $0x1, (%esp) # 7 bytes
19 movl $0x1, (%esp) # 7 bytes
21 movl $0x2, 0x1(%esp) # 8 bytes
22 movl $0x2, 0x1(%esp) # 8 bytes
25 movl $0x2, 0x1(%esp) # 8 bytes
26 movl $0x2, (%esp) # 7 bytes
29 movl $0x3, (%esp) # 7 bytes
30 movl $0x3, (%esp) # 7 bytes
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Credentials.java 30 byte[] bytes = usernameAndPassword.getBytes("ISO-8859-1");
31 String encoded = ByteString.of(bytes).base64();

Completed in 789 milliseconds

1 2 3 4 5 6 7 8 91011>>