Searched refs:index (Results 1 - 25 of 8871) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/samplecode/
H A Dvertexdump.cpp10 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]);
12 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]) { argument
45 index[0] = 0; index[1] = 5; index[2] = 1;
46 index[3] = 0; index[4] = 4; index[5] = 5;
48 index[6] = 1; index[
[all...]
/external/skia/samplecode/
H A Dvertexdump.cpp10 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]);
12 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]) { argument
45 index[0] = 0; index[1] = 5; index[2] = 1;
46 index[3] = 0; index[4] = 4; index[5] = 5;
48 index[6] = 1; index[
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dindex_conv_dec.c22 int16_t *index /* (i/o) Codebook indexes */
27 /* Readjust the second and third codebook index for the first 40 sample
30 if ((index[k]>=44)&&(index[k]<108)) {
31 index[k]+=64;
32 } else if ((index[k]>=108)&&(index[k]<128)) {
33 index[k]+=128;
H A Dindex_conv_enc.c25 int16_t *index /* (i/o) Codebook indexes */
30 /* Readjust the second and third codebook index so that it is
34 if ((index[k]>=108)&&(index[k]<172)) {
35 index[k]-=64;
36 } else if (index[k]>=236) {
37 index[k]-=128;
H A Dindex_conv_dec.h25 int16_t *index /* (i/o) Codebook indexes */
H A Dindex_conv_enc.h29 int16_t *index /* (i/o) Codebook indexes */
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DIndexedItem.java20 * An item in a Dalvik file which is referenced by index.
23 /** {@code >= -1;} assigned index of the item, or {@code -1} if not
25 private int index; field in class:IndexedItem
28 * Constructs an instance. The index is initially unassigned.
31 index = -1;
35 * Gets whether or not this instance has been assigned an index.
37 * @return {@code true} iff this instance has been assigned an index
40 return (index >= 0);
44 * Gets the item index.
46 * @return {@code >= 0;} the index
64 setIndex(int index) argument
[all...]
/external/chromium_org/third_party/angle/src/common/
H A Dtls.cpp15 TLSIndex index; local
18 index = TlsAlloc();
21 if ((pthread_key_create(&index, NULL)) != 0)
23 index = TLS_INVALID_INDEX;
27 assert(index != TLS_INVALID_INDEX && "CreateTLSIndex(): Unable to allocate Thread Local Storage");
28 return index;
31 bool DestroyTLSIndex(TLSIndex index) argument
33 assert(index != TLS_INVALID_INDEX && "DestroyTLSIndex(): Invalid TLS Index");
34 if (index == TLS_INVALID_INDEX)
40 return (TlsFree(index)
46 SetTLSValue(TLSIndex index, void *value) argument
61 GetTLSValue(TLSIndex index) argument
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPathOpsThreadedCommon.cpp13 for (int index = 0; index < fRunnables.count(); index++) {
14 SkDELETE(fRunnables[index]);
20 for (int index = 0; index < fRunnables.count(); ++ index) {
21 tg.add(fRunnables[index]);
/external/chromium_org/v8/test/webkit/
H A Dfor-in-to-text.js29 for (j in index) {
30 testProperty(index[j]);
34 shouldBeTrue("test.toString().match('for *[(]j *in *index[)]') != null");
H A Darray-index-immediate-types.js36 function putSelf(array, index)
38 index = index << 0;
39 array[index] = index;
/external/qemu/android/
H A Dkeycode.c22 int index; local
24 for (index = 0; index < 4; index++) {
25 if (code == wheel[index]) {
26 index = (index + rotation) & 3;
27 code = wheel[index];
/external/skia/tests/
H A DPathOpsThreadedCommon.cpp13 for (int index = 0; index < fRunnables.count(); index++) {
14 SkDELETE(fRunnables[index]);
20 for (int index = 0; index < fRunnables.count(); ++ index) {
21 pool.add(fRunnables[index]);
/external/aac/libSBRdec/src/
H A Dhuff_dec.cpp96 The table entries are interpreted either as index to the next entry
108 SCHAR index = 0; local
111 while (index >= 0) {
113 index = h[index][bit];
116 value = index+64; /* Add offset */
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepadList.cpp35 void GamepadList::set(unsigned index, Gamepad* gamepad) argument
37 if (index >= WebGamepads::itemsLengthCap)
39 m_items[index] = gamepad;
42 Gamepad* GamepadList::item(unsigned index) argument
44 return index < length() ? m_items[index].get() : 0;
49 for (unsigned index = 0; index < WebGamepads::itemsLengthCap; index++) {
50 visitor->trace(m_items[index]);
[all...]
H A DWebKitGamepadList.cpp14 void WebKitGamepadList::set(unsigned index, WebKitGamepad* gamepad) argument
16 if (index >= WebGamepads::itemsLengthCap)
18 m_items[index] = gamepad;
21 WebKitGamepad* WebKitGamepadList::item(unsigned index) argument
23 return index < length() ? m_items[index].get() : 0;
28 for (unsigned index = 0; index < WebGamepads::itemsLengthCap; index++) {
29 visitor->trace(m_items[index]);
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DByteArray.java23 * Reads an unsigned 16bit integer at the index.
25 public static int readU16bit(byte[] code, int index) { argument
26 return ((code[index] & 0xff) << 8) | (code[index + 1] & 0xff);
30 * Reads a signed 16bit integer at the index.
32 public static int readS16bit(byte[] code, int index) { argument
33 return (code[index] << 8) | (code[index + 1] & 0xff);
37 * Writes a 16bit integer at the index.
39 public static void write16bit(int value, byte[] code, int index) { argument
47 read32bit(byte[] code, int index) argument
55 write32bit(int value, byte[] code, int index) argument
[all...]
/external/libunwind/src/unwind/
H A DSetGR.c32 _Unwind_SetGR (struct _Unwind_Context *context, int index, argument
36 index = dwarf_to_unw_regnum(index);
38 unw_set_reg (&context->cursor, index, new_value);
40 if (index >= UNW_IA64_GR && index <= UNW_IA64_GR + 127)
42 unw_set_reg (&context->cursor, UNW_IA64_NAT + (index - UNW_IA64_GR), 0);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DOIDTokenizer.java12 private int index; field in class:OIDTokenizer
18 this.index = 0;
23 return (index != -1);
28 if (index == -1)
34 int end = oid.indexOf('.', index);
38 token = oid.substring(index);
39 index = -1;
43 token = oid.substring(index, end);
45 index = end + 1;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DBitArray.h42 void set(unsigned index) argument
44 ASSERT_WITH_SECURITY_IMPLICATION(index < arraySize);
45 m_data[index / 8] |= 1 << (index & 7);
48 void clear(unsigned index)
50 ASSERT_WITH_SECURITY_IMPLICATION(index < arraySize);
51 m_data[index / 8] &= ~(1 << (index & 7));
54 bool get(unsigned index) const
56 ASSERT_WITH_SECURITY_IMPLICATION(index < arraySiz
[all...]
/external/clang/test/Sema/
H A Dimplicit-builtin-redecl.c17 int index = 1; local
20 static int index; variable
23 return index << 2;
/external/proguard/src/proguard/obfuscate/
H A DNumericNameFactory.java34 private int index; field in class:NumericNameFactory
41 index = 0;
47 return Integer.toString(++index);
/external/lldb/test/lang/c/const_variables/
H A Dmain.c9 int32_t index; local
13 index = 512;
16 index = 256;
18 baaz(index);
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DConvexHull.cpp23 size_t index; local
26 for (index = 1; index < 4; ++index) {
27 if (cubic[yMin].y > cubic[index].y || (cubic[yMin].y == cubic[index].y
28 && cubic[yMin].x > cubic[index].x)) {
29 yMin = index;
36 for (index = 0; index <
109 int index; local
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dstring-indexof-2.js57 var index = -1;
59 index = lipsum.indexOf(substring, index + 1);
60 assertTrue(index != -1,
62 assertEquals(lipsum.substring(index, index + len), substring,
64 index + ".." + (index + len - 1));
65 } while (index >= 0 && index <
[all...]

Completed in 389 milliseconds

1234567891011>>