HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 26 - 50 of 2610) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/boringssl/src/include/openssl/
rand.h 28 /* RAND_bytes writes |len| bytes of random data to |buf| and returns one. */
95 int (*bytes) (uint8_t *buf, size_t num); member in struct:rand_meth_st
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSProcessableByteArray.java 19 private final byte[] bytes; field in class:CMSProcessableByteArray
22 byte[] bytes)
24 this(new ASN1ObjectIdentifier(CMSObjectIdentifiers.data.getId()), bytes);
29 byte[] bytes)
32 this.bytes = bytes;
37 return new ByteArrayInputStream(bytes);
43 zOut.write(bytes);
48 return Arrays.clone(bytes);
  /external/curl/docs/examples/
sampleconv.c 45 size_t bytes = length; local
48 rc = platform_a2e(&tempptrin, &bytes, &tempptrout, &bytes);
59 size_t bytes = length; local
62 rc = platform_e2a(&tempptrin, &bytes, &tempptrout, &bytes);
73 size_t bytes = length; local
76 rc = platform_u2e(&tempptrin, &bytes, &tempptrout, &bytes);
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArrayByteInput.java 21 private final byte[] bytes; field in class:ByteArrayByteInput
24 public ByteArrayByteInput(byte... bytes) {
25 this.bytes = bytes;
29 return bytes[position++];
  /external/guava/guava-testlib/src/com/google/common/testing/
Platform.java 42 ByteArrayOutputStream bytes = new ByteArrayOutputStream(); local
44 ObjectOutputStream out = new ObjectOutputStream(bytes);
47 new ByteArrayInputStream(bytes.toByteArray()));
  /external/libavc/test/encoder/
output.c 51 WORD32 bytes; local
53 bytes = fwrite(pu1_buf, sizeof(UWORD8), num_bytes, fp);
54 if(bytes != num_bytes)
  /external/libchrome/base/
guid_unittest.cc 32 uint64_t bytes[] = {0, 0}; local
33 std::string clientid = RandomDataToGUIDString(bytes);
38 uint64_t bytes[] = {0x0123456789ABCDEFULL, 0xFEDCBA9876543210ULL}; local
39 std::string clientid = RandomDataToGUIDString(bytes);
  /external/ltrace/sysdeps/linux-gnu/
breakpoint.c 63 unsigned char *bytes = (unsigned char *)&a; local
65 sbp->orig_value[i * sizeof(long) + j] = bytes[j];
66 bytes[j] = break_insn[i * sizeof(long) + j];
113 unsigned char *bytes = (unsigned char *)&a; local
115 bytes[j] = sbp->orig_value[i * sizeof(long) + j];
  /external/mesa3d/src/gallium/auxiliary/util/
u_linear.c 42 size_t bytes = t->cols * t->block.size; local
51 ptr = (char*)src_ptr + src_stride * t->rows * y + bytes * x;
53 memcpy(dst_ptr2, ptr, bytes);
54 dst_ptr2 += bytes;
66 size_t bytes = t->cols * t->block.size; local
73 ptr = (char*)dst_ptr + dst_stride * t->rows * y + bytes * x;
75 memcpy(ptr, src_ptr2, bytes);
76 src_ptr2 += bytes;
  /external/mesa3d/src/glx/apple/
glxreply.c 40 const GLint bytes = (reply_is_always_array) local
42 const GLint extra = 4 - (bytes & 3);
44 _XRead(dpy, dest, bytes);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
NdefRecordTest.java 15 byte[] bytes = "mumble".getBytes();
16 NdefRecord ndefRecord = new NdefRecord(bytes);
18 assertSame(ndefRecord.getPayload(), bytes); local
  /external/selinux/libselinux/src/
sha1.h 39 uint8_t bytes [SHA1_HASH_SIZE]; member in struct:__anon23443
  /external/skia/src/codec/
SkJpegUtility_codec.cpp 25 size_t bytes = src->fStream->read(src->fBuffer, skjpeg_source_mgr::kBufferSize); local
28 if (bytes == 0) {
33 src->bytes_in_buffer = bytes;
38 * Skip a certain number of bytes in the stream
42 size_t bytes = (size_t) numBytes; local
44 if (bytes > src->bytes_in_buffer) {
45 size_t bytesToSkip = bytes - src->bytes_in_buffer;
  /external/skia/src/core/
SkRecord.cpp 26 size_t bytes = fAlloc.approxBytesAllocated() + sizeof(SkRecord); local
30 bytes += fReserved * sizeof(Record);
32 return bytes;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/array/
ByteArr.java 22 private byte[] bytes; field in class:ByteArr
27 public ByteArr(byte[] bytes) {
28 this.bytes = bytes;
32 return Arrays.toString(bytes);
36 return bytes;
39 public void setBytes(byte[] bytes) {
40 this.bytes = bytes;
  /external/strace/
xmalloc.c 65 size_t bytes = nmemb * size; local
68 size && bytes / size != nmemb)
71 void *p = realloc(ptr, bytes);
  /external/tlsdate/src/events/
time_set.c 88 ssize_t bytes = 0; local
90 bytes = IGNORE_EINTR (read (fd, &status, sizeof (status)));
91 if (bytes == -1 && errno == EAGAIN)
94 if (bytes != sizeof (status))
100 bytes);
  /external/valgrind/none/tests/solaris/
proc_psinfo.c 35 ssize_t bytes = read(fd, &psinfo, sizeof(psinfo)); local
36 if (bytes != sizeof(psinfo)) {
  /external/webrtc/webrtc/base/
fileutils_unittest.cc 32 size_t bytes; local
36 EXPECT_EQ(SR_SUCCESS, fs->Write("test", 4, &bytes, NULL));
37 EXPECT_EQ(4U, bytes);
44 EXPECT_EQ(SR_SUCCESS, fs->Read(buf, sizeof(buf), &bytes, NULL));
45 EXPECT_EQ(4U, bytes);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
AudioSample.java 23 public final byte[] bytes; field in class:AudioSample
25 public AudioSample(int sampleRate, int channelCount, byte[] bytes) {
28 this.bytes = bytes;
  /frameworks/base/tools/layoutlib/bridge/src/dalvik/system/
VMRuntime_Delegate.java 33 // Dalvik has 32bit pointers, the array header is 16bytes plus 4bytes for dlmalloc,
34 // allocations are 8byte aligned so having 4bytes of array data avoids padding.
39 int bytes = 20 + (2 * minLength); local
40 int alignedUpBytes = (bytes + 7) & -8;
48 int bytes = 20 + minLength; local
49 int alignedUpBytes = (bytes + 7) & -8;
54 int bytes = 20 + minLength; local
55 int alignedUpBytes = (bytes + 7) & -8;
60 int bytes = 20 + (2 * minLength) local
    [all...]
  /libcore/dex/src/main/java/com/android/dex/util/
ByteArrayByteInput.java 21 private final byte[] bytes; field in class:ByteArrayByteInput
24 public ByteArrayByteInput(byte... bytes) {
25 this.bytes = bytes;
29 return bytes[position++];
  /prebuilts/go/darwin-x86/test/
slicecap.go 13 bytes = []byte{1, 2, 3, 4, 5}
39 p2 := *(*uintptr)(unsafe.Pointer(&bytes))
67 x := bytes
12 bytes = []byte{1, 2, 3, 4, 5} var
  /prebuilts/go/linux-x86/test/
slicecap.go 13 bytes = []byte{1, 2, 3, 4, 5}
39 p2 := *(*uintptr)(unsafe.Pointer(&bytes))
67 x := bytes
12 bytes = []byte{1, 2, 3, 4, 5} var
  /external/guava/guava-tests/test/com/google/common/io/
TestByteSink.java 32 private final ByteArrayOutputStream bytes = new ByteArrayOutputStream(); field in class:TestByteSink
43 return bytes.toByteArray();
59 bytes.reset(); // truncate
66 super(bytes, options);

Completed in 1827 milliseconds

12 3 4 5 6 7 8 91011>>