HomeSort by relevance Sort by last modified time
    Searched refs:INDEX (Results 1 - 25 of 116) sorted by null

1 2 3 4 5

  /external/bison/src/
Sbitset.h 29 #define Sbitset__byteAddress(SELF, INDEX) \
30 (((SELF) + (INDEX) / CHAR_BIT))
31 #define Sbitset__bit_mask(INDEX) \
32 (1 << (CHAR_BIT - 1 - (INDEX) % CHAR_BIT))
42 #define Sbitset__test(SELF, INDEX) \
43 ((*Sbitset__byteAddress ((SELF), (INDEX)) & Sbitset__bit_mask (INDEX)) != 0)
49 #define Sbitset__set(SELF, INDEX) \
51 *Sbitset__byteAddress ((SELF), (INDEX)) = \
52 *Sbitset__byteAddress ((SELF), (INDEX)) | Sbitset__bit_mask (INDEX);
    [all...]
relation.c 55 static relation_nodes INDEX;
68 INDEX[i] = height = top;
73 if (INDEX[R[i][j]] == 0)
76 if (INDEX[i] > INDEX[R[i][j]])
77 INDEX[i] = INDEX[R[i][j]];
82 if (INDEX[i] == height)
86 INDEX[j] = infinity;
102 INDEX = xcalloc (size + 1, sizeof *INDEX)
    [all...]
  /external/autotest/site_utils/
es_create_alias.sh 8 [-s <server>] [-p <port>] [-i <index>] [-a <alias>]
13 Create a new alias so that we can refer to an index via an alternate name.\n\
14 This is useful so we can remap an index without any downtime. \n\
19 -a A new name that we can refer to the index as \n\
20 -i elasticsearch index, i.e. atlantis4.mtv, cautotest, localhost, etc.\n"
25 INDEX=
38 INDEX=$OPTARG
53 echo "Creating alias ${ALIAS} for index ${INDEX} for
62 "index": '"\"${INDEX}\""
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
set.s 4 .global AUX_R1, INDEX, LABEL, SYMTAB, NSYMS
7 INDEX .equ 100/2 +3
8 ADD #INDEX,A
11 NSYMS .set INDEX
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
adaptive_smooth_no_mmx.cpp 275 *sign_V_ptr++ = INDEX(pelu, thr) + INDEX(pelc, thr) + INDEX(pell, thr);
289 *sign_V_ptr++ = INDEX(pelu, thr) + INDEX(pelc, thr) + INDEX(pell, thr);
310 *sign_V_ptr = INDEX(pelu, thr) + INDEX(pelc, thr) +
311 INDEX(pell, thr);
370 *sign_V_ptr++ = INDEX(pelu, thr) + INDEX(pelc, thr)
    [all...]
deringing_chroma.cpp 79 *ptr3++ = INDEX(pelu, thres) + INDEX(pelc, thres) + INDEX(pell, thres);
86 *ptr3++ = INDEX(pelu, thres) + INDEX(pelc, thres) + INDEX(pell, thres);
95 *ptr3 = INDEX(pelu, thres) + INDEX(pelc, thres) + INDEX(pell, thres);
145 *ptr3++ = INDEX(pelu, thres) + INDEX(pelc, thres) + INDEX(pell, thres)
    [all...]
post_proc.h 37 #define INDEX(x,thr) (((x)>=thr)?1:0)
  /cts/tests/tests/database/src/android/database/cts/
CursorIndexOutOfBoundsExceptionTest.java 25 int INDEX = 100;
28 String expected2 = "Index " + INDEX + " requested, with a size of " + SIZE;
44 throw new CursorIndexOutOfBoundsException(INDEX, SIZE);
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/include/
avx512pfintrin.h 51 _mm512_mask_prefetch_i32gather_pd (__m256i index, __mmask8 mask,
54 __builtin_ia32_gatherpfdpd (mask, (__v8si) index, (long long const *) addr,
60 _mm512_mask_prefetch_i32gather_ps (__m512i index, __mmask16 mask,
63 __builtin_ia32_gatherpfdps (mask, (__v16si) index, (int const *) addr,
69 _mm512_mask_prefetch_i64gather_pd (__m512i index, __mmask8 mask,
72 __builtin_ia32_gatherpfqpd (mask, (__v8di) index, (long long const *) addr,
78 _mm512_mask_prefetch_i64gather_ps (__m512i index, __mmask8 mask,
81 __builtin_ia32_gatherpfqps (mask, (__v8di) index, (int const *) addr,
87 _mm512_prefetch_i32scatter_pd (void *addr, __m256i index, int scale,
90 __builtin_ia32_scatterpfdpd ((__mmask8) 0xFF, (__v8si) index,
    [all...]
avx2intrin.h     [all...]
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/include/
avx512pfintrin.h 51 _mm512_mask_prefetch_i32gather_pd (__m256i index, __mmask8 mask,
54 __builtin_ia32_gatherpfdpd (mask, (__v8si) index, (long long const *) addr,
60 _mm512_mask_prefetch_i32gather_ps (__m512i index, __mmask16 mask,
63 __builtin_ia32_gatherpfdps (mask, (__v16si) index, (int const *) addr,
69 _mm512_mask_prefetch_i64gather_pd (__m512i index, __mmask8 mask,
72 __builtin_ia32_gatherpfqpd (mask, (__v8di) index, (long long const *) addr,
78 _mm512_mask_prefetch_i64gather_ps (__m512i index, __mmask8 mask,
81 __builtin_ia32_gatherpfqps (mask, (__v8di) index, (int const *) addr,
87 _mm512_prefetch_i32scatter_pd (void *addr, __m256i index, int scale,
90 __builtin_ia32_scatterpfdpd ((__mmask8) 0xFF, (__v8si) index,
    [all...]
avx2intrin.h     [all...]
  /external/skia/src/core/
SkTDPQueue.h 17 * Optionally objects may know their index into the priority queue. The queue will update the index
18 * as the objects move through the queue. This is enabled by using a non-nullptr function for INDEX.
19 * When an INDEX function is provided random deletes from the queue are allowed using remove().
21 * afterwards. In debug builds the index will be set to -1 before an element is removed from the
26 int* (*INDEX)(const T&) = (int* (*)(const T&))nullptr>
41 SkDEBUGCODE(if (SkToBool(INDEX)) { *INDEX(fArray[0]) = -1; })
58 int index = fArray.count(); local
61 this->percolateUpIfNecessary(index);
68 int index = *INDEX(entry); local
88 int index = *INDEX(entry); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/
OMXComponentDefines.h 39 #define CHECK_PORT_INDEX(P, INDEX)\
40 if ((P)->nPortIndex != INDEX) {\
41 LOGE("Bad port index %u, expected: %d", (P)->nPortIndex, INDEX);\
45 #define CHECK_ENUMERATION_RANGE(INDEX, RANGE)\
46 if (INDEX >= RANGE) {\
  /cts/suite/audio_quality/test/
TaskProcessTest.cpp 37 const android::String8 INDEX("index");
40 ASSERT_TRUE(mSequential->parseAttribute(INDEX, I));
TaskSequentialTest.cpp 44 const android::String8 INDEX("index");
49 ASSERT_TRUE(mSequential->parseAttribute(INDEX, I));
56 int index = -10; local
58 ASSERT_TRUE(mTestCase->findIndex(I, index));
59 ASSERT_TRUE(index == 10);
  /external/v8/test/mjsunit/
delete-non-configurable.js 63 var INDEX = 28;
66 obj[INDEX] = TIPLI;
67 Object.defineProperty(obj, INDEX, { configurable: false });
69 assertFalse(delete obj[INDEX]);
70 assertThrows("'use strict'; delete obj[INDEX];", TypeError);
71 assertFalse(delete obj[INDEX.toString()]);
72 assertThrows("'use strict'; delete obj[INDEX.toString()];", TypeError);
73 assertEquals(TIPLI, obj[INDEX]);
74 assertTrue(delete arr[INDEX+1]);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/lib/gcc/x86_64-linux/4.8/include/
avx2intrin.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/lib/gcc/x86_64-linux/4.8/include/
avx2intrin.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
avx2intrin.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
line-map.h 49 /* A logical line/column number, i.e. an "index" into a line_map. */
74 /* An index into the set that gives the line mapping at whose end
102 The offset from START_LOCATION is used to index into
276 bits of the integer is used to index the location_adhoc_data array,
344 /* Returns the index of the last map that was looked up with
350 /* Return the map at a given index. */
351 #define LINEMAPS_MAP_AT(SET, MAP_KIND, INDEX) \
352 (&((LINEMAPS_MAPS (SET, MAP_KIND))[(INDEX)]))
372 #define LINEMAPS_ORDINARY_MAP_AT(SET, INDEX) \
373 LINEMAPS_MAP_AT (SET, false, INDEX)
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 74 CREATE INDEX contactMethodsPeopleIndex ON contact_methods (person);
75 CREATE INDEX extensionsIndex1 ON extensions (person, name);
76 CREATE INDEX groupmembershipIndex1 ON groupmembership (person, group_id);
77 CREATE INDEX groupmembershipIndex2 ON groupmembership (group_id, person);
78 CREATE INDEX groupmembershipIndex3 ON groupmembership (group_sync_account, group_sync_id);
79 CREATE INDEX groupsSyncDirtyIndex ON groups (_sync_dirty);
80 CREATE INDEX organizationsIndex1 ON organizations (person);
81 CREATE INDEX peopleLookupIndex ON peopleLookup (token,source);
82 CREATE INDEX peopleLookupWithPhoneticNameIndex ON peopleLookupWithPhoneticName (token,source);
83 CREATE INDEX peopleNameIndex ON people (name)
    [all...]
  /packages/apps/Settings/src/com/android/settings/search/
IndexDatabaseHelper.java 33 private static final String INDEX = "index";
172 Log.w(TAG, "Index needs to be rebuilt as build-version is not the same");
176 Log.i(TAG, "Index is fine");
184 "Index needs to be rebuilt for schema version '" + newVersion + "'.");
193 "Index needs to be rebuilt for schema version '" + newVersion + "'.");
212 Log.e(TAG, "Cannot get build version from Index metadata");
222 context.getSharedPreferences(INDEX, 0).edit().clear().commit();
226 context.getSharedPreferences(INDEX, 0).edit().putBoolean(locale, true).commit();
230 return context.getSharedPreferences(INDEX, 0).getBoolean(locale, false)
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_primitive_restart.c 46 * We map the index buffer, find the restart indexes, unmap
47 * the index buffer then draw the sub-primitives delineated by the restarts.
51 * to the index buffer for re-use in subsequent draws. The list would be
53 * 2. If drawing triangle strips or quad strips, create a new index buffer
76 * are delineated by the restart index.
101 #define IB_INDEX_READ(TYPE, INDEX) (((const GL##TYPE *) elements)[INDEX])
181 /* Find the sub-primitives. These are regions in the index buffer which
182 * are split based on the primitive restart index value.
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 106 CREATE INDEX contactMethodsPeopleIndex ON contact_methods (person);
107 CREATE INDEX extensionsIndex1 ON extensions (person, name);
108 CREATE INDEX groupmembershipIndex1 ON groupmembership (person, group_id);
109 CREATE INDEX groupmembershipIndex2 ON groupmembership (group_id, person);
110 CREATE INDEX groupmembershipIndex3 ON groupmembership (group_sync_account, group_sync_id);
111 CREATE INDEX groupsSyncDirtyIndex ON groups (_sync_dirty);
112 CREATE INDEX organizationsIndex1 ON organizations (person);
113 CREATE INDEX peopleLookupIndex ON peopleLookup (token,source);
114 CREATE INDEX peopleLookupWithPhoneticNameIndex ON peopleLookupWithPhoneticName (token,source);
115 CREATE INDEX peopleNameIndex ON people (name)
    [all...]

Completed in 2813 milliseconds

1 2 3 4 5