Home
last modified time | relevance | path

Searched refs:f (Results 1 – 25 of 1075) sorted by relevance

12345678910>>...43

/f-stack/freebsd/contrib/dev/acpica/include/
H A Dactbinfo.h155 #define ACPI_FACS_OFFSET(f) (UINT16) ACPI_OFFSET (ACPI_TABLE_FACS,f) argument
158 #define ACPI_RSDP_OFFSET(f) (UINT16) ACPI_OFFSET (ACPI_TABLE_RSDP,f) argument
159 #define ACPI_BERT_OFFSET(f) (UINT16) ACPI_OFFSET (ACPI_TABLE_BERT,f) argument
160 #define ACPI_BGRT_OFFSET(f) (UINT16) ACPI_OFFSET (ACPI_TABLE_BGRT,f) argument
161 #define ACPI_BOOT_OFFSET(f) (UINT16) ACPI_OFFSET (ACPI_TABLE_BOOT,f) argument
209 #define ACPI_ASF0_OFFSET(f) (UINT16) ACPI_OFFSET (ACPI_ASF_INFO,f) argument
214 #define ACPI_ASF3_OFFSET(f) (UINT16) ACPI_OFFSET (ACPI_ASF_RMCP,f) argument
240 #define ACPI_GTDT_EL2_OFFSET(f) (UINT16) ACPI_OFFSET (ACPI_GTDT_EL2,f) argument
245 #define ACPI_HEST7_OFFSET(f) (UINT16) ACPI_OFFSET (ACPI_HEST_AER,f) argument
324 #define ACPI_PPTT2_OFFSET(f) (UINT16) ACPI_OFFSET (ACPI_PPTT_ID,f) argument
[all …]
/f-stack/dpdk/lib/librte_graph/
H A Dgraph_debug.c11 graph_dump(FILE *f, struct graph *g) in graph_dump() argument
16 fprintf(f, "graph <%s>\n", g->name); in graph_dump()
17 fprintf(f, " id=%" PRIu32 "\n", g->id); in graph_dump()
20 fprintf(f, " addr=%p\n", g); in graph_dump()
21 fprintf(f, " graph=%p\n", g->graph); in graph_dump()
22 fprintf(f, " mem_sz=%zu\n", g->mem_sz); in graph_dump()
31 node_dump(FILE *f, struct node *n) in node_dump() argument
35 fprintf(f, "node <%s>\n", n->name); in node_dump()
36 fprintf(f, " id=%" PRIu32 "\n", n->id); in node_dump()
38 fprintf(f, " addr=%p\n", n); in node_dump()
[all …]
/f-stack/dpdk/drivers/net/cxgbe/
H A Dcxgbe_filter.c301 cxgbe_clip_release(f->dev, f->clipt); in clear_filter()
316 memset(f, 0, sizeof(*f)); in clear_filter()
616 f = t4_os_alloc(sizeof(*f)); in cxgbe_set_hash_filter()
647 f->fs.eport, f->fs.dmac); in cxgbe_set_hash_filter()
658 f->smt = cxgbe_smt_alloc_switching(f->dev, f->fs.smac); in cxgbe_set_hash_filter()
671 f->clipt = cxgbe_clip_alloc(f->dev, (u32 *)&f->fs.val.lip); in cxgbe_set_hash_filter()
1110 f->l2t = cxgbe_l2t_alloc_switching(f->dev, f->fs.vlan, in cxgbe_set_filter()
1111 f->fs.eport, f->fs.dmac); in cxgbe_set_filter()
1122 f->smt = cxgbe_smt_alloc_switching(f->dev, f->fs.smac); in cxgbe_set_filter()
1191 cxgbe_insert_tid(t, f, f->tid, 0); in cxgbe_hash_filter_rpl()
[all …]
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dprint.c172 f->linedefined,f->lastlinedefined, in PrintHeader()
173 S(f->sizecode),f->sizecode*Sizeof(Instruction),VOID(f)); in PrintHeader()
175 f->numparams,f->is_vararg?"+":"",SS(f->numparams), in PrintHeader()
176 S(f->maxstacksize),S(f->nups)); in PrintHeader()
178 S(f->sizelocvars),S(f->sizek),S(f->sizep)); in PrintHeader()
183 int i,n=f->sizek; in PrintConstants()
200 i,getstr(f->locvars[i].varname),f->locvars[i].startpc+1,f->locvars[i].endpc+1); in PrintLocals()
217 int i,n=f->sizep; in PrintFunction()
218 PrintHeader(f); in PrintFunction()
219 PrintCode(f); in PrintFunction()
[all …]
H A Dlundump.c94 f->sizecode=n; in LoadCode()
105 f->sizek=n; in LoadConstants()
132 f->sizep=n; in LoadConstants()
134 for (i=0; i<n; i++) f->p[i]=LoadFunction(S,f->source); in LoadConstants()
142 f->sizelineinfo=n; in LoadDebug()
146 f->sizelocvars=n; in LoadDebug()
163 Proto* f; in LoadFunction() local
167 f->source=LoadString(S); if (f->source==NULL) f->source=p; in LoadFunction()
174 LoadCode(S,f); in LoadFunction()
176 LoadDebug(S,f); in LoadFunction()
[all …]
H A Dlfunc.c118 f->k = NULL; in luaF_newproto()
119 f->sizek = 0; in luaF_newproto()
120 f->p = NULL; in luaF_newproto()
121 f->sizep = 0; in luaF_newproto()
126 f->nups = 0; in luaF_newproto()
137 return f; in luaF_newproto()
142 luaM_freearray(L, f->code, f->sizecode, Instruction); in luaF_freeproto()
143 luaM_freearray(L, f->p, f->sizep, Proto *); in luaF_freeproto()
144 luaM_freearray(L, f->k, f->sizek, TValue); in luaF_freeproto()
145 luaM_freearray(L, f->lineinfo, f->sizelineinfo, int); in luaF_freeproto()
[all …]
H A Dldump.c76 #define DumpCode(f,D) DumpVector(f->code,f->sizecode,sizeof(Instruction),D) argument
82 int i,n=f->sizek; in DumpConstants()
86 const TValue* o=&f->k[i]; in DumpConstants()
106 n=f->sizep; in DumpConstants()
108 for (i=0; i<n; i++) DumpFunction(f->p[i],f->source,D); in DumpConstants()
131 DumpString((f->source==p || D->strip) ? NULL : f->source,D); in DumpFunction()
134 DumpChar(f->nups,D); in DumpFunction()
138 DumpCode(f,D); in DumpFunction()
139 DumpConstants(f,D); in DumpFunction()
140 DumpDebug(f,D); in DumpFunction()
[all …]
H A Dliolib.c74 if (*f == NULL) in tofile()
76 return *f; in tofile()
145 if (f != NULL) in io_gc()
153 if (f == NULL) in io_tostring()
191 FILE *f; in getiofile() local
194 if (f == NULL) in getiofile()
196 return f; in getiofile()
288 ungetc(c, f); in test_eof()
338 clearerr(f); in g_read()
371 if (ferror(f)) in g_read()
[all …]
/f-stack/dpdk/lib/librte_table/
H A Drte_table_hash_key16.c262 signature = f->f_hash(key, f->key_mask, f->key_size, f->seed); in rte_table_hash_entry_add_key16_lru()
265 &f->memory[bucket_index * f->bucket_size]; in rte_table_hash_entry_add_key16_lru()
328 signature = f->f_hash(key, f->key_mask, f->key_size, f->seed); in rte_table_hash_entry_delete_key16_lru()
331 &f->memory[bucket_index * f->bucket_size]; in rte_table_hash_entry_delete_key16_lru()
472 signature = f->f_hash(key, f->key_mask, f->key_size, f->seed); in rte_table_hash_entry_add_key16_ext()
519 bucket_index = f->stack[--f->stack_pos]; in rte_table_hash_entry_add_key16_ext()
549 signature = f->f_hash(key, f->key_mask, f->key_size, f->seed); in rte_table_hash_entry_delete_key16_ext()
584 (uint8_t *)f->memory)/f->bucket_size) - f->n_buckets; in rte_table_hash_entry_delete_key16_ext()
656 signature = f->f_hash(key, f->key_mask, KEY_SIZE, f->seed); \
791 signature10 = f->f_hash(key10, f->key_mask, KEY_SIZE, f->seed);\
[all …]
H A Drte_table_hash_key8.c252 signature = f->f_hash(key, &f->key_mask, f->key_size, f->seed); in rte_table_hash_entry_add_key8_lru()
255 &f->memory[bucket_index * f->bucket_size]; in rte_table_hash_entry_add_key8_lru()
315 signature = f->f_hash(key, &f->key_mask, f->key_size, f->seed); in rte_table_hash_entry_delete_key8_lru()
318 &f->memory[bucket_index * f->bucket_size]; in rte_table_hash_entry_delete_key8_lru()
456 signature = f->f_hash(key, &f->key_mask, f->key_size, f->seed); in rte_table_hash_entry_add_key8_ext()
459 &f->memory[bucket_index * f->bucket_size]; in rte_table_hash_entry_add_key8_ext()
507 bucket_index = f->stack[--f->stack_pos]; in rte_table_hash_entry_add_key8_ext()
537 signature = f->f_hash(key, &f->key_mask, f->key_size, f->seed); in rte_table_hash_entry_delete_key8_ext()
540 &f->memory[bucket_index * f->bucket_size]; in rte_table_hash_entry_delete_key8_ext()
571 (uint8_t *)f->memory)/f->bucket_size) - f->n_buckets; in rte_table_hash_entry_delete_key8_ext()
[all …]
H A Drte_table_hash_key32.c270 signature = f->f_hash(key, f->key_mask, f->key_size, f->seed); in rte_table_hash_entry_add_key32_lru()
273 &f->memory[bucket_index * f->bucket_size]; in rte_table_hash_entry_add_key32_lru()
336 signature = f->f_hash(key, f->key_mask, f->key_size, f->seed); in rte_table_hash_entry_delete_key32_lru()
339 &f->memory[bucket_index * f->bucket_size]; in rte_table_hash_entry_delete_key32_lru()
486 signature = f->f_hash(key, f->key_mask, f->key_size, f->seed); in rte_table_hash_entry_add_key32_ext()
535 bucket_index = f->stack[--f->stack_pos]; in rte_table_hash_entry_add_key32_ext()
566 signature = f->f_hash(key, f->key_mask, f->key_size, f->seed); in rte_table_hash_entry_delete_key32_ext()
601 (uint8_t *)f->memory)/f->bucket_size) - f->n_buckets; in rte_table_hash_entry_delete_key32_ext()
684 signature = f->f_hash(key, f->key_mask, KEY_SIZE, f->seed); \
824 signature10 = f->f_hash(key10, f->key_mask, KEY_SIZE, f->seed); \
[all …]
/f-stack/dpdk/drivers/net/ionic/
H A Dionic_rx_filter.c16 LIST_REMOVE(f, by_id); in ionic_rx_filter_free()
17 LIST_REMOVE(f, by_hash); in ionic_rx_filter_free()
18 rte_free(f); in ionic_rx_filter_free()
53 struct ionic_rx_filter *f; in ionic_rx_filters_deinit() local
71 f = rte_zmalloc("ionic", sizeof(*f), 0); in ionic_rx_filter_save()
73 if (!f) in ionic_rx_filter_save()
76 f->flow_id = flow_id; in ionic_rx_filter_save()
79 memcpy(&f->cmd, &ctx->cmd, sizeof(f->cmd)); in ionic_rx_filter_save()
81 switch (f->cmd.match) { in ionic_rx_filter_save()
119 return f; in ionic_rx_filter_by_vlan()
[all …]
/f-stack/freebsd/contrib/libsodium/packaging/dotnet-core/
H A Dprepare.py68 f.write('\n')
72 f.write('\n')
92 f.write('\n')
96 f.write('\n')
128 f.write('\n')
132 f.write('\n')
152 f.write('\n')
156 f.write('\n')
203 f.write('\n')
208 f.write('\n')
[all …]
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlfunc.c111 f->k = NULL; in luaF_newproto()
112 f->sizek = 0; in luaF_newproto()
113 f->p = NULL; in luaF_newproto()
114 f->sizep = 0; in luaF_newproto()
130 return f; in luaF_newproto()
135 luaM_freearray(L, f->code, f->sizecode); in luaF_freeproto()
136 luaM_freearray(L, f->p, f->sizep); in luaF_freeproto()
137 luaM_freearray(L, f->k, f->sizek); in luaF_freeproto()
138 luaM_freearray(L, f->lineinfo, f->sizelineinfo); in luaF_freeproto()
139 luaM_freearray(L, f->locvars, f->sizelocvars); in luaF_freeproto()
[all …]
/f-stack/freebsd/arm/include/
H A Dbus.h682 bs_map_proto(f); \
689 bs_r_1_proto(f); \
690 bs_r_2_proto(f); \
691 bs_r_4_proto(f); \
692 bs_r_8_proto(f); \
696 bs_w_1_proto(f); \
697 bs_w_2_proto(f); \
698 bs_w_4_proto(f); \
699 bs_w_8_proto(f); \
727 bs_c_1_proto(f); \
[all …]
/f-stack/freebsd/mips/include/
H A Dbus.h643 bs_map_proto(f); \
649 bs_r_1_proto(f); \
650 bs_r_2_proto(f); \
651 bs_r_4_proto(f); \
652 bs_r_8_proto(f); \
656 bs_w_1_proto(f); \
657 bs_w_2_proto(f); \
658 bs_w_4_proto(f); \
659 bs_w_8_proto(f); \
687 bs_c_1_proto(f); \
[all …]
/f-stack/tools/ngctl/
H A Ddot.c70 FILE *f = stdout; in DotCmd() local
95 if (f == NULL) { in DotCmd()
102 if (f != stdout) in DotCmd()
103 (void)fclose(f); in DotCmd()
134 fprintf(f, "\t};\n"); in DotCmd()
142 fprintf(f, "\t};\n"); in DotCmd()
212 fprintf(f, "}\n"); in DotCmd()
215 if (f != stdout) in DotCmd()
216 (void)fclose(f); in DotCmd()
219 if (f != stdout) in DotCmd()
[all …]
/f-stack/freebsd/tools/
H A Dpccarddevs2h.awk71 f++
75 line = line $f
76 if (f < NF)
78 f++
81 line = line $f
82 if (f < NF)
84 f++
132 f = 5;
142 z = z $f " "
143 f++
[all …]
/f-stack/freebsd/contrib/libsodium/src/libsodium/include/sodium/private/
H A Ded25519_ref10_fe_51.h252 f0 = f[0]; in fe25519_mul()
253 f1 = f[1]; in fe25519_mul()
254 f2 = f[2]; in fe25519_mul()
255 f3 = f[3]; in fe25519_mul()
256 f4 = f[4]; in fe25519_mul()
342 f0 = f[0]; in fe25519_sq()
343 f1 = f[1]; in fe25519_sq()
344 f2 = f[2]; in fe25519_sq()
345 f3 = f[3]; in fe25519_sq()
346 f4 = f[4]; in fe25519_sq()
[all …]
H A Ded25519_ref10_fe_25_5.h185 f[0] = f0 ^ x0; in fe25519_cmov()
186 f[1] = f1 ^ x1; in fe25519_cmov()
187 f[2] = f2 ^ x2; in fe25519_cmov()
188 f[3] = f3 ^ x3; in fe25519_cmov()
189 f[4] = f4 ^ x4; in fe25519_cmov()
190 f[5] = f5 ^ x5; in fe25519_cmov()
191 f[6] = f6 ^ x6; in fe25519_cmov()
192 f[7] = f7 ^ x7; in fe25519_cmov()
193 f[8] = f8 ^ x8; in fe25519_cmov()
194 f[9] = f9 ^ x9; in fe25519_cmov()
[all …]
/f-stack/freebsd/net80211/
H A Dieee80211_action.c95 ba_send_action[act] = f; in ieee80211_send_action_register()
100 ht_send_action[act] = f; in ieee80211_send_action_register()
105 meshpl_send_action[act] = f; in ieee80211_send_action_register()
120 vht_send_action[act] = f; in ieee80211_send_action_register()
140 f = ba_send_action[act]; in ieee80211_send_action()
144 f = ht_send_action[act]; in ieee80211_send_action()
160 f = vht_send_action[act]; in ieee80211_send_action()
163 return f(ni, cat, act, sa); in ieee80211_send_action()
206 ba_recv_action[act] = f; in ieee80211_recv_action_register()
211 ht_recv_action[act] = f; in ieee80211_recv_action_register()
[all …]
/f-stack/dpdk/drivers/event/dlb/
H A Ddlb_xstats.c947 fprintf(f, "STOPPED\n"); in dlb_eventdev_dump()
949 fprintf(f, "STOPPING\n"); in dlb_eventdev_dump()
951 fprintf(f, "STARTING\n"); in dlb_eventdev_dump()
953 fprintf(f, "STARTED\n"); in dlb_eventdev_dump()
955 fprintf(f, "UNEXPECTED\n"); in dlb_eventdev_dump()
957 fprintf(f, in dlb_eventdev_dump()
1031 fprintf(f, "Port_%d\n", i); in dlb_eventdev_dump()
1032 fprintf(f, "=======\n"); in dlb_eventdev_dump()
1060 fprintf(f, "\n"); in dlb_eventdev_dump()
1185 fprintf(f, "========\n"); in dlb_eventdev_dump()
[all …]
/f-stack/tools/netstat/
H A Dipsec.c164 #define p(f, m) if (ipsecstat->f || sflag <= 1) \ in print_ipsecstats() argument
166 #define p2(f, m) if (ipsecstat->f || sflag <= 1) \ in print_ipsecstats() argument
268 #define p(f, n, m) if (ahstat->f || sflag <= 1) \ in print_ahstats() argument
270 (uintmax_t)ahstat->f, plural(ahstat->f)) in print_ahstats()
272 ipsec_hist_new((f), sizeof(f)/sizeof(f[0]), (n), (t), (c)) in print_ahstats()
327 #define p(f, n, m) if (espstat->f || sflag <= 1) \ in print_espstats() argument
329 (uintmax_t)espstat->f, plural(espstat->f)) in print_espstats()
331 ipsec_hist_new((f), sizeof(f)/sizeof(f[0]), (n), (t), (c)); in print_espstats()
388 #define p(f, n, m) if (ipcompstat->f || sflag <= 1) \ in print_ipcompstats() argument
390 (uintmax_t)ipcompstat->f, plural(ipcompstat->f)) in print_ipcompstats()
[all …]
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_fastcgi_module.c2171 f->padding -= f->last - f->pos; in ngx_http_fastcgi_input_filter()
2176 if (f->pos + f->padding < f->last) { in ngx_http_fastcgi_input_filter()
2189 f->padding -= f->last - f->pos; in ngx_http_fastcgi_input_filter()
2243 f->length -= f->last - f->pos; in ngx_http_fastcgi_input_filter()
2287 if (f->pos + f->length <= f->last) { in ngx_http_fastcgi_input_filter()
2295 f->length -= f->last - f->pos; in ngx_http_fastcgi_input_filter()
2405 f->padding -= f->last - f->pos; in ngx_http_fastcgi_non_buffered_filter()
2423 f->padding -= f->last - f->pos; in ngx_http_fastcgi_non_buffered_filter()
2477 f->length -= f->last - f->pos; in ngx_http_fastcgi_non_buffered_filter()
2508 if (f->pos + f->length <= f->last) { in ngx_http_fastcgi_non_buffered_filter()
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_coroutine.lua26 local f
58 f = coroutine.create(foo)
59 assert(type(f) == "thread" and coroutine.status(f) == "suspended")
95 f = coroutine.wrap(pf)
98 assert(f(1, 1) == s)
153 local function f (c) function
214 local f = x()
215 assert(f() == 21 and x()() == 32 and x() == f)
219 assert(f() == 43 and f() == 53)
268 assert(_G.f() == 11)
[all …]

12345678910>>...43