Searched refs:idx (Results 226 - 250 of 885) sorted by relevance

1234567891011>>

/freebsd-9.3-release/usr.sbin/ppp/
H A Droute.c213 Index2Nam(int idx) argument
224 if (idx > route_nifs || (idx > 0 && ifs[idx-1] == NULL)) {
248 return NumStr(idx, NULL, 0);
251 return NumStr(idx, NULL, 0);
254 return NumStr(idx, NULL, 0);
282 return NumStr(idx, NULL, 0);
316 if (idx < 1 || idx > route_nif
546 int idx; local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_iter.c80 uu_avl_index_t idx; local
84 if (uu_avl_find(zlp->zl_avl, node, NULL, &idx) == NULL) {
91 uu_avl_insert(zlp->zl_avl, node, idx);
/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h196 LiveIntervalUnion& operator[](unsigned idx) { argument
197 assert(idx < Size && "idx out of bounds");
198 return LIUs[idx];
/freebsd-9.3-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.h149 SDValue getExtSymb(SelectionDAG &DAG, const char *name, int idx,
151 SDValue getParamSymbol(SelectionDAG &DAG, int idx, EVT) const;
152 SDValue getParamHelpSymbol(SelectionDAG &DAG, int idx);
/freebsd-9.3-release/usr.sbin/pw/
H A Dedgroup.c162 int idx; local
164 while ((idx = isingroup(name, mems)) != -1) {
165 for (i = idx; i < (memlen - 1); i++)
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Analysis/
H A DAnalysisContext.h40 namespace idx { class TranslationUnit; } namespace in namespace:clang
278 unsigned idx)
280 Block(blk), Index(idx) {}
298 const CFGBlock *blk, unsigned idx) {
301 ID.AddInteger(idx);
374 const CFGBlock *blk, unsigned idx);
276 StackFrameContext(AnalysisDeclContext *ctx, const LocationContext *parent, const Stmt *s, const CFGBlock *blk, unsigned idx) argument
296 Profile(llvm::FoldingSetNodeID &ID, AnalysisDeclContext *ctx, const LocationContext *parent, const Stmt *s, const CFGBlock *blk, unsigned idx) argument
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp190 unsigned idx = 0; local
192 e = RD->field_end(); i != e; ++i, ++idx) {
194 Layout.getFieldOffset(idx) / Context.getCharWidth();
254 unsigned idx = 0; local
256 e = RD->field_end(); i != e; ++i, ++idx) {
266 FieldNode, Layout.getFieldOffset(idx) / Context.getCharWidth()));
/freebsd-9.3-release/lib/libiconv_modules/mapper_std/
H A Dcitrus_mapper_std.c83 _index_t idx = 0, n; local
105 idx = idx * lz->width + n - lz->begin;
109 conv = _region_peek8(&rc->rc_table, idx);
112 conv = be16toh(_region_peek16(&rc->rc_table, idx*2));
115 conv = be32toh(_region_peek32(&rc->rc_table, idx*4));
/freebsd-9.3-release/lib/libkvm/
H A Dkvm_minidump_amd64.c106 uint64_t idx; local
110 for (idx = 0; idx < len / sizeof(*base); idx++) {
111 bits = base[idx];
115 pa = (idx * sizeof(*base) * NBBY + bit) * PAGE_SIZE;
H A Dkvm_minidump_i386.c108 uint64_t idx; local
112 for (idx = 0; idx < len / sizeof(*base); idx++) {
113 bits = base[idx];
117 pa = (idx * sizeof(*base) * NBBY + bit) * PAGE_SIZE;
/freebsd-9.3-release/usr.bin/at/
H A Dparsetime.c197 int idx; local
203 idx = 0;
235 sc_token[++idx] = *sct++;
236 sc_token[++idx] = 0;
241 sc_token[++idx] = *sct++;
242 sc_token[++idx] = 0;
/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Dwin32select.c224 struct idx_info *idx = idx_; local
234 if (do_fd_set(win32op, idx, fd, 1)<0)
238 if (do_fd_set(win32op, idx, fd, 0)<0)
249 struct idx_info *idx = idx_; local
254 do_fd_clear(base, win32op, idx, 1);
256 do_fd_clear(base, win32op, idx, 0);
/freebsd-9.3-release/contrib/ntp/parseutil/
H A Dtestdcf.c182 register int idx
188 first = rawdcfcode[idx].offset;
190 for (i = rawdcfcode[idx+1].offset - 1; i >= first; i--)
201 register int idx
207 last = partab[idx+1].offset;
209 for (i = partab[idx].offset; i < last; i++)
/freebsd-9.3-release/contrib/binutils/binutils/
H A Dcoffgrok.h110 int idx; member in struct:coff_type::__anon389::__anon391
121 int idx; member in struct:coff_type::__anon389::__anon393
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Utils/
H A DSSAUpdater.cpp221 unsigned idx; member in class:llvm::SSAUpdaterTraits::PHI_iterator
225 : PHI(P), idx(0) {}
227 : PHI(P), idx(PHI->getNumIncomingValues()) {}
229 PHI_iterator &operator++() { ++idx; return *this; }
230 bool operator==(const PHI_iterator& x) const { return idx == x.idx; }
232 Value *getIncomingValue() { return PHI->getIncomingValue(idx); }
233 BasicBlock *getIncomingBlock() { return PHI->getIncomingBlock(idx); }
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dprincipal.c289 quote_string(const char *s, char *out, size_t idx, size_t len, int display) argument
292 for(p = s; *p && idx < len; p++){
295 add_char(out, idx, len, replace_chars[q - quotable_chars]);
297 add_char(out, idx, len, '\\');
298 add_char(out, idx, len, replace_chars[q - quotable_chars]);
300 add_char(out, idx, len, *p);
302 if(idx < len)
303 out[idx] = '\0';
304 return idx;
315 size_t idx local
[all...]
/freebsd-9.3-release/sys/dev/ath/ath_hal/ar5211/
H A Dar5211.h33 #define CALC_MMR(dcu, idx) \
34 ( (4 * dcu) + (idx < 32 ? 0 : (idx < 64 ? 1 : (idx < 96 ? 2 : 3))) )
37 #define CALC_TXBLK_ADDR(dcu, idx) (TXBLK_FROM_MMR(CALC_MMR(dcu, idx)))
38 #define CALC_TXBLK_VALUE(idx) (1 << (idx & 0x1f))
/freebsd-9.3-release/sys/i386/linux/
H A Dlinux_machdep.c308 int idx, error; local
315 idx = info.entry_number;
318 * looks like we're getting the idx we returned
321 if (idx != 6 && idx != 3) {
322 printf(LMSG("resetting idx!"));
323 idx = 3;
327 if (idx == 6) {
836 int idx; local
858 idx
937 int idx; local
[all...]
/freebsd-9.3-release/tools/regression/usr.bin/env/
H A Dregress-sb.rb94 idx = -1
100 idx += 1
101 if idx > expect_arr.length - 1
105 printf "-- [%d] > %s\n", idx, rline if $verbose >= 1
107 elsif rline != expect_arr[idx]
111 printf "-- [%d] < %s\n", idx, expect_arr[idx] if $verbose >= 2
115 printf "-- %s[%d] = %s\n", name, idx, rline if $verbose >= 5
/freebsd-9.3-release/usr.bin/xlint/lint2/
H A Dlint2.h186 #define TP(idx) (tlst[idx])
/freebsd-9.3-release/contrib/ntp/sntp/libopts/
H A Denum.c193 uintptr_t idx; local
217 for (idx = 0; idx < name_ct; idx++) {
218 if (strncmp(paz_names[idx], name, len) == 0) {
219 if (paz_names[idx][len] == NUL)
220 return idx; /* full match */
223 res = idx; /* save partial match */
/freebsd-9.3-release/crypto/openssl/crypto/ocsp/
H A Docsp_ext.c113 void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit, int *idx) argument
115 return X509V3_get_d2i(x->tbsRequest->requestExtensions, nid, crit, idx);
164 void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx) argument
166 return X509V3_get_d2i(x->singleRequestExtensions, nid, crit, idx);
219 int *idx)
222 idx);
273 int *idx)
275 return X509V3_get_d2i(x->singleExtensions, nid, crit, idx);
218 OCSP_BASICRESP_get1_ext_d2i(OCSP_BASICRESP *x, int nid, int *crit, int *idx) argument
272 OCSP_SINGLERESP_get1_ext_d2i(OCSP_SINGLERESP *x, int nid, int *crit, int *idx) argument
/freebsd-9.3-release/gnu/lib/libregex/
H A Dregexec.c56 (reg_errcode_t *err, const re_match_context_t *mctx, int idx)
66 const re_dfastate_t *state, int idx)
182 const re_string_t *input, int idx) internal_function;
193 const re_token_t *node, int idx) internal_function;
1004 acquire_init_state_context (err, mctx, idx)
1007 int idx;
1013 context = re_string_context_at (&mctx->input, idx - 1, mctx->eflags);
1200 check_halt_state_context (mctx, state, idx)
1203 int idx;
1210 context = re_string_context_at (&mctx->input, idx, mct
1381 int idx, cur_node; local
1846 int idx = re_node_set_contains (dest_nodes, cur_node) - 1; local
3098 int idx, outside_node; local
3819 int32_t idx; local
3955 int32_t idx; local
[all...]
/freebsd-9.3-release/bin/sh/
H A Dexec.c115 shellexec(char **argv, char **envp, const char *path, int idx) argument
126 if (--idx < 0 && pathopt == NULL) {
276 int idx; local
281 idx = cmdp->param.index;
286 } while (--idx >= 0);
322 int idx; local
368 idx = -1;
372 idx++;
381 if (fullname[0] == '/' && idx <= prev) {
382 if (idx < pre
[all...]
/freebsd-9.3-release/contrib/tcsh/
H A Ded.inputl.c98 int idx; local
391 for (idx = (int) (Cursor - InputBuf);
392 idx <= newlen; idx++)
393 InputBuf[idx - newlen + curlen] =
394 InputBuf[idx];
484 for (idx = (int) (Cursor - InputBuf);
485 idx <= newlen; idx++)
486 InputBuf[idx
[all...]

Completed in 271 milliseconds

1234567891011>>