HomeSort by relevance Sort by last modified time
    Searched full:bytes (Results 151 - 175 of 30148) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DEREnumerated.java 12 * @param bytes the value of this enumerated as an encoded BigInteger (signed).
15 DEREnumerated(byte[] bytes)
17 super(bytes);
  /external/valgrind/VEX/orig_amd64/
SortedToOrig.hs 16 bytes = head ws
18 bytes2 = foo bytes
23 ". " ++ show n ++ " 0x12345678 " ++ show (1 + (length bytes `div` 2)),
  /frameworks/rs/rsov/compiler/spirit/
word_stream_test.cpp 30 const std::vector<uint8_t> bytes((uint8_t *)words.data(),
34 EXPECT_EQ(bytesExpected, bytes);
41 const std::vector<uint8_t> bytes((uint8_t *)words.data(),
46 EXPECT_EQ(bytesExpected, bytes);
50 uint8_t bytes[] = {0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x00}; local
51 std::vector<uint32_t> words((uint32_t *)bytes,
52 (uint32_t *)(bytes + sizeof(bytes)));
60 uint8_t bytes[] = {0x47, 0x4c, 0x53, 0x4c, 0x2e, 0x73, 0x74, 0x64, local
62 std::vector<uint32_t> words((uint32_t *)bytes,
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
byte_array.h 27 // An abstraction to a contiguous array of bytes.
37 // Gets the maximum size of the array. This is the maximum number of bytes that
52 // Gets the bytes from the given index and fill the buffer with them. As many
53 // bytes as will fit into the buffer are read unless that would go past the
56 // @param b the buffer to put the bytes read into
57 // @return the number of bytes read from the buffer
60 // Gets the bytes from the given index and fill the buffer with them starting
61 // at the offset given. As many bytes as the specified length are read unless
64 // @param b the buffer to put the bytes read into
65 // @param offset the location in the buffer to start putting the bytes
    [all...]
  /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/libtextclassifier/common/memory_image/
low-level-memory-reader.h 38 // 0 bytes available if start == nullptr
43 // Copies length bytes of data to address target. Advances current position
47 TC_LOG(WARNING) << "Not enough bytes: available " << num_available_bytes_
56 // Reads the string encoded at the current position. The bytes starting at
57 // current position should contain (1) little-endian uint32 size (in bytes) of
58 // the actual string and next (2) the actual bytes of the string. Advances
61 // On success, sets *view to be a view of the relevant bytes: view.data()
62 // points to the beginning of the string bytes, and view.size() is the number
63 // of such bytes.
72 TC_LOG(WARNING) << "Not enough bytes: " << num_available_bytes
    [all...]
  /external/dng_sdk/source/
dng_ref_counted_block.h 71 /// Construct memory buffer of size bytes using malloc.
72 /// \param size Number of bytes of memory needed.
89 /// Clear existing memory buffer and allocate new memory of size bytes.
90 /// \param size Number of bytes of memory needed.
105 /// \retval void * valid for as many bytes as were allocated.
118 /// \retval const void * valid for as many bytes as were allocated.
126 /// \retval char * valid for as many bytes as were allocated.
134 /// \retval const char * valid for as many bytes as were allocated.
142 /// \retval uint8 * valid for as many bytes as were allocated.
150 /// \retval const uint8 * valid for as many bytes as were allocated
    [all...]
  /bionic/tests/
uchar_test.cpp 83 char bytes[MB_LEN_MAX]; local
84 EXPECT_EQ(1U, c16rtomb(bytes, L'\0', NULL));
92 char bytes[MB_LEN_MAX]; local
94 memset(bytes, 0, sizeof(bytes));
95 EXPECT_EQ(1U, c16rtomb(bytes, L'h', NULL));
96 EXPECT_EQ('h', bytes[0]);
102 memset(bytes, 0, sizeof(bytes));
103 EXPECT_EQ(1U, c16rtomb(bytes, L'h', NULL))
123 char bytes[MB_LEN_MAX]; local
139 char bytes[MB_LEN_MAX]; local
281 char bytes[MB_LEN_MAX]; local
    [all...]
  /external/c-ares/
ares_gethostbyaddr.c 285 unsigned char *bytes = (unsigned char *)&addr->addrV6; local
290 bytes[15]&0xf, bytes[15] >> 4, bytes[14]&0xf, bytes[14] >> 4,
291 bytes[13]&0xf, bytes[13] >> 4, bytes[12]&0xf, bytes[12] >> 4,
292 bytes[11]&0xf, bytes[11] >> 4, bytes[10]&0xf, bytes[10] >> 4
    [all...]
  /external/llvm/unittests/Bitcode/
BitstreamReaderTest.cpp 36 uint8_t Bytes[4] = {
39 BitstreamReader Reader(std::begin(Bytes), std::end(Bytes));
56 uint8_t Bytes[4] = {
59 BitstreamReader Reader(std::begin(Bytes), std::end(Bytes));
75 uint8_t Bytes[] = {0x00, 0x01, 0x02, 0x03};
76 BitstreamReader Reader(std::begin(Bytes), std::end(Bytes));
87 uint8_t Bytes[] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07}
    [all...]
  /external/clang/test/CodeGen/
2005-07-26-UnionInitCrash.c 3 union { char bytes[8]; double alignment; }EQ1 = {0,0,0,0,0,0,0,0}; member in union:__anon14673
  /external/dtc/tests/
appendprop.dts 7 prop-bytes = [00010203040001020304];
  /external/iproute2/examples/bpf/
bpf_shared.h 14 long bytes; member in struct:count_tuple
  /external/libmojo/mojo/public/interfaces/bindings/tests/data/validation/
conformance_msghdr_num_bytes_version_mismatch_1.data 7 [u8]0 // Extra bytes that result in mismatched |num_bytes| and
conformance_msghdr_num_bytes_version_mismatch_2.data 8 [u8]0 // Extra bytes that result in mismatched |num_bytes| and
  /external/libnl/include/linux-private/linux/
gen_stats.h 18 * @bytes: number of seen bytes
22 __u64 bytes; member in struct:gnet_stats_basic
26 __u64 bytes; member in struct:gnet_stats_basic_packed
  /external/libxml2/result/errors/
cdata.xml.err 2 Bytes: 0xE1 0x72 0x5D 0x5D
  /external/llvm/test/Assembler/
invalid-datalayout19.ll 5 ; CHECK: Invalid pointer size of 0 bytes
  /external/pcre/dist2/doc/
pcre2_serialize_get_number_of_codes.3 22 PCRE2_ERROR_BADMAGIC mismatch of id bytes in \fIbytes\fP
  /external/swiftshader/src/Common/
Memory.cpp 71 // size_t bytes;
75 void *allocate(size_t bytes, size_t alignment)
77 unsigned char *block = new unsigned char[bytes + sizeof(Allocation) + alignment];
85 // allocation->bytes = bytes;
92 void *allocateZero(size_t bytes, size_t alignment)
94 void *memory = allocate(bytes, alignment);
98 memset(memory, 0, bytes);
115 void *allocateExecutable(size_t bytes)
118 size_t roundedSize = (bytes + pageSize - 1) & ~(pageSize - 1)
    [all...]
  /external/valgrind/drd/tests/
tc16_byterace.stderr.exp 4 Location 0x........ is 0 bytes inside bytes[4],
9 Location 0x........ is 0 bytes inside bytes[4],
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/comm/src/
omxVCCOMM_Copy16x16_s.s 8 ; * [in] step - distance between the starts of consecutive lines in the reference frame, in bytes;
49 ;// loading 16 bytes and storing
55 ;// loading 16 bytes and storing
61 ;// loading 16 bytes and storing
67 ;// loading 16 bytes and storing
73 ;// loading 16 bytes and storing
79 ;// loading 16 bytes and storing
85 ;// loading 16 bytes and storing
91 ;// loading 16 bytes and storing
97 ;// loading 16 bytes and storin
    [all...]
  /frameworks/base/core/java/android/os/
ProxyFileDescriptorCallback.java 45 * Returns size of bytes provided by the file descriptor.
46 * @return Size of bytes.
54 * Provides bytes read from file descriptor.
55 * It needs to return exact requested size of bytes unless it reaches file end.
56 * @param offset Offset in bytes from the file head specifying where to read bytes. If a seek
58 * offset refrects the proper position of requested bytes.
59 * @param size Size for read bytes.
60 * @param data Byte array to store read bytes.
61 * @return Size of bytes returned by the function
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
CharSequences.java 26 * bytes.
28 * @param bytes ASCII bytes
30 public static CharSequence forAsciiBytes(final byte[] bytes) {
33 return (char) bytes[index];
37 return bytes.length;
41 return forAsciiBytes(bytes, start, end);
45 return new String(bytes);
52 * bytes.
54 * @param bytes ASCII byte
    [all...]
  /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;

Completed in 2762 milliseconds

1 2 3 4 5 67 8 91011>>