Home
last modified time | relevance | path

Searched refs:INDEX (Results 1 – 25 of 41) sorted by relevance

12

/dragonfly/contrib/gcc-8.0/gcc/config/i386/
H A Davx512pfintrin.h194 #define _mm512_prefetch_i32gather_pd(INDEX, ADDR, SCALE, HINT) \ argument
195 __builtin_ia32_gatherpfdpd ((__mmask8)0xFF, (__v8si)(__m256i)INDEX, \
198 #define _mm512_prefetch_i32gather_ps(INDEX, ADDR, SCALE, HINT) \ argument
203 __builtin_ia32_gatherpfdpd ((__mmask8)MASK, (__v8si)(__m256i)INDEX, \
210 #define _mm512_prefetch_i64gather_pd(INDEX, ADDR, SCALE, HINT) \ argument
211 __builtin_ia32_gatherpfqpd ((__mmask8)0xFF, (__v8di)(__m512i)INDEX, \
214 #define _mm512_prefetch_i64gather_ps(INDEX, ADDR, SCALE, HINT) \ argument
215 __builtin_ia32_gatherpfqps ((__mmask8)0xFF, (__v8di)(__m512i)INDEX, \
219 __builtin_ia32_gatherpfqpd ((__mmask8)MASK, (__v8di)(__m512i)INDEX, \
223 __builtin_ia32_gatherpfqps ((__mmask8)MASK, (__v8di)(__m512i)INDEX, \
[all …]
H A Davx2intrin.h1674 (__v4si)(__m128i)INDEX, \
1682 (__v4si)(__m128i)INDEX, \
1689 (__v4si)(__m128i)INDEX, \
1697 (__v4si)(__m128i)INDEX, \
1704 (__v2di)(__m128i)INDEX, \
1712 (__v2di)(__m128i)INDEX, \
1719 (__v4di)(__m256i)INDEX, \
1727 (__v4di)(__m256i)INDEX, \
1756 (__v8si)(__m256i)INDEX, \
1856 (__v4si)(__m128i)INDEX, \
[all …]
H A Davx512vlintrin.h12929 (__v8si)(__m256i)INDEX, \
12935 (__v4si)(__m128i)INDEX, \
12953 (__v4di)(__m256i)INDEX, \
12959 (__v2di)(__m128i)INDEX, \
13024 (__v8si)(__m256i)INDEX, \
13029 (__v8si)(__m256i)INDEX, \
13034 (__v4si)(__m128i)INDEX, \
13039 (__v4si)(__m128i)INDEX, \
13044 (__v4si)(__m128i)INDEX, \
13049 (__v4si)(__m128i)INDEX, \
[all …]
H A Davx512fintrin.h10201 (__v8si)(__m256i)INDEX, \
10207 (__v8si)(__m256i)INDEX, \
10213 (__v8di)(__m512i)INDEX, \
10219 (__v8di)(__m512i)INDEX, \
10225 (__v8di)(__m512i)INDEX, \
10231 (__v8di)(__m512i)INDEX, \
10249 (__v8si)(__m256i)INDEX, \
10255 (__v8si)(__m256i)INDEX, \
10273 (__v8di)(__m512i)INDEX, \
10279 (__v8di)(__m512i)INDEX, \
[all …]
/dragonfly/contrib/gcc-4.7/gcc/config/i386/
H A Davx2intrin.h1647 (__v4si)(__m128i)INDEX, \
1655 (__v4si)(__m128i)INDEX, \
1662 (__v4si)(__m128i)INDEX, \
1670 (__v4si)(__m128i)INDEX, \
1677 (__v2di)(__m128i)INDEX, \
1685 (__v2di)(__m128i)INDEX, \
1692 (__v4di)(__m256i)INDEX, \
1700 (__v4di)(__m256i)INDEX, \
1729 (__v8si)(__m256i)INDEX, \
1829 (__v4si)(__m128i)INDEX, \
[all …]
/dragonfly/contrib/byacc/
H A Dlalr.c49 static Value_t *INDEX; variable
565 INDEX = NEW2(ngotos + 1, Value_t); in digraph()
572 INDEX[i] = 0; in digraph()
576 if (INDEX[i] == 0 && R[i]) in digraph()
580 FREE(INDEX); in digraph()
597 INDEX[i] = height = top; in traverse()
607 if (INDEX[j] == 0) in traverse()
610 if (INDEX[i] > INDEX[j]) in traverse()
611 INDEX[i] = INDEX[j]; in traverse()
621 if (INDEX[i] == height) in traverse()
[all …]
/dragonfly/contrib/gcc-4.7/libcpp/include/
H A Dline-map.h325 #define LINEMAPS_MAP_AT(SET, MAP_KIND, INDEX) \ argument
326 (&((LINEMAPS_MAPS (SET, MAP_KIND))[(INDEX)]))
346 #define LINEMAPS_ORDINARY_MAP_AT(SET, INDEX) \ argument
347 LINEMAPS_MAP_AT (SET, false, INDEX)
379 #define LINEMAPS_MACRO_MAP_AT(SET, INDEX) \ argument
380 LINEMAPS_MAP_AT (SET, true, INDEX)
/dragonfly/contrib/gcc-4.7/gcc/
H A Dgimple.def59 /* GIMPLE_SWITCH <INDEX, DEFAULT_LAB, LAB1, ..., LABN> represents the
62 switch (INDEX)
70 INDEX is the variable evaluated to decide which label to jump to.
238 /* GIMPLE_OMP_FOR <BODY, CLAUSES, INDEX, INITIAL, FINAL, COND, INCR, PRE_BODY>
243 for (INDEX = INITIAL; INDEX COND FINAL; INDEX {+=,-=} INCR)
250 INDEX must be an integer or pointer variable, which is implicitly thread
253 INITIAL is the initial value given to INDEX. It must be
256 FINAL is the final value that INDEX should take. It must
H A Dgraphite-cloog-compat.h59 #define cloog_statement_alloc(STATE, INDEX) cloog_statement_alloc (INDEX) argument
H A Dtree-ssa-address.c93 #define TEMPL_IDX(AS, SYMBOL, BASE, INDEX, STEP, OFFSET) \ argument
97 | ((INDEX != 0) << 2) \
/dragonfly/contrib/gcc-4.7/libobjc/
H A Dclass.c157 #define CLASS_TABLE_HASH(INDEX, HASH, CLASS_NAME) \ argument
159 for (INDEX = 0; CLASS_NAME[INDEX] != '\0'; INDEX++) \
161 HASH = (HASH << 4) ^ (HASH >> 28) ^ CLASS_NAME[INDEX]; \
/dragonfly/contrib/gcc-8.0/gcc/
H A Dgimple.def59 /* GIMPLE_SWITCH <INDEX, DEFAULT_LAB, LAB1, ..., LABN> represents the
62 switch (INDEX)
70 INDEX is the variable evaluated to decide which label to jump to.
238 /* GIMPLE_OMP_FOR <BODY, CLAUSES, INDEX, INITIAL, FINAL, COND, INCR, PRE_BODY>
243 for (INDEX = INITIAL; INDEX COND FINAL; INDEX {+=,-=} INCR)
253 INDEX must be an integer or pointer variable, which is implicitly thread
256 INITIAL is the initial value given to INDEX. It must be
259 FINAL is the final value that INDEX should take. It must
H A Dtree-ssa-address.c96 #define TEMPL_IDX(AS, SYMBOL, BASE, INDEX, STEP, OFFSET) \ argument
100 | ((INDEX != 0) << 2) \
/dragonfly/contrib/awk/
H A Dawkgram.y56 %token <i> SUB GSUB IF INDEX LSUBSTR MATCHFCN NEXT NEXTFILE
84 %left GSUB IF INDEX LSUBSTR MATCHFCN NEXT NUMBER
384 | INDEX '(' pattern comma pattern ')'
385 { $$ = op2(INDEX, $3, $5); }
386 | INDEX '(' pattern comma reg_expr ')'
388 $$ = op2(INDEX, $3, (Node*)$5); }
H A Dmaketab.c57 { INDEX, "sindex", "sindex" },
H A Dlex.c68 { "index", INDEX, INDEX },
/dragonfly/lib/i18n_module/mapper_646/
H A Dcitrus_mapper_646.c74 #define INDEX(x) INDEX_##x, macro
77 SPECIALS(INDEX)
/dragonfly/sys/crypto/camellia/
H A Dcamellia.c77 #define SUBL(INDEX) (subkey[(INDEX)*2+1]) argument
78 #define SUBR(INDEX) (subkey[(INDEX)*2]) argument
103 #define CAMELLIA_SP1110(INDEX) (camellia_sp1110[(INDEX)]) argument
104 #define CAMELLIA_SP0222(INDEX) (camellia_sp0222[(INDEX)]) argument
105 #define CAMELLIA_SP3033(INDEX) (camellia_sp3033[(INDEX)]) argument
106 #define CAMELLIA_SP4404(INDEX) (camellia_sp4404[(INDEX)]) argument
/dragonfly/contrib/zlib-1.2/
H A DREADME.DELETED2 INDEX
/dragonfly/share/syscons/fonts/
H A DMakefile30 INDEX.fonts
H A DINDEX.fonts2 # $FreeBSD: src/share/syscons/fonts/INDEX.fonts,v 1.16.2.8 2002/08/24 09:35:49 schweikh Exp $
3 # $DragonFly: src/share/syscons/fonts/INDEX.fonts,v 1.3 2006/11/12 21:15:46 swildner Exp $
/dragonfly/share/syscons/keymaps/
H A DMakefile4 KEYMAPS= INDEX.keymaps
H A DINDEX.keymaps1 # $FreeBSD: src/share/syscons/keymaps/INDEX.keymaps,v 1.37.2.8 2003/05/18 08:57:28 murray Exp $
2 # $DragonFly: src/share/syscons/keymaps/INDEX.keymaps,v 1.5 2006/11/12 21:15:46 swildner Exp $
/dragonfly/contrib/gcc-4.7/gcc/doc/
H A Dgimple.texi956 Return input operand @code{INDEX} of @code{GIMPLE_ASM} @code{G}.
964 Return output operand @code{INDEX} of @code{GIMPLE_ASM} @code{G}.
973 Return clobber operand @code{INDEX} of @code{GIMPLE_ASM} @code{G}.
1245 Return a pointer to the argument at position @code{INDEX} for call
1670 sequence of statements that are loop invariant. @code{INDEX} is the
1672 final value of @code{INDEX}. OMP_FOR_COND is the predicate used to
1697 Set @code{INDEX} to be the index variable for @code{OMP_FOR} @code{G}.
1995 @code{INDEX} for @code{GIMPLE_PHI} @code{G}.
2049 statements. @code{INDEX} and @code{DEFAULT_LABEL} are as in
2070 Set @code{INDEX} to be the index variable for switch statement @code{G}.
[all …]
/dragonfly/contrib/file/magic/Magdir/
H A Dmacintosh370 >24 string INDEX data file index
377 >0x9C string INDEX data file index

12