Searched refs:idx (Results 1 - 25 of 1130) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D20000412-2.c3 int f(int idx) { return (strlen(list[idx])); } argument
H A D20000405-3.c5 int foo (struct foo *ptr, int idx, void *pointer) argument
7 ptr->entry[idx] = pointer;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D20000412-2.c3 int f(int idx) { return (strlen(list[idx])); } argument
H A D20000405-3.c5 int foo (struct foo *ptr, int idx, void *pointer) argument
7 ptr->entry[idx] = pointer;
/netbsd-6-1-5-RELEASE/usr.sbin/mopd/common/
H A Dget.c37 mopGetChar(const u_char *pkt, int *idx) argument
41 ret = pkt[*idx];
42 *idx = *idx + 1;
47 mopGetShort(const u_char *pkt, int *idx) argument
51 ret = pkt[*idx] + pkt[*idx+1]*256;
52 *idx = *idx + 2;
57 mopGetLong(const u_char *pkt, int *idx) argument
70 mopGetMulti(const u_char *pkt, int *idx, u_char *dest, int size) argument
98 mopGetHeader(const u_char *pkt, int *idx, const u_char **dst, const u_char **src, u_short *proto, int *len, int trans) argument
[all...]
H A Dput.c37 mopPutChar(u_char *pkt, int *idx, u_char value) argument
39 pkt[*idx] = value;
40 *idx = *idx + 1;
44 mopPutShort(u_char *pkt, int *idx, u_short value) argument
48 pkt[*idx+i] = value % 256;
51 *idx = *idx + 2;
55 mopPutLong(u_char *pkt, int *idx, u_int32_t value) argument
59 pkt[*idx
66 mopPutMulti(u_char *pkt, int *idx, const u_char *value, int size) argument
77 mopPutTime(u_char *pkt, int *idx, time_t value) argument
104 mopPutHeader(u_char *pkt, int *idx, const u_char *dst, const u_char *src, u_short proto, int trans) argument
139 int idx = 0; local
[all...]
H A Ddl.c41 int i,idx = 0; local
51 idx = 22;
55 idx = 16;
58 code = mopGetChar(pkt,&idx);
63 tmpc = mopGetChar(pkt,&idx); /* Load Number */
67 tmpl = mopGetLong(pkt,&idx);/* Load Address */
86 mopGetChar(pkt,&idx));
94 idx = idx + moplen - 10;
98 tmpl = mopGetLong(pkt,&idx); /* Loa
[all...]
H A Drc.c41 int i,idx = 0; local
50 idx = 22;
54 idx = 16;
57 code = mopGetChar(pkt,&idx);
62 tmpc = mopGetChar(pkt,&idx);
65 tmps = mopGetShort(pkt,&idx);
72 tmps = mopGetShort(pkt,&idx);
76 tmpl = mopGetLong(pkt,&idx);
79 tmpc = mopGetChar(pkt,&idx); /* Processor */
83 control = mopGetChar(pkt,&idx); /* Contro
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/s390/
H A D20030123-1.c13 long idx; local
15 asm ("" : "=r" (idx) : : "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "12");
17 func (p + idx + 1);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A D20030123-1.c13 long idx; local
15 asm ("" : "=r" (idx) : : "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "12");
17 func (p + idx + 1);
H A D980526-1.c8 int idx, maxIdx = 1; local
10 for (idx = 1; idx < 22; idx++) {
13 maxIdx = idx;
/netbsd-6-1-5-RELEASE/usr.sbin/mopd/mopprobe/
H A Dmopprobe.c132 int idx, i, device, trans; local
137 idx = 0;
169 moplen = mopGetShort(pkt,&idx);
171 mopcode = mopGetChar(p,&idx);
179 tmpc = mopGetChar(pkt,&idx); /* Reserved */
180 tmps = mopGetShort(pkt,&idx); /* Receipt # */
184 itype = mopGetShort(pkt,&idx);
186 while (idx < (int)(moplen + 2)) {
187 ilen = mopGetChar(pkt,&idx);
190 tmpc = mopGetChar(pkt,&idx);
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A D980526-1.c8 int idx, maxIdx = 1; local
10 for (idx = 1; idx < 22; idx++) {
13 maxIdx = idx;
H A Dh8300-div-delay-slot.c11 unsigned tst_read( unsigned char idx )
13 switch( idx )
/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/
H A Dprint-sip.c43 u_int idx; local
51 for (idx = 0; idx < len; idx++) {
52 TCHECK2(*(pptr+idx), 2);
53 if (EXTRACT_16BITS(pptr+idx) != 0x0d0a) { /* linefeed ? */
54 safeputchar(*(pptr+idx));
57 idx+=1;
/netbsd-6-1-5-RELEASE/sys/arch/zaurus/stand/zboot/
H A Dbootinfo.c52 int idx; local
58 idx = bi_find(type);
59 if (idx < 0) {
60 idx = bootinfo->nentries++;
62 bootinfo->entry[idx] = (u_long)what;
69 int idx; local
73 idx = bi_find(type);
74 if (idx >= 0) {
75 for (i = idx + 1; i < bootinfo->nentries; i++) {
/netbsd-6-1-5-RELEASE/sys/compat/common/
H A Dgen_errno_tables.awk47 idx = 0;
55 if (idx != 0) {
59 idx = 1;
71 if (val_max[idx] < val) {
72 val_max[idx] = val;
74 if (mappings[idx, "val", val] == "") {
75 mappings[idx, "name", name] = val
76 mappings[idx, "val", val] = name
81 if (idx != 1) {
/netbsd-6-1-5-RELEASE/sys/arch/xen/include/xen-public/io/
H A Dconsole.h33 #define MASK_XENCONS_IDX(idx, ring) ((idx) & (sizeof(ring)-1))
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libmudflap/testsuite/libmudflap.c/
H A Dfail34-frag.c9 int idx = 7; /* should pass to the next object */ variable
16 j = (a_before_b ? a.a1[idx] : b.a1[idx]);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/bfd/doc/
H A Dchew.c179 addr (buffer, idx)
181 unsigned int idx;
183 return buffer->ptr + idx;
254 skip_white_and_stars (src, idx)
256 unsigned int idx;
259 while ((c = at (src, idx)),
264 && at (src, idx +1) != '/'
265 && at (src, idx -1) != '\n'))
266 idx++;
267 return idx;
275 unsigned int idx = 0; /* Pos in input buffer */ variable
428 unsigned int idx = 0; local
497 unsigned int idx; local
568 unsigned int idx = 0; local
600 unsigned int idx = 0; local
646 unsigned int idx = 0; local
732 unsigned int idx = 0; local
787 unsigned int idx = 0; local
899 int idx = 0; local
986 int idx = 0; local
1133 int idx; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/bfd/doc/
H A Dchew.c179 addr (buffer, idx)
181 unsigned int idx;
183 return buffer->ptr + idx;
254 skip_white_and_stars (src, idx)
256 unsigned int idx;
259 while ((c = at (src, idx)),
264 && at (src, idx +1) != '/'
265 && at (src, idx -1) != '\n'))
266 idx++;
267 return idx;
275 unsigned int idx = 0; /* Pos in input buffer */ variable
428 unsigned int idx = 0; local
497 unsigned int idx; local
568 unsigned int idx = 0; local
600 unsigned int idx = 0; local
646 unsigned int idx = 0; local
732 unsigned int idx = 0; local
787 unsigned int idx = 0; local
899 int idx = 0; local
986 int idx = 0; local
1133 int idx; local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/lib/
H A Dhash.c52 unsigned long int hval, size_t idx, void *data);
92 size_t idx = lookup (htab, key, keylen, hval); local
94 if (table[idx].used)
101 keylen, hval, idx, data);
109 unsigned long int hval, size_t idx, void *data)
113 table[idx].used = hval;
114 table[idx].key = key;
115 table[idx].keylen = keylen;
116 table[idx].data = data;
121 table[idx]
107 insert_entry_2(hash_table *htab, const void *key, size_t keylen, unsigned long int hval, size_t idx, void *data) argument
159 size_t idx = lookup (htab, key, keylen, compute_hashval (key, keylen)); local
203 size_t idx; local
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/mopd/mopd/
H A Dprocess.c61 mopProcessInfo(const u_char *pkt, int *idx, u_short moplen, struct dllist *dl_rpr, argument
80 itype = mopGetShort(pkt,idx);
82 while (*idx < (int)(moplen)) {
83 ilen = mopGetChar(pkt,idx);
86 tmpc = mopGetChar(pkt,idx);
87 *idx = *idx + tmpc;
90 uc1 = mopGetChar(pkt,idx);
91 uc2 = mopGetChar(pkt,idx);
92 uc3 = mopGetChar(pkt,idx);
172 int idx; local
214 int idx; local
318 int idx, pindex; local
430 mopProcessDL(FILE *fd, struct if_info *ii, const u_char *pkt, int *idx, const u_char *dst, const u_char *src, int trans, u_short len) argument
568 mopProcessRC(FILE *fd, struct if_info *ii, const u_char *pkt, int *idx, const u_char *dst, const u_char *src, int trans, u_short len) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/opcodes/
H A Ddlx-dis.c148 int idx; local
150 for (idx = 0; idx < r_opc_num; idx++)
152 if (r_opc[idx] != opc)
158 if (idx == r_opc_num)
161 for (idx = 0 ; idx < dlx_r_opcode_num; idx++)
162 if (dlx_r_opcode[idx]
205 int idx; local
249 int idx; local
305 int idx; local
339 int idx; local
379 int idx; local
416 int idx; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/opcodes/
H A Ddlx-dis.c148 int idx; local
150 for (idx = 0; idx < r_opc_num; idx++)
152 if (r_opc[idx] != opc)
158 if (idx == r_opc_num)
161 for (idx = 0 ; idx < dlx_r_opcode_num; idx++)
162 if (dlx_r_opcode[idx]
205 int idx; local
249 int idx; local
305 int idx; local
339 int idx; local
379 int idx; local
416 int idx; local
[all...]

Completed in 244 milliseconds

1234567891011>>