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

1 2 3 4 5 6

  /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...]
  /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/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...]
  /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/chromium_org/v8/tools/
test-push-to-trunk.sh 37 # index increment.
104 EXP[22]="git apply --index --reject /tmp/v8-push-to-trunk-tempfile-patch"
138 export INDEX=$(mktemp)
142 ########## Command index
145 local I="$(command cat $INDEX)"
147 echo "$I" > $INDEX
151 echo "-1" > $INDEX
191 echo "Com. Index: $I" >> $TEST_OUTPUT
244 rm -rf $INDEX
  /external/chromium_org/components/test/data/web_database/
version_25.sql 16 CREATE INDEX logins_signon ON logins (signon_realm);
17 CREATE INDEX web_apps_url_index ON web_apps (url);
18 CREATE INDEX autofill_name ON autofill (name);
19 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
20 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
21 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
22 CREATE INDEX credit_cards_label_index ON credit_cards (label);
version_26.sql 16 CREATE INDEX logins_signon ON logins (signon_realm);
17 CREATE INDEX web_apps_url_index ON web_apps (url);
18 CREATE INDEX autofill_name ON autofill (name);
19 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
20 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
21 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
22 CREATE INDEX credit_cards_label_index ON credit_cards (label);
version_48.sql 22 CREATE INDEX autofill_name ON autofill (name);
23 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
24 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
25 CREATE INDEX web_apps_url_index ON web_apps (url);
26 CREATE INDEX web_intents_index ON web_intents (action);
27 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
version_27.sql 18 CREATE INDEX logins_signon ON logins (signon_realm);
19 CREATE INDEX ie7_logins_hash ON ie7_logins (url_hash);
20 CREATE INDEX web_apps_url_index ON web_apps (url);
21 CREATE INDEX autofill_name ON autofill (name);
22 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
23 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
24 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
25 CREATE INDEX credit_cards_label_index ON credit_cards (label);
version_44.sql 45 CREATE INDEX autofill_name ON autofill (name);
46 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
47 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
48 CREATE INDEX logins_signon ON logins (signon_realm);
49 CREATE INDEX ie7_logins_hash ON ie7_logins (url_hash);
50 CREATE INDEX web_apps_url_index ON web_apps (url);
51 CREATE INDEX web_intents_index ON web_intents (action);
52 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
version_29.sql 22 CREATE INDEX logins_signon ON logins (signon_realm);
23 CREATE INDEX web_apps_url_index ON web_apps (url);
24 CREATE INDEX autofill_name ON autofill (name);
25 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
26 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
27 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
28 CREATE INDEX credit_cards_label_index ON credit_cards (label);
version_22.sql 12 INSERT INTO "keywords" VALUES(5,'Wikipedia (en)','en.wikipedia.org','','http://en.wikipedia.org/w/index.php?title=Special:Search&search={searchTerms}',1,0,'',1283287335,0,'','',0,0);
22 CREATE INDEX logins_signon ON logins (signon_realm);
23 CREATE INDEX ie7_logins_hash ON ie7_logins (url_hash);
24 CREATE INDEX web_apps_url_index ON web_apps (url);
25 CREATE INDEX autofill_name ON autofill (name);
26 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
27 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
version_45.sql 43 CREATE INDEX autofill_name ON autofill (name);
44 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
45 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
46 CREATE INDEX web_apps_url_index ON web_apps (url);
47 CREATE INDEX web_intents_index ON web_intents (action);
48 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
version_45_compatible.sql 43 CREATE INDEX autofill_name ON autofill (name);
44 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
45 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
46 CREATE INDEX web_apps_url_index ON web_apps (url);
47 CREATE INDEX web_intents_index ON web_intents (action);
48 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
version_46.sql 25 CREATE INDEX autofill_name ON autofill (name);
26 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
27 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
28 CREATE INDEX web_apps_url_index ON web_apps (url);
29 CREATE INDEX web_intents_index ON web_intents (action);
30 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
version_47.sql 44 CREATE INDEX autofill_name ON autofill (name);
45 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
46 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
47 CREATE INDEX web_apps_url_index ON web_apps (url);
48 CREATE INDEX web_intents_index ON web_intents (action);
49 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
version_54.sql 34 CREATE INDEX web_apps_url_index ON web_apps (url);
35 CREATE INDEX web_intents_index ON web_intents (action);
36 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
37 CREATE INDEX autofill_name ON autofill (name);
38 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
39 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
version_22_corrupt.sql 12 INSERT INTO "keywords" VALUES(5,'Wikipedia (en)','en.wikipedia.org','','http://en.wikipedia.org/w/index.php?title=Special:Search&search={searchTerms}',1,0,'',1283287335,0,'','',0,0);
24 CREATE INDEX logins_signon ON logins (signon_realm);
25 CREATE INDEX ie7_logins_hash ON ie7_logins (url_hash);
26 CREATE INDEX web_apps_url_index ON web_apps (url);
27 CREATE INDEX autofill_name ON autofill (name);
28 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
29 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
30 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
31 CREATE INDEX credit_cards_label_index ON credit_cards (label);
  /external/chromium_org/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]);

Completed in 501 milliseconds

1 2 3 4 5 6