HomeSort by relevance Sort by last modified time
    Searched refs:length (Results 76 - 100 of 15072) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
scatterlist.h 27 unsigned int length; member in struct:scatterlist
31 #define sg_dma_len(sg) ((sg)->length)
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
scatterlist.h 27 unsigned int length; member in struct:scatterlist
31 #define sg_dma_len(sg) ((sg)->length)
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
CertificateMessage.java 50 * @param length
53 public CertificateMessage(HandshakeIODataStream in, int length) throws IOException {
56 if (length != 3) { // no more bytes after total_length
62 this.length = 3;
87 this.length = 3 + 3 * certs.length + enc_size;
88 if (this.length != length) {
102 length = 3;
107 encoded_certs = new byte[certs.length][];
    [all...]
DataStream.java 34 * Retrieves the data of specified length from the stream.
35 * If the data size in the stream is less than specified length,
39 public byte[] getData(int length);
  /bionic/libc/string/
bcopy.c 52 memcpy(void *dst0, const void *src0, size_t length)
56 memmove(void *dst0, const void *src0, size_t length)
59 bcopy(const void *src0, void *dst0, size_t length)
67 if (length == 0 || dst == src) /* nothing to do */
86 if ((t ^ (long)dst) & wmask || length < wsize)
87 t = length;
90 length -= t;
96 t = length / wsize;
98 t = length & wmask;
106 src += length;
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/array_length/d/
T_array_length_4.java 22 return arr.length;
  /dalvik/vm/native/
org_apache_harmony_dalvik_ddmc_DdmServer.cpp 26 * int offset, int length)
36 int length = args[3]; local
38 assert(offset+length <= (int)data->length);
40 dvmDbgDdmSendChunk(type, length, (const u1*)data->contents + offset);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DESedeParameters.java 7 * DES-EDE Key length in bytes.
16 if (isWeakKey(key, 0, key.length))
27 * @param length number of bytes making up the key
32 int length)
34 for (int i = offset; i < length; i += DES_KEY_LENGTH)
55 return isWeakKey(key, offset, key.length - offset);
RC2Parameters.java 14 this(key, (key.length > 128) ? 1024 : (key.length * 8));
21 this.key = new byte[key.length];
24 System.arraycopy(key, 0, this.key, 0, key.length);
  /external/chromium/sdch/open-vcdiff/src/
varint_bigendian.cc 29 // Reads a variable-length integer from **varint_ptr
30 // and returns it in a fixed-length representation. Increments
69 int length = 1; local
77 ++length;
80 return length;
86 const int length = EncodeInternal(v, varint_buf); local
87 memcpy(ptr, &varint_buf[kMaxBytes - length], length);
88 return length;
95 const int length = EncodeInternal(value, varint_buf) local
104 const int length = EncodeInternal(value, varint_buf); local
117 int length = 0; local
    [all...]
  /external/elfutils/libdw/
dwarf_filesrc.c 60 Dwarf_Word *length)
68 if (length != NULL)
69 *length = file->info[idx].length;
  /external/icu4c/samples/uciter8/
uit_len8.h 27 uiter_setLenient8(UCharIterator *iter, const char *s, int32_t length);
  /external/open-vcdiff/src/
varint_bigendian.cc 29 // Reads a variable-length integer from **varint_ptr
30 // and returns it in a fixed-length representation. Increments
69 int length = 1; local
77 ++length;
80 return length;
86 const int length = EncodeInternal(v, varint_buf); local
87 memcpy(ptr, &varint_buf[kMaxBytes - length], length);
88 return length;
95 const int length = EncodeInternal(value, varint_buf) local
104 const int length = EncodeInternal(value, varint_buf); local
117 int length = 0; local
    [all...]
  /external/proguard/src/proguard/util/
EmptyStringMatcher.java 34 return string.length() == 0;
  /external/v8/test/cctest/
test-bignum-dtoa.cc 62 int length; local
65 BignumDtoa(1.0, BIGNUM_DTOA_SHORTEST, 0, buffer, &length, &point);
69 BignumDtoa(1.0, BIGNUM_DTOA_FIXED, 3, buffer, &length, &point);
70 CHECK_GE(3, length - point);
75 BignumDtoa(1.0, BIGNUM_DTOA_PRECISION, 3, buffer, &length, &point);
76 CHECK_GE(3, length);
81 BignumDtoa(1.5, BIGNUM_DTOA_SHORTEST, 0, buffer, &length, &point);
85 BignumDtoa(1.5, BIGNUM_DTOA_FIXED, 10, buffer, &length, &point);
86 CHECK_GE(10, length - point);
91 BignumDtoa(1.5, BIGNUM_DTOA_PRECISION, 10, buffer, &length, &point)
260 int length; local
278 int length; local
299 int length; local
    [all...]
  /external/valgrind/main/coregrind/m_demangle/
dyn-string.c 86 ds_struct_ptr->length = 0;
189 ds->length = 0;
203 if (dyn_string_resize (dest, src->length) == NULL)
208 dest->length = src->length;
219 int length = strlen (src); local
221 if (dyn_string_resize (dest, length) == NULL)
226 dest->length = length;
264 if (dyn_string_resize (dest, dest->length + src->length) == NULL
285 int length = strlen (src); local
381 int length = end - start; local
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
regress-001.js 25 function AddRegExpCases( regexp, str_regexp, length, matches_array ) {
28 "( " + str_regexp + " ).length",
29 regexp.length,
30 regexp.length );
33 for ( var matches = 0; matches < matches_array.length; matches++ ) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/Array/
array_split_1.js 45 "('a,b,c'.split(',')).length",
47 ('a,b,c'.split(',')).length );
50 "('a,b'.split(',')).length",
52 ('a,b'.split(',')).length );
55 "('a'.split(',')).length",
57 ('a'.split(',')).length );
61 * string into a non-empty array (an array of length 1 that contains the empty string).
65 "(''.split(',')).length",
67 (''.split(',')).length );
  /external/webkit/Source/JavaScriptCore/wtf/
OSRandomSource.h 36 void cryptographicallyRandomValuesFromOS(unsigned char* buffer, size_t length);
  /external/webkit/Source/WebCore/html/canvas/
CanvasPixelArray.cpp 34 PassRefPtr<CanvasPixelArray> CanvasPixelArray::create(unsigned length)
36 return adoptRef(new CanvasPixelArray(length));
44 CanvasPixelArray::CanvasPixelArray(unsigned length)
45 : m_data(ByteArray::create(length))
  /external/webkit/Source/WebKit/chromium/public/
WebColor.h 42 WEBKIT_API void setNamedColors(const WebColorName*, const WebColor*, size_t length);
  /libcore/luni/src/main/java/javax/crypto/spec/
PBEKeySpec.java 47 this.password = new char[password.length];
48 System.arraycopy(password, 0, this.password, 0, password.length);
57 * iteration count and the desired length of the derived key.
66 * the desired key length of the derived key,
71 * the key length is zero or negative.
78 if (salt.length == 0) {
79 throw new IllegalArgumentException("salt.length == 0");
91 this.password = new char[password.length];
92 System.arraycopy(password, 0, this.password, 0, password.length);
94 this.salt = new byte[salt.length];
    [all...]
PBEParameterSpec.java 50 this.salt = new byte[salt.length];
51 System.arraycopy(salt, 0, this.salt, 0, salt.length);
61 byte[] result = new byte[salt.length];
62 System.arraycopy(salt, 0, result, 0, salt.length);
  /external/dropbear/libtomcrypt/src/encauth/eax/
eax_decrypt.c 25 @param length The length (octets) of the ciphertext
29 unsigned long length)
38 if ((err = omac_process(&eax->ctomac, ct, length)) != CRYPT_OK) {
43 return ctr_decrypt(ct, pt, length, &eax->ctr);
eax_encrypt.c 25 @param length The length of the plaintext (octets)
29 unsigned long length)
38 if ((err = ctr_encrypt(pt, ct, length, &eax->ctr)) != CRYPT_OK) {
43 return omac_process(&eax->ctomac, ct, length);

Completed in 725 milliseconds

1 2 34 5 6 7 8 91011>>