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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/common/
ustrfmt.c 24 * @return the length of the result, not including any terminating
31 int32_t length = 0; local
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
40 } while(i && length<capacity);
42 while (length < minwidth){
43 buffer[length++] = (UChar) 0x0030;/*zero padding */
46 if(length<capacity){
47 buffer[length] = (UChar) 0x0000;
51 for (j = 0; j < (length / 2); j++){
52 temp = buffer[(length-1) - j]
    [all...]
unistr_props.cpp 34 int32_t oldLength = this->length();
35 int32_t i = oldLength, length; local
39 length = i;
48 if(length < oldLength) {
49 setLength(length);
57 if(i >= length) {
60 U16_NEXT(array, i, length, c);
  /external/icu4c/common/
ustrfmt.c 24 * @return the length of the result, not including any terminating
31 int32_t length = 0; local
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
40 } while(i && length<capacity);
42 while (length < minwidth){
43 buffer[length++] = (UChar) 0x0030;/*zero padding */
46 if(length<capacity){
47 buffer[length] = (UChar) 0x0000;
51 for (j = 0; j < (length / 2); j++){
52 temp = buffer[(length-1) - j]
    [all...]
unistr_props.cpp 35 int32_t oldLength = this->length();
36 int32_t i = oldLength, length; local
40 length = i;
49 if(length < oldLength) {
50 setLength(length);
58 if(i >= length) {
61 U16_NEXT(array, i, length, c);
  /libcore/crypto/src/main/java/org/conscrypt/
CertificateVerify.java 40 if (hash == null || hash.length == 0) {
45 length = hash.length + 2;
52 * @param length
55 public CertificateVerify(HandshakeIODataStream in, int length)
57 if (length == 0) {
61 if (in.readUint16() != length - 2) {
65 signedHash = in.read(length -2);
67 this.length = 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);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
CString.cpp 36 PassRefPtr<CStringBuffer> CStringBuffer::createUninitialized(size_t length)
38 RELEASE_ASSERT(length < (numeric_limits<unsigned>::max() - sizeof(CStringBuffer)));
41 size_t size = sizeof(CStringBuffer) + length + 1;
43 return adoptRef(new (NotNull, stringBuffer) CStringBuffer(length));
54 CString::CString(const char* str, size_t length)
57 ASSERT(!length);
61 init(str, length);
64 void CString::init(const char* str, size_t length)
68 m_buffer = CStringBuffer::createUninitialized(length);
69 memcpy(m_buffer->mutableData(), str, length); local
97 size_t length = buffer->length(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
Int16Array.h 37 static inline PassRefPtr<Int16Array> create(unsigned length);
38 static inline PassRefPtr<Int16Array> create(const short* array, unsigned length);
39 static inline PassRefPtr<Int16Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
43 static inline PassRefPtr<Int16Array> createUninitialized(unsigned length);
59 unsigned length);
64 PassRefPtr<Int16Array> Int16Array::create(unsigned length)
66 return TypedArrayBase<short>::create<Int16Array>(length);
69 PassRefPtr<Int16Array> Int16Array::create(const short* array, unsigned length)
71 return TypedArrayBase<short>::create<Int16Array>(array, length);
74 PassRefPtr<Int16Array> Int16Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
    [all...]
Int32Array.h 36 static inline PassRefPtr<Int32Array> create(unsigned length);
37 static inline PassRefPtr<Int32Array> create(const int* array, unsigned length);
38 static inline PassRefPtr<Int32Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
42 static inline PassRefPtr<Int32Array> createUninitialized(unsigned length);
58 unsigned length);
63 PassRefPtr<Int32Array> Int32Array::create(unsigned length)
65 return TypedArrayBase<int>::create<Int32Array>(length);
68 PassRefPtr<Int32Array> Int32Array::create(const int* array, unsigned length)
70 return TypedArrayBase<int>::create<Int32Array>(array, length);
73 PassRefPtr<Int32Array> Int32Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
    [all...]
Int8Array.h 38 static inline PassRefPtr<Int8Array> create(unsigned length);
39 static inline PassRefPtr<Int8Array> create(const signed char* array, unsigned length);
40 static inline PassRefPtr<Int8Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
44 static inline PassRefPtr<Int8Array> createUninitialized(unsigned length);
60 unsigned length);
65 PassRefPtr<Int8Array> Int8Array::create(unsigned length)
67 return TypedArrayBase<signed char>::create<Int8Array>(length);
70 PassRefPtr<Int8Array> Int8Array::create(const signed char* array, unsigned length)
72 return TypedArrayBase<signed char>::create<Int8Array>(array, length);
75 PassRefPtr<Int8Array> Int8Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
    [all...]
Uint16Array.h 38 static inline PassRefPtr<Uint16Array> create(unsigned length);
39 static inline PassRefPtr<Uint16Array> create(const unsigned short* array, unsigned length);
40 static inline PassRefPtr<Uint16Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
44 static inline PassRefPtr<Uint16Array> createUninitialized(unsigned length);
60 unsigned length);
65 PassRefPtr<Uint16Array> Uint16Array::create(unsigned length)
67 return TypedArrayBase<unsigned short>::create<Uint16Array>(length);
70 PassRefPtr<Uint16Array> Uint16Array::create(const unsigned short* array, unsigned length)
72 return TypedArrayBase<unsigned short>::create<Uint16Array>(array, length);
75 PassRefPtr<Uint16Array> Uint16Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
    [all...]
Uint32Array.h 38 static inline PassRefPtr<Uint32Array> create(unsigned length);
39 static inline PassRefPtr<Uint32Array> create(const unsigned int* array, unsigned length);
40 static inline PassRefPtr<Uint32Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
44 static inline PassRefPtr<Uint32Array> createUninitialized(unsigned length);
60 unsigned length);
65 PassRefPtr<Uint32Array> Uint32Array::create(unsigned length)
67 return TypedArrayBase<unsigned int>::create<Uint32Array>(length);
70 PassRefPtr<Uint32Array> Uint32Array::create(const unsigned int* array, unsigned length)
72 return TypedArrayBase<unsigned int>::create<Uint32Array>(array, length);
75 PassRefPtr<Uint32Array> Uint32Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
    [all...]
Uint8Array.h 38 static inline PassRefPtr<Uint8Array> create(unsigned length);
39 static inline PassRefPtr<Uint8Array> create(const unsigned char* array, unsigned length);
40 static inline PassRefPtr<Uint8Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
44 static inline PassRefPtr<Uint8Array> createUninitialized(unsigned length);
60 unsigned length);
65 PassRefPtr<Uint8Array> Uint8Array::create(unsigned length)
67 return TypedArrayBase<unsigned char>::create<Uint8Array>(length);
70 PassRefPtr<Uint8Array> Uint8Array::create(const unsigned char* array, unsigned length)
72 return TypedArrayBase<unsigned char>::create<Uint8Array>(array, length);
75 PassRefPtr<Uint8Array> Uint8Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
ShaderExecutable.h 21 ShaderExecutable(const void *function, size_t length) : mLength(length)
23 mFunction = new char[length];
24 memcpy(mFunction, function, length);
  /external/chromium_org/third_party/icu/source/test/perf/unisetperf/draft/
unicont.h 25 virtual int32_t span(const UChar *s, int32_t length);
27 virtual int32_t spanNot(const UChar *s, int32_t length);
29 virtual int32_t spanUTF8(const UChar *s, int32_t length);
31 virtual int32_t spanNotUTF8(const UChar *s, int32_t length);
  /external/chromium_org/third_party/ots/src/
cvt.h 14 uint32_t length; member in struct:ots::OpenTypeCVT
fpgm.h 14 uint32_t length; member in struct:ots::OpenTypeFPGM
prep.h 14 uint32_t length; member in struct:ots::OpenTypePREP
  /external/clang/test/CodeGen/
2002-03-12-StructInitialize.c 7 long length; member in struct:Connection_Type
2002-03-12-StructInitializer.c 3 /* GCC was not emitting string constants of the correct length when
11 long length; member in struct:Connection_Type
  /external/icu4c/test/perf/unisetperf/draft/
unicont.h 25 virtual int32_t span(const UChar *s, int32_t length);
27 virtual int32_t spanNot(const UChar *s, int32_t length);
29 virtual int32_t spanUTF8(const UChar *s, int32_t length);
31 virtual int32_t spanNotUTF8(const UChar *s, int32_t length);
  /frameworks/base/obex/javax/obex/
PasswordAuthentication.java 55 mUserName = new byte[userName.length];
56 System.arraycopy(userName, 0, mUserName, 0, userName.length);
59 mPassword = new byte[password.length];
60 System.arraycopy(password, 0, mPassword, 0, password.length);
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glMapBufferRange.java 1 // C function GLvoid * glMapBufferRange ( GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access )
6 int length,
  /libcore/benchmarks/src/benchmarks/regression/
StringLengthBenchmark.java 24 int length = 0; local
26 length = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx".length();
28 if (length != 51) throw new RuntimeException();
  /libcore/luni/src/main/java/java/security/spec/
EncodedKeySpec.java 37 this.encodedKey = new byte[encodedKey.length];
39 this.encodedKey, 0, this.encodedKey.length);
50 byte[] ret = new byte[encodedKey.length];
51 System.arraycopy(encodedKey, 0, ret, 0, ret.length);

Completed in 2921 milliseconds

12 3 4 5 6 7 8 91011>>