HomeSort by relevance Sort by last modified time
    Searched refs:length (Results 351 - 375 of 19023) sorted by null

<<11121314151617181920>>

  /art/runtime/entrypoints/portable/
portable_alloc_entrypoints.cc 39 uint32_t length,
42 return AllocArrayFromCode(type_idx, referrer, length, self, false);
47 uint32_t length,
50 return AllocArrayFromCode(type_idx, referrer, length, self, true);
55 uint32_t length,
58 return CheckAndAllocArrayFromCode(type_idx, referrer, length, thread, false);
63 uint32_t length,
66 return CheckAndAllocArrayFromCode(type_idx, referrer, length, thread, true);
  /art/test/022-interface/classes/
Main$1.class 
Main$SubInterfaceImpl.class 
  /bionic/libc/kernel/arch-arm/asm/
scatterlist.h 29 unsigned int length; member in struct:scatterlist
32 #define sg_dma_len(sg) ((sg)->length)
  /bionic/libc/kernel/arch-x86/asm/
scatterlist_32.h 27 unsigned int length; member in struct:scatterlist
32 #define sg_dma_len(sg) ((sg)->length)
  /bionic/libc/kernel/common/linux/usb/
f_mtp.h 25 int64_t length; member in struct:mtp_file_range
31 size_t length; member in struct:mtp_event
  /development/ndk/platforms/android-3/arch-arm/include/asm/
scatterlist.h 22 unsigned int length; member in struct:scatterlist
26 #define sg_dma_len(sg) ((sg)->length)
  /development/ndk/platforms/android-9/arch-x86/include/asm/
scatterlist_32.h 27 unsigned int length; member in struct:scatterlist
32 #define sg_dma_len(sg) ((sg)->length)
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
ClientHelloTest.java 46 assertEquals("incorrect length", 51, message.length());
47 assertEquals("incorrect random", 32, message.getRandom().length);
52 assertEquals("incorrect out data length", message.length(), encoded.length);
56 ClientHello message_2 = new ClientHello(in, message.length());
65 message_2 = new ClientHello(in, message.length()-1);
66 fail("Small length: No expected AlertException");
72 message_2 = new ClientHello(in, message.length()+ 1)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringFactory.java 45 * @param length The number of characters to read from the array.
50 int length);
58 * @param length The number of characters to read from the array.
63 int length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERSequence.java 50 int length = 0; local
56 length += ((ASN1Encodable)obj).toASN1Primitive().toDERObject().encodedLength();
59 bodyLength = length;
68 int length = getBodyLength(); local
70 return 1 + StreamUtil.calculateBodyLength(length) + length;
76 * As DER requires the constructed, definite-length model to
79 * we also have to specify CONSTRUCTED, and the objects length.
86 int length = getBodyLength(); local
89 out.writeLength(length);
    [all...]
DERSet.java 60 int length = 0; local
66 length += ((ASN1Encodable)obj).toASN1Primitive().toDERObject().encodedLength();
69 bodyLength = length;
78 int length = getBodyLength(); local
80 return 1 + StreamUtil.calculateBodyLength(length) + length;
86 * As DER requires the constructed, definite-length model to
89 * we also have to specify CONSTRUCTED, and the objects length.
96 int length = getBodyLength(); local
99 out.writeLength(length);
    [all...]
DLSequence.java 50 int length = 0; local
56 length += ((ASN1Encodable)obj).toASN1Primitive().toDLObject().encodedLength();
59 bodyLength = length;
68 int length = getBodyLength(); local
70 return 1 + StreamUtil.calculateBodyLength(length) + length;
76 * As DL requires the constructed, definite-length model to
79 * we also have to specify CONSTRUCTED, and the objects length.
86 int length = getBodyLength(); local
89 out.writeLength(length);
    [all...]
DLSet.java 53 int length = 0; local
59 length += ((ASN1Encodable)obj).toASN1Primitive().toDLObject().encodedLength();
62 bodyLength = length;
71 int length = getBodyLength(); local
73 return 1 + StreamUtil.calculateBodyLength(length) + length;
79 * As DL requires the constructed, definite-length model to
82 * we also have to specify CONSTRUCTED, and the objects length.
89 int length = getBodyLength(); local
92 out.writeLength(length);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
GeneralDigest.java 35 xBuf = new byte[t.xBuf.length];
42 System.arraycopy(t.xBuf, 0, xBuf, 0, t.xBuf.length);
53 if (xBufOff == xBuf.length)
81 while (len > xBuf.length)
85 inOff += xBuf.length;
86 len -= xBuf.length;
87 byteCount += xBuf.length;
126 for (int i = 0; i < xBuf.length; i++)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Encoder.java 12 int encode(byte[] data, int off, int length, OutputStream out) throws IOException;
14 int decode(byte[] data, int off, int length, OutputStream out) throws IOException;
  /external/chromium/net/disk_cache/
hash.h 19 inline uint32 Hash(const char* key, size_t length) {
20 return SuperFastHash(key, static_cast<int>(length));
  /external/chromium/third_party/libjingle/source/talk/base/
helpers.h 43 // Generates a (cryptographically) random string of the given length.
46 std::string CreateRandomString(size_t length);
48 // Generates a (cryptographically) random string of the given length.
51 bool CreateRandomString(size_t length, std::string* str);
  /external/chromium_org/base/
hash.h 19 inline uint32 Hash(const char* key, size_t length) {
20 return SuperFastHash(key, static_cast<int>(length));
  /external/chromium_org/base/win/
resource_util.h 26 size_t* length);
34 size_t* length);
  /external/chromium_org/content/common/
child_process_sandbox_support_impl_shm_linux.cc 13 int MakeSharedMemorySegmentViaIPC(size_t length, bool executable) {
16 request.WriteUInt32(length);
  /external/chromium_org/net/base/
test_data_stream.h 21 // Fill |buffer| with |length| bytes of data from the stream.
22 void GetBytes(char* buffer, int length);
24 // Verify that |buffer| contains the expected next |length| bytes from the
26 bool VerifyBytes(const char *buffer, int length);
zap.cc 15 ZapBuf(&(*s)[0], s->length() * sizeof(char));
20 ZapBuf(&(*s)[0], s->length() * sizeof(base::char16));
  /external/chromium_org/net/spdy/
spdy_test_utils.h 16 std::string HexDumpWithMarks(const unsigned char* data, int length,
28 void SetFrameLength(SpdyFrame* frame, size_t length, int spdy_version);
  /external/chromium_org/rlz/lib/
crc32_wrapper.cc 15 int Crc32(const unsigned char* buf, int length) {
16 return crc32(0L, buf, length);

Completed in 2909 milliseconds

<<11121314151617181920>>