HomeSort by relevance Sort by last modified time
    Searched refs:bytes (Results 176 - 200 of 3338) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_stream_hixie75.py 48 for length, bytes in ((0, '\x00'), (0x7f, '\x7f'), (0x80, '\x81\x00'),
50 test_stream = StreamHixie75(_create_request_hixie75(bytes))
  /external/chromium_org/chrome/test/chromedriver/
util.h 30 bool Base64Decode(const std::string& base64, std::string* bytes);
32 // Unzips the sole file contained in the given zip data |bytes| into
39 const std::string& bytes,
  /external/chromium_org/net/base/
bandwidth_metrics.cc 32 void ScopedBandwidthMetrics::RecordBytes(int bytes) {
33 g_bandwidth_metrics.Get().RecordBytes(bytes);
upload_element.h 30 const char* bytes() const { return bytes_start_ ? bytes_start_ : &buf_[0]; } function in class:net::UploadElement
40 void SetToBytes(const char* bytes, int bytes_len) {
42 buf_.assign(bytes, bytes + bytes_len);
48 void SetToSharedBytes(const char* bytes, int bytes_len) {
50 bytes_start_ = bytes;
91 memcmp(a.bytes(), b.bytes(), b.bytes_length()) == 0;
  /external/chromium_org/third_party/smhasher/src/
Random.h 72 void rand_p ( void * blob, int bytes )
76 while(bytes >= 4)
80 bytes -= 4;
85 for(int i = 0; i < bytes; i++)
99 inline void rand_p ( void * blob, int bytes )
103 while(bytes >= 4)
106 bytes -= 4;
111 for(int i = 0; i < bytes; i++)
  /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/llvm/lib/Target/MSP430/
MSP430MachineFunctionInfo.h 27 /// stack frame in bytes.
43 void setCalleeSavedFrameSize(unsigned bytes) { CalleeSavedFrameSize = bytes; }
  /external/valgrind/main/drd/tests/
tc16_byterace.stderr.exp 4 Location 0x........ is 0 bytes inside bytes[4],
9 Location 0x........ is 0 bytes inside bytes[4],
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLRandom.java 31 protected void engineNextBytes(byte[] bytes) {
32 NativeCrypto.RAND_bytes(bytes);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
memory_pool.c 71 void * memory_pool_malloc(struct memory_pool * pool, unsigned int bytes)
73 if (bytes < POOL_LARGE_ALLOC) {
76 if (pool->head + bytes > pool->end)
79 assert(pool->head + bytes <= pool->end);
83 pool->head += bytes;
88 struct memory_block * block = (struct memory_block*)malloc(bytes + sizeof(struct memory_block));
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
BoundedByteString.java 56 * @param bytes array to wrap
57 * @param offset index to first byte to use in bytes
58 * @param length number of bytes to use from bytes
61 * bytes.length}.
63 BoundedByteString(byte[] bytes, int offset, int length) {
64 super(bytes);
71 if ((long) offset + length > bytes.length) {
102 return bytes[bytesOffset + index];
121 System.arraycopy(bytes, getOffsetIntoBytes() + sourceOffset, target
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/utils/
Cryptlib_AES.py 26 bytes = stringToBytes(plaintext)
27 cryptlib_py.cryptEncrypt(self.context, bytes)
28 return bytesToString(bytes)
32 bytes = stringToBytes(ciphertext)
33 cryptlib_py.cryptDecrypt(self.context, bytes)
34 return bytesToString(bytes)
Cryptlib_TripleDES.py 27 bytes = stringToBytes(plaintext)
28 cryptlib_py.cryptEncrypt(self.context, bytes)
29 return bytesToString(bytes)
33 bytes = stringToBytes(ciphertext)
34 cryptlib_py.cryptDecrypt(self.context, bytes)
35 return bytesToString(bytes
  /external/llvm/lib/Target/AArch64/
AArch64MachineFunctionInfo.h 26 /// Number of bytes of arguments this function has on the stack. If the callee
31 /// want to transfer control from a function with 8-bytes of stack-argument
32 /// space to a function with 16-bytes then misalignment of this value would
37 /// The number of bytes to restore to deallocate space for incoming
114 void setBytesInStackArgArea (unsigned bytes) { BytesInStackArgArea = bytes;}
117 void setArgumentStackToRestore(unsigned bytes) {
118 ArgumentStackToRestore = bytes;
122 void setInitialStackAdjust(unsigned bytes) { InitialStackAdjust = bytes; }
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
memory_pool.c 71 void * memory_pool_malloc(struct memory_pool * pool, unsigned int bytes)
73 if (bytes < POOL_LARGE_ALLOC) {
76 if (pool->head + bytes > pool->end)
79 assert(pool->head + bytes <= pool->end);
83 pool->head += bytes;
88 struct memory_block * block = (struct memory_block*)malloc(bytes + sizeof(struct memory_block));
  /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));
  /art/runtime/native/
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc 96 * (1b) bytes per entry
115 std::vector<uint8_t>& bytes = *reinterpret_cast<std::vector<uint8_t>*>(context); local
116 JDWP::Append4BE(bytes, t->GetThinLockId());
117 JDWP::Append1BE(bytes, Dbg::ToJdwpThreadStatus(t->GetState()));
118 JDWP::Append4BE(bytes, t->GetTid());
119 JDWP::Append4BE(bytes, utime);
120 JDWP::Append4BE(bytes, stime);
121 JDWP::Append1BE(bytes, t->IsDaemon());
125 std::vector<uint8_t> bytes; local
134 JDWP::Append1BE(bytes, kThstHeaderLen)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERBitString.java 69 * return the correct number of bytes for a bit string defined in
74 int bytes = 4; local
81 bytes--;
84 byte[] result = new byte[bytes];
85 for (int i = 0; i < bytes; i++)
216 byte[] bytes = new byte[getBytes().length + 1];
218 bytes[0] = (byte)getPadBits();
219 System.arraycopy(getBytes(), 0, bytes, 1, bytes.length - 1); local
221 out.writeEncoded(BERTags.BIT_STRING, bytes);
    [all...]
  /external/flac/libFLAC/
ogg_decoder_aspect.c 105 FLAC__OggDecoderAspectReadStatus FLAC__ogg_decoder_aspect_read_callback_wrapper(FLAC__OggDecoderAspect *aspect, FLAC__byte buffer[], size_t *bytes, FLAC__OggDecoderAspectReadCallbackProxy read_callback, const FLAC__StreamDecoder *decoder, void *client_data)
108 const size_t bytes_requested = *bytes;
121 * the same number of bytes from Ogg, then pass what's decoded down to
133 * to read in enough pages to return the full number of bytes
136 *bytes = 0;
137 while (*bytes < bytes_requested && !aspect->end_of_stream) {
140 size_t n = bytes_requested - *bytes;
141 if ((size_t)aspect->working_packet.bytes <= n) {
143 n = aspect->working_packet.bytes;
145 *bytes += n
    [all...]
  /external/valgrind/main/memcheck/tests/
leak-delta.stderr.exp 1 expecting details 10 bytes reachable
2 10 bytes in 1 blocks are still reachable in loss record ... of ...
8 expecting details +10 bytes lost, +21 bytes reachable
9 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
14 21 (+21) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
19 expecting details +65 bytes reachable
20 65 (+65) bytes in 2 (+2) blocks are still reachable in loss record ... of ...
26 expecting details +10 bytes reachable
27 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ..
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
DataOutputStreamTest.java 26 private ByteArrayOutputStream bytes = new ByteArrayOutputStream(); field in class:DataOutputStreamTest
27 private DataOutputStream os = new DataOutputStream(bytes);
32 assertEquals("[01, 00]", toHexString(bytes.toByteArray()));
42 assertEquals("[ff, 00, 01, 81, 34]", toHexString(bytes.toByteArray()));
48 assertEquals("[30, 34, 31]", toHexString(bytes.toByteArray()));
55 assertEquals("[00, 30, 12, 34]", toHexString(bytes.toByteArray()));
61 assertEquals("[00, 30, 12, 34, 00, 31]", toHexString(bytes.toByteArray()));
66 assertEquals("[01, 23, 45, 67, 89, ab, cd, ef]", toHexString(bytes.toByteArray()));
71 assertEquals("[01, 23, 45, 67]", toHexString(bytes.toByteArray()));
76 assertEquals("[01, 23, 45, 67]", toHexString(bytes.toByteArray()))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
uuid.py 38 # get the raw 16 bytes of the UUID
39 >>> x.bytes
43 >>> uuid.UUID(bytes=x.bytes)
61 of 16 bytes (with all the integer fields in big-endian order) as an
62 argument named 'bytes', or a string of 16 bytes (with the first three
68 bytes the UUID as a 16-byte string (containing the six
101 def __init__(self, hex=None, bytes=None, bytes_le=None, fields=None,
104 a string of 16 bytes as the 'bytes' argument, a string of 16 byte
208 bytes = property(get_bytes) variable in class:UUID
    [all...]

Completed in 358 milliseconds

1 2 3 4 5 6 78 91011>>