Searched refs:length (Results 76 - 100 of 12787) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dmin_max_operations.c36 int16_t WebRtcSpl_MaxAbsValueW16C(const int16_t* vector, int length) { argument
39 if (vector == NULL || length <= 0) {
43 for (i = 0; i < length; i++) {
60 int32_t WebRtcSpl_MaxAbsValueW32C(const int32_t* vector, int length) { argument
67 if (vector == NULL || length <= 0) {
71 for (i = 0; i < length; i++) {
84 int16_t WebRtcSpl_MaxValueW16C(const int16_t* vector, int length) { argument
88 if (vector == NULL || length <= 0) {
92 for (i = 0; i < length; i++) {
100 int32_t WebRtcSpl_MaxValueW32C(const int32_t* vector, int length) { argument
116 WebRtcSpl_MinValueW16C(const int16_t* vector, int length) argument
132 WebRtcSpl_MinValueW32C(const int32_t* vector, int length) argument
148 WebRtcSpl_MaxAbsIndexW16(const int16_t* vector, int length) argument
170 WebRtcSpl_MaxIndexW16(const int16_t* vector, int length) argument
189 WebRtcSpl_MaxIndexW32(const int32_t* vector, int length) argument
208 WebRtcSpl_MinIndexW16(const int16_t* vector, int length) argument
227 WebRtcSpl_MinIndexW32(const int32_t* vector, int length) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DX9IntegerConverter.java28 if (qLength < bytes.length)
32 System.arraycopy(bytes, bytes.length - tmp.length, tmp, 0, tmp.length);
36 else if (qLength > bytes.length)
40 System.arraycopy(bytes, 0, tmp, tmp.length - bytes.length, bytes.length);
/external/chromium_org/base/i18n/
H A Dstring_search_unittest.cc30 size_t length = 0; local
33 ASCIIToUTF16("hello"), ASCIIToUTF16("hello world"), &index, &length));
35 EXPECT_EQ(5U, length);
39 &index, &length));
42 ASCIIToUTF16("aabaaa"), ASCIIToUTF16("aaabaabaaa"), &index, &length));
44 EXPECT_EQ(6U, length);
48 &index, &length));
51 string16(), ASCIIToUTF16("searching for empty string"), &index, &length));
53 EXPECT_EQ(0U, length);
57 &index, &length));
91 size_t length = 0; local
209 size_t length = 0; local
[all...]
/external/chromium_org/extensions/renderer/
H A Dstatic_v8_external_ascii_string_resource.cc21 size_t StaticV8ExternalAsciiStringResource::length() const { function in class:extensions::StaticV8ExternalAsciiStringResource
22 return buffer_.length();
/external/chromium_org/mojo/apps/js/test/
H A Dhexdump.js6 function hexify(value, length) {
8 while (hex.length < length)
15 for (var i = 0; i < bytes.length; ++i) {
/external/chromium_org/net/base/
H A Dtest_data_stream.cc13 // Fill |buffer| with |length| bytes of data from the stream.
14 void TestDataStream::GetBytes(char* buffer, int length) { argument
15 while (length) {
17 int bytes_to_copy = std::min(length, bytes_remaining_);
21 length -= bytes_to_copy;
25 bool TestDataStream::VerifyBytes(const char *buffer, int length) { argument
26 while (length) {
28 int bytes_to_compare = std::min(length, bytes_remaining_);
32 length -= bytes_to_compare;
/external/chromium_org/remoting/host/setup/
H A Dpin_validator.cc10 if (pin.length() < 6)
12 for (size_t i = 0; i < pin.length(); i++) {
/external/chromium_org/rlz/lib/
H A Dcrc8.h15 int length,
18 int length,
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFileInfo.h43 // The length of the file in bytes.
44 // The value -1 means that the length is not set.
45 long long length; member in struct:blink::WebFileInfo
57 WebFileInfo() : modificationTime(0.0), length(-1), type(TypeUnknown) { }
/external/chromium_org/third_party/icu/source/common/
H A Dures_cnv.c33 int32_t length; local
43 length=u_strlen(myPath);
44 if(length>=sizeof(pathBuffer)) {
47 } else if(uprv_isInvariantUString(myPath, length)) {
52 u_UCharsToChars(myPath, path, length+1); /* length+1 to include the NUL */
57 length=ucnv_fromUChars(cnv, path, (int32_t)sizeof(pathBuffer), myPath, length, status);
62 if(length>=sizeof(pathBuffer)) {
/external/chromium_org/third_party/ots/src/
H A Dcvt.cc12 bool ots_cvt_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
13 Buffer table(data, length);
18 if (length >= 128 * 1024u) {
22 if (length % 2 != 0) {
26 if (!table.Skip(length)) {
31 cvt->length = length;
45 if (!out->Write(cvt->data, cvt->length)) {
H A Dgpos.h16 length(0) {
23 size_t length; member in struct:ots::OpenTypeGPOS
H A Dgsub.h16 length(0) {
23 size_t length; member in struct:ots::OpenTypeGSUB
H A Dwoff2.h11 size_t ComputeWOFF2FinalSize(const uint8_t *data, size_t length);
17 const uint8_t *data, size_t length);
/external/chromium_org/url/
H A Durl_test_utils.h26 int length = static_cast<int>(wcslen(src)); local
27 for (int i = 0; i < length; ++i) {
35 int length = static_cast<int>(src.length()); local
36 EXPECT_LT(length, 1024);
38 EXPECT_TRUE(ConvertUTF8ToUTF16(src.data(), length, &output));
39 return base::string16(output.data(), output.length());
46 EXPECT_TRUE(ConvertUTF16ToUTF8(src.data(), static_cast<int>(src.length()),
/external/chromium_org/v8/test/mjsunit/
H A Darray-push8.js20 assertEquals(2, array.length);
22 assertEquals(2, array.length);
25 assertEquals(2, array.length);
27 assertEquals(2, array.length);
30 assertEquals(2, array.length);
32 assertEquals(2, array.length);
35 assertEquals(2, array.length);
37 assertEquals(2, array.length);
H A Delements-length-no-holey.js31 a.length = 1;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1079.js45 assertEquals(3, optimized(1, 2, 3).length);
48 assertEquals(3, optimized(1, 2, 3).length);
H A Dregress-121407.js30 a.length=2000;
37 a.length=2000;
H A Dregress-2419.js33 var b = {0: 5, 1: 4, 2: 3, 3: 2, 4: 1, 5: 0, length: 6};
36 assertPropertiesEqual({0: 5, 1: 4, 2: 3, 3: 2, 4: 1, 5: 0, length: 6}, b);
H A Dregress-347530.js8 a.length = 0;
H A Dregress-634-debug.js33 assertEquals(0, a.length);
34 assertEquals(0, a.length);
H A Dregress-grow-deopt.js8 a[a.length] = v;
16 assertEquals(4, a.length);
H A Dregress-reset-dictionary-elements.js7 a.length = 0;
9 a.length = 0;
/external/icu/icu4c/source/common/
H A Dures_cnv.c33 int32_t length; local
43 length=u_strlen(myPath);
44 if(length>=sizeof(pathBuffer)) {
47 } else if(uprv_isInvariantUString(myPath, length)) {
52 u_UCharsToChars(myPath, path, length+1); /* length+1 to include the NUL */
57 length=ucnv_fromUChars(cnv, path, (int32_t)sizeof(pathBuffer), myPath, length, status);
62 if(length>=sizeof(pathBuffer)) {

Completed in 827 milliseconds

1234567891011>>