/freebsd/contrib/bc/src/ |
H A D | parse.c | 48 bc_parse_updateFunc(BcParse* p, size_t fidx) in bc_parse_updateFunc() argument 50 p->fidx = fidx; in bc_parse_updateFunc() 51 p->func = bc_vec_item(&p->prog->fns, fidx); in bc_parse_updateFunc() 185 p->func = bc_vec_item(&p->prog->fns, p->fidx); in bc_parse_text() 197 if (p->fidx != BC_PROG_MAIN) in bc_parse_reset()
|
H A D | program.c | 2498 size_t fidx; in bc_program_execStr() local 2565 fidx = bc_program_insertFunc(p, str); in bc_program_execStr() 2567 f = bc_vec_item(&p->fns, fidx); in bc_program_execStr() 2576 bc_parse_init(&vm->read_prs, p, fidx); in bc_program_execStr() 2584 else bc_parse_updateFunc(&vm->read_prs, fidx); in bc_program_execStr() 2610 ip.func = fidx; in bc_program_execStr() 2644 f = bc_vec_item(&p->fns, fidx); in bc_program_execStr()
|
H A D | bc_parse.c | 174 assert(func == bc_vec_item(&p->prog->fns, p->fidx)); in bc_parse_setLabel() 229 assert(p->func == bc_vec_item(&p->prog->fns, p->fidx)); in bc_parse_createExitLabel() 384 p->func = bc_vec_item(&p->prog->fns, p->fidx); in bc_parse_call()
|
/freebsd/contrib/bc/include/ |
H A D | parse.h | 198 size_t fidx; member 250 * @param fidx The index of the new function. 253 bc_parse_updateFunc(BcParse* p, size_t fidx);
|
/freebsd/contrib/ntp/ntpd/ |
H A D | refclock_nmea.c | 1380 int fidx; /* field to nuke, or -1 for checksum */ in field_wipe() local 1387 fidx = va_arg(va, int); in field_wipe() 1388 if (fidx >= 0 && fidx <= NMEA_PROTO_FIELDS) { in field_wipe() 1389 cp = field_parse(data, fidx); in field_wipe() 1398 } while (fcnt-- && fidx >= 0); in field_wipe()
|
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lapi.c | 1244 static UpVal **getupvalref (lua_State *L, int fidx, int n, LClosure **pf) { in getupvalref() argument 1246 StkId fi = index2addr(L, fidx); in getupvalref() 1255 LUA_API void *lua_upvalueid (lua_State *L, int fidx, int n) { in lua_upvalueid() argument 1256 StkId fi = index2addr(L, fidx); in lua_upvalueid() 1259 return *getupvalref(L, fidx, n, NULL); in lua_upvalueid()
|
/freebsd/sys/vm/ |
H A D | vm_object.c | 2823 vm_pindex_t fidx; in DB_SHOW_COMMAND_FLAGS() local 2834 fidx = 0; in DB_SHOW_COMMAND_FLAGS() 2841 (long)fidx, rcount, (long)pa); in DB_SHOW_COMMAND_FLAGS() 2854 (long)fidx, rcount, (long)pa); in DB_SHOW_COMMAND_FLAGS() 2858 fidx = m->pindex; in DB_SHOW_COMMAND_FLAGS() 2864 (long)fidx, rcount, (long)pa); in DB_SHOW_COMMAND_FLAGS()
|
/freebsd/sys/fs/ext2fs/ |
H A D | ext2_extents.c | 931 struct ext4_extent_index *fidx; in ext4_ext_split() local 1032 fidx = EXT_FIRST_INDEX(neh); in ext4_ext_split() 1033 fidx->ei_blk = htole32(border); in ext4_ext_split() 1034 ext4_index_store_pblock(fidx, oldblk); in ext4_ext_split() 1043 memmove(++fidx, path[i].ep_index - m, in ext4_ext_split()
|
/freebsd/contrib/lua/src/ |
H A D | lapi.c | 1417 static UpVal **getupvalref (lua_State *L, int fidx, int n, LClosure **pf) { in getupvalref() argument 1420 TValue *fi = index2value(L, fidx); in getupvalref() 1431 LUA_API void *lua_upvalueid (lua_State *L, int fidx, int n) { in lua_upvalueid() argument 1432 TValue *fi = index2value(L, fidx); in lua_upvalueid() 1435 return *getupvalref(L, fidx, n, NULL); in lua_upvalueid()
|
H A D | lua.h | 464 LUA_API void *(lua_upvalueid) (lua_State *L, int fidx, int n);
|
/freebsd/sys/sys/ |
H A D | arb.h | 208 #define ARB_GETFREEAT(head, field, fidx) \ argument 211 int _idx = fidx; \ 223 if (fidx == 0) \
|
/freebsd/sys/contrib/openzfs/include/sys/lua/ |
H A D | lua.h | 388 LUA_API void *(lua_upvalueid) (lua_State *L, int fidx, int n);
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_read_support_format_7zip.c | 655 uint64_t fidx = 0; in archive_read_format_7zip_read_header() local 709 for (fidx=0; folder && fidx<folder->numCoders; fidx++) { in archive_read_format_7zip_read_header() 710 switch(folder->coders[fidx].codec) { in archive_read_format_7zip_read_header()
|
/freebsd/contrib/sendmail/src/ |
H A D | queue.c | 6958 short fidx; local 6982 fidx = Queue[e->e_qgrp]->qg_qpaths[e->e_qdir].qp_fsysidx; 6983 if (fidx < 0) 6991 s = e->e_msgsize / FILE_SYS_BLKSIZE(fidx); 6997 FILE_SYS_AVAIL(fidx) += s; 6999 FILE_SYS_AVAIL(fidx) -= s;
|
/freebsd/sys/dev/cxgb/ |
H A D | cxgb_sge.c | 1409 int i, fidx; in t3_encap() local 1417 for (fidx = 1, i = 0; i < nsegs; i++, fidx += 2) { in t3_encap()
|