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

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dscoping.C6 void index ();
10 int index; member in struct:B
11 B(): index(4) {}
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dctors8.C11 foo() : index(-1) {}
12 int index; member in struct:foo
19 if (arr[0].index == -1
20 && arr[1].index == -1)
/openbsd-current/gnu/usr.bin/perl/t/run/
H A DswitchF.t10 my $index = $F[-1];
11 chomp $index;
12 is($index, $., "line $.");
/openbsd-current/regress/usr.sbin/ldapd/
H A Dldapd.conf12 index sn
13 index givenName
14 index cn
15 index mail
/openbsd-current/gnu/lib/libiberty/src/
H A Dindex.c1 /* Stub implementation of (obsolete) index(). */
5 @deftypefn Supplemental char* index (char *@var{s}, int @var{c})
8 the string @var{s}, or @code{NULL} if not found. The use of @code{index} is
18 index (const char *s, int c) function
/openbsd-current/gnu/llvm/clang/lib/Headers/
H A Davx512pfintrin.h20 #define _mm512_mask_prefetch_i32gather_pd(index, mask, addr, scale, hint) \
21 __builtin_ia32_gatherpfdpd((__mmask8)(mask), (__v8si)(__m256i)(index), \
25 #define _mm512_prefetch_i32gather_pd(index, addr, scale, hint) \
26 __builtin_ia32_gatherpfdpd((__mmask8) -1, (__v8si)(__m256i)(index), \
30 #define _mm512_mask_prefetch_i32gather_ps(index, mask, addr, scale, hint) \
32 (__v16si)(__m512i)(index), (void const *)(addr), \
35 #define _mm512_prefetch_i32gather_ps(index, addr, scale, hint) \
37 (__v16si)(__m512i)(index), (void const *)(addr), \
40 #define _mm512_mask_prefetch_i64gather_pd(index, mask, addr, scale, hint) \
41 __builtin_ia32_gatherpfqpd((__mmask8)(mask), (__v8di)(__m512i)(index), \
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dcrash18.C11 { return v == index; }// ERROR - .*
13 { return v != index; }// ERROR - .*
16 element *index; member in class:Pix
/openbsd-current/sys/sys/
H A Dtracepoint.h29 #define TRACEINDEX(func, index, args...) DT_INDEX_ENTER(func, index, args)
34 #define TRACEINDEX(func, index, args...)
/openbsd-current/usr.bin/dig/lib/isc/include/isc/
H A Dheap.h33 * The index function allows the client of the heap to receive a callback
34 * when an item's index number changes. This allows it to maintain
36 * from the heap require the index be provided.
52 isc_heapindex_t index, unsigned int size_increment,
66 *\li "index" is a function which takes a void *, and an unsigned int
68 * index value changes, so it may continue to delete itself from the
100 isc_heap_delete(isc_heap_t *heap, unsigned int index);
102 * \brief Deletes an element from a heap, by element index.
106 *\li "index" is a valid element index, a
[all...]
/openbsd-current/usr.bin/mail/
H A Dstrings.c57 int index; local
62 index = 0;
64 if (sp->s_topFree == NULL && (STRINGSIZE << index) >= s)
68 index++;
73 index = sp - &stringdope[0];
74 sp->s_topFree = malloc(STRINGSIZE << index);
78 sp->s_nleft = STRINGSIZE << index;
95 int index; local
99 index = 0;
104 sp->s_nleft = STRINGSIZE << index;
[all...]
/openbsd-current/sys/dev/pci/drm/include/drm/
H A Ddrm_exec.h55 * drm_exec_obj() - Return the object for a give drm_exec index
57 * @index: The index.
59 * Return: Pointer to the locked object corresponding to @index if
60 * index is within the number of locked objects. NULL otherwise.
63 drm_exec_obj(struct drm_exec *exec, unsigned long index) argument
65 return index < exec->num_objects ? exec->objects[index] : NULL;
71 * @index: unsigned long index fo
[all...]
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dindex.t19 my $first = substr($foo,0,index($foo,'the'));
25 $last = substr($foo,index($foo,'Now'),2);
31 $last = substr($foo,index($foo,'.'),100);
37 is(index("ababa","a",-1), 0);
38 is(index("ababa","a",0), 0);
39 is(index("ababa","a",1), 2);
40 is(index("ababa","a",2), 2);
41 is(index("ababa","a",3), 4);
42 is(index("ababa","a",4), 4);
43 is(index("abab
[all...]
/openbsd-current/gnu/usr.bin/perl/t/porting/
H A Dbincompat.t24 while (my ($index, $sub) = each @to_check) {
26 is($got, $V[$index], "C source code has $sub in sorted order");
27 open my $fh, "<", $file[$index]
28 or die "Failed to open '$file[$index]': $!";
32 if (/$var[$index]\[\]\s*=/ .. /^\s*"";/) {
52 is($strs[$j],$want, "String and define $j are the same ($strs[$j]) for $var[$index] in $file[$index]");
55 is("@strs","@sorted_strs", "Strings are sorted for $var[$index] in $file[$index]");
/openbsd-current/gnu/gcc/libgomp/testsuite/libgomp.c/appendix-a/
H A Da.16.1.c18 a16 (float *x, float *y, int *index, int n) argument
21 #pragma omp parallel for shared(x, y, index, n)
25 x[index[i]] += work1 (i);
34 int index[10000]; local
38 index[i] = i % 1000;
43 a16 (x, y, index, 10000);
/openbsd-current/gnu/usr.bin/perl/os2/OS2/OS2-ExtAttr/
H A DExtAttr.xs14 my_eadvalue(pTHX_ _ead ead, int index)
17 int size = _ead_value_size(ead, index);
23 p = _ead_get_value(ead, index);
27 #define my_eadreplace(ead, index, sv, flag) \
28 _ead_replace((ead), (index), flag, SvPVX(sv), SvCUR(sv))
37 my_eadvalue(ead, index)
39 int index
41 RETVAL = my_eadvalue(aTHX_ ead, index);
46 my_eadreplace(ead, index, sv, flag = 0)
48 int index
[all...]
/openbsd-current/regress/lib/libc/popen/
H A Dpopen.c51 int index, in; local
57 for (index=0; index<BUFSIZE; index++)
58 buffer[index]=arc4random();
76 index = 0;
78 if (index == BUFSIZE) {
83 if ((char)in != buffer[index++]) {
88 if (index < BUFSIZE) {
/openbsd-current/sys/dev/pci/drm/amd/display/modules/hdcp/
H A Dhdcp_log.h39 hdcp->config.index, \
46 hdcp->config.index, displayIndex)
50 hdcp->config.index, displayIndex)
54 hdcp->config.index, displayIndex)
58 hdcp->config.index, displayIndex)
63 "[Link %d] HDCP_REMOVE_DISPLAY index %d", \
64 hdcp->config.index, displayIndex)
68 hdcp->config.index, str)
72 hdcp->config.index, str)
77 hdcp->config.index, \
[all...]
/openbsd-current/sys/dev/pci/drm/amd/amdgpu/
H A Damdgpu_vf_error.c33 int index; local
42 index = adev->virt.vf_errors.write_count % AMDGPU_VF_ERROR_ENTRY_SIZE;
43 adev->virt.vf_errors.code [index] = error_code;
44 adev->virt.vf_errors.flags [index] = error_flags;
45 adev->virt.vf_errors.data [index] = error_data;
55 int index; local
76 index =adev->virt.vf_errors.read_count % AMDGPU_VF_ERROR_ENTRY_SIZE;
77 data1 = AMDGIM_ERROR_CODE_FLAGS_TO_MAILBOX(adev->virt.vf_errors.code[index],
78 adev->virt.vf_errors.flags[index]);
79 data2 = adev->virt.vf_errors.data[index]
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D980408-1.c9 index; member in struct:_RunlengthPacket
105 index; local
113 total_red+=( 3 )*(s->red); total_green+=( 3 )*(s->green); total_blue+=( 3 )*(s->blue); total_matte+=( 3 )*(s->index); s++; ; total_red+=( 7 )*(s->red); total_green+=( 7 )*(s->green); total_blue+=( 7 )*(s->blue); total_matte+=( 7 )*(s->index); s++; ; total_red+=( 7 )*(s->red); total_green+=( 7 )*(s->green); total_blue+=( 7 )*(s->blue); total_matte+=( 7 )*(s->index); s++; ; total_red+=( 3 )*(s->red); total_green+=( 3 )*(s->green); total_blue+=( 3 )*(s->blue); total_matte+=( 3 )*(s->index); s++; ;
115 total_red+=( 7 )*(s->red); total_green+=( 7 )*(s->green); total_blue+=( 7 )*(s->blue); total_matte+=( 7 )*(s->index); s++; ; total_red+=( 15 )*(s->red); total_green+=( 15 )*(s->green); total_blue+=( 15 )*(s->blue); total_matte+=( 15 )*(s->index); s++; ; total_red+=( 15 )*(s->red); total_green+=( 15 )*(s->green); total_blue+=( 15 )*(s->blue); total_matte+=( 15 )*(s->index); s++; ; total_red+=( 7 )*(s->red); total_green+=( 7 )*(s->green); total_blue+=( 7 )*(s->blue); total_matte+=( 7 )*(s->index);
[all...]
/openbsd-current/gnu/usr.bin/cvs/lib/
H A Dhostname.c20 #ifndef index
21 #define index strchr macro
/openbsd-current/usr.bin/vi/docs/USD.doc/vi.ref/
H A DMakefile8 CLEANFILES+=index index.so
10 paper.ps: vi.ref index.so
13 paper.txt: vi.ref index.so
16 index.so: vi.ref
17 # Build index.so, side-effect of building the paper.
18 sed '/^\.so index.so/s/^/.\\\" /' vi.ref | soelim | \
23 -e 's/ /__SPACE/g' < index | \
25 sed -e 's/__SPACE/ /g' > index.so
26 rm -f index
[all...]
/openbsd-current/gnu/usr.bin/binutils/gprof/
H A Dcg_print.c98 _("index"), _("%time"), _("self"), _("descendants"),
99 _("called"), _("self"), _("name"), _("index"));
106 printf (_("index %% time self children called name\n"));
118 sprintf (buf, "[%d]", cyc->cg.index);
130 printf (_(" <cycle %d as a whole> [%d]\n"), cyc->cg.cyc.num, cyc->cg.index);
483 sprintf (buf, "[%d]", np->cg.index);
515 unsigned int index;
523 for (index = 0; index < symtab.len + num_cycles; ++index)
514 unsigned int index; local
577 unsigned int index; local
794 unsigned long index, used, unused, scratch_index; local
1018 unsigned int index; local
1246 unsigned long scratch_arc_count, index; local
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/gprof/
H A Dcg_print.c98 _("index"), _("%time"), _("self"), _("descendants"),
99 _("called"), _("self"), _("name"), _("index"));
106 printf (_("index %% time self children called name\n"));
117 sprintf (buf, "[%d]", cyc->cg.index);
129 printf (_(" <cycle %d as a whole> [%d]\n"), cyc->cg.cyc.num, cyc->cg.index);
471 sprintf (buf, "[%d]", np->cg.index);
502 unsigned int index;
510 for (index = 0; index < symtab.len + num_cycles; ++index)
501 unsigned int index; local
562 unsigned int index; local
775 unsigned long index, used, unused, scratch_index; local
999 unsigned int index; local
1227 unsigned long scratch_arc_count, index; local
[all...]
/openbsd-current/gnu/llvm/clang/bindings/python/tests/cindex/
H A Dtest_index.py16 index = Index.create()
21 index = Index.create()
22 self.assertIsInstance(index, Index)
23 tu = index.parse(os.path.join(kInputsDir, 'hello.cpp'))
25 tu = index.parse(None, ['-c', os.path.join(kInputsDir, 'hello.cpp')])
/openbsd-current/sys/dev/pci/drm/amd/display/dc/
H A Ddc_trace.h26 #define TRACE_DC_PIPE_STATE(pipe_ctx, index, max_pipes) \
27 for (index = 0; index < max_pipes; ++index) { \
28 struct pipe_ctx *pipe_ctx = &dc->current_state->res_ctx.pipe_ctx[index]; \

Completed in 300 milliseconds

1234567891011>>