Searched refs:index (Results 326 - 350 of 8369) sorted by relevance

<<11121314151617181920>>

/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dsimple_lsf_quant.c30 int16_t *index, /* (o) quantization index */
37 WebRtcIlbcfix_SplitVq( lsfdeq, index, lsf,
42 WebRtcIlbcfix_SplitVq( lsfdeq + LPC_FILTERORDER, index + LSF_NSPLIT,
27 WebRtcIlbcfix_SimpleLsfQ( int16_t *lsfdeq, int16_t *index, int16_t *lsf, int16_t lpc_n ) argument
/external/webrtc/webrtc/modules/audio_processing/vad/
H A Dvad_circular_buffer.h48 // Get previous values. |index = 0| corresponds to the most recent
49 // insertion. |index = 1| is the one before the most recent insertion, and
51 int Get(int index, double* value) const;
52 // Set a given position to |value|. |index| is interpreted as above.
53 int Set(int index, double value);
57 // Convert an index with the interpretation as get() method to the
58 // corresponding linear index.
59 int ConvertToLinearIndex(int* index) const;
/external/webrtc/webrtc/modules/video_capture/ios/
H A Ddevice_info_ios_objc.h20 + (AVCaptureDevice*)captureDeviceForIndex:(int)index;
22 + (NSString*)deviceNameForIndex:(int)index;
23 + (NSString*)deviceUniqueIdForIndex:(int)index;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringBuilderExtensions.cs50 public static char charAt( this StringBuilder buffer, int index )
52 return buffer[index];
62 public static void setCharAt( this StringBuilder buffer, int index, char c ) argument
64 buffer[index] = c;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DIntArray.java73 public void ensureCapacity(int index) { argument
77 else if ( (index+1)>=data.length ) {
79 if ( index>newSize ) {
80 newSize = index+1;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DArrayRegion.java43 * @param index Index of value to return
46 public Value getValue(int index) { argument
47 return values[index];
51 * @param index Index of value
54 public void setValue(int index, Value value) { argument
55 values[index] = value;
/external/boringssl/include/openssl/
H A Dex_data.h123 // assigned indexes in which to store their data. Each index has callback
137 // TYPE_get_ex_new_index allocates a new index for |TYPE|. An optional
141 // new index or a negative number on error.
147 // TYPE_set_ex_data sets an extra data pointer on |t|. The |index| argument
149 OPENSSL_EXPORT int TYPE_set_ex_data(TYPE *t, int index, void *arg);
152 // pointer exists. The |index| argument should have been returned from a
154 OPENSSL_EXPORT void *TYPE_get_ex_data(const TYPE *t, int index);
172 // value set for this index. However, the callbacks may also be skipped entirely
175 int index, long argl, void *argp);
185 void **from_d, int index, lon
[all...]
/external/boringssl/src/crypto/
H A Dthread_none.c49 void *CRYPTO_get_thread_local(thread_local_data_t index) { argument
50 return g_thread_locals[index];
53 int CRYPTO_set_thread_local(thread_local_data_t index, void *value, argument
55 g_thread_locals[index] = value;
/external/boringssl/src/include/openssl/
H A Dex_data.h123 // assigned indexes in which to store their data. Each index has callback
137 // TYPE_get_ex_new_index allocates a new index for |TYPE|. An optional
141 // new index or a negative number on error.
147 // TYPE_set_ex_data sets an extra data pointer on |t|. The |index| argument
149 OPENSSL_EXPORT int TYPE_set_ex_data(TYPE *t, int index, void *arg);
152 // pointer exists. The |index| argument should have been returned from a
154 OPENSSL_EXPORT void *TYPE_get_ex_data(const TYPE *t, int index);
172 // value set for this index. However, the callbacks may also be skipped entirely
175 int index, long argl, void *argp);
185 void **from_d, int index, lon
[all...]
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dshared-lib-test.cc49 void inc(int index) { argument
50 GLOB[index]++;
54 void inc2(int *a, int index) { argument
55 a[index]++;
/external/guava/guava-tests/benchmark/com/google/common/collect/
H A DIteratorBenchmark.java55 for (int index = 0; index < size; index++) {
56 sum += array[index].hashCode();
65 for (int index = 0; index < array.length; index++) {
66 sum += array[index].hashCode();
85 for (int index = 0; index < siz
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DTimeUnit.java27 private final int index; field in class:TimeUnit
31 index = 0;
47 // The old index field used to uniquely identify the time unit.
48 switch (index) {
64 throw new InvalidObjectException("Bad index: " + index);
/external/icu/icu4c/source/common/
H A Dpluralmap.cpp37 int32_t index = c; local
38 return (index < 0 || index >= UPRV_LENGTHOF(gPluralForms)) ?
39 NULL : gPluralForms[index];
/external/icu/icu4c/source/test/intltest/
H A Dtfsmalls.h26 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DTimeUnit.java28 private final int index; field in class:TimeUnit
32 index = 0;
49 // The old index field used to uniquely identify the time unit.
50 switch (index) {
66 throw new InvalidObjectException("Bad index: " + index);
/external/libchrome/base/threading/
H A Dthread_local_storage_unittest.cc99 // Create a TLS index with a destructor. Create a set of
110 for (int index = 0; index < kNumThreads; index++) {
111 values[index] = kInitialTlsValue;
112 thread_delegates[index] = new ThreadLocalStorageRunner(&values[index]);
113 threads[index] = new DelegateSimpleThread(thread_delegates[index],
115 threads[index]
[all...]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/index/
H A DIndexRecord.java10 package org.tukaani.xz.index;
/external/proguard/src/proguard/classfile/attribute/
H A DBootstrapMethodInfo.java70 for (int index = 0; index < u2methodArgumentCount; index++)
72 clazz.constantPoolEntryAccept(u2methodArguments[index],
H A DExceptionsAttribute.java74 for (int index = 0; index < u2exceptionIndexTableLength; index++)
76 clazz.constantPoolEntryAccept(u2exceptionIndexTable[index],
H A DInnerClassesAttribute.java73 for (int index = 0; index < u2classesCount; index++)
77 innerClassesInfoVisitor.visitInnerClassesInfo(clazz, classes[index]);
/external/proguard/src/proguard/classfile/attribute/annotation/
H A DTypeAnnotation.java113 for (int index = 0; index < typePath.length; index++)
117 typePathVisitor.visitTypePathInfo(clazz, this, typePath[index]);
127 for (int index = 0; index < typePath.length; index++)
131 typePathVisitor.visitTypePathInfo(clazz, field, this, typePath[index]);
141 for (int index = 0; index < typePat
[all...]
/external/proguard/src/proguard/classfile/visitor/
H A DExceptClassesFilter.java80 for (int index = 0; index < exceptClasses.length; index++)
82 if (exceptClasses[index].equals(clazz))
H A DSubclassFilter.java81 for (int index = 0; index < subclasses.length; index++)
83 if (subclasses[index].equals(subclass))
/external/proguard/src/proguard/gui/
H A DExtensionFileFilter.java68 for (int index = 0; index < extensions.length; index++)
70 if (fileName.endsWith(extensions[index]))
/external/proguard/src/proguard/io/
H A DDirectoryPump.java72 for (int index = 0; index < files.length; index++)
74 readFiles(files[index], dataEntryReader);

Completed in 4602 milliseconds

<<11121314151617181920>>