Home
last modified time | relevance | path

Searched refs:g (Results 1 – 25 of 649) sorted by relevance

12345678910>>...26

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlgc.c303 markobject(g, g->mt[i]); in markmt()
337 g->gray = g->grayagain = NULL; in restartcollection()
338 g->weak = g->allweak = g->ephemeron = NULL; in restartcollection()
339 markobject(g, g->mainthread); in restartcollection()
340 markvalue(g, &g->l_registry); in restartcollection()
566 while (g->gray) propagatemark(g); in propagateall()
585 g->weak = g->grayagain = g->ephemeron = NULL; in retraversegrays()
1005 markvalue(g, &g->l_registry); in atomic()
1017 clearvalues(g, g->weak, NULL); in atomic()
1133 setpause(g, gettotalbytes(g)); in generationalcollection()
[all …]
H A Dlstate.c69 global_State g; member
104 g->totalbytes -= (debt - g->GCdebt); in luaE_setdebt()
202 G(L) = g; in preinit_state()
271 g = &l->g; in lua_newstate()
279 g->ud = ud; in lua_newstate()
282 g->uvhead.u.l.prev = &g->uvhead; in lua_newstate()
283 g->uvhead.u.l.next = &g->uvhead; in lua_newstate()
297 g->sweepgc = g->sweepfin = NULL; in lua_newstate()
298 g->gray = g->grayagain = NULL; in lua_newstate()
299 g->weak = g->ephemeron = g->allweak = NULL; in lua_newstate()
[all …]
H A Dlgc.h48 #define issweepphase(g) \ argument
49 (GCSsweepstring <= (g)->gcstate && (g)->gcstate <= GCSsweep)
51 #define isgenerational(g) ((g)->gckind == KGC_GEN) argument
62 #define keepinvariant(g) (isgenerational(g) || g->gcstate <= GCSatomic) argument
69 #define keepinvariantout(g) \ argument
70 check_exp(g->gcstate == GCSpropagate || !isgenerational(g), \
71 g->gcstate <= GCSatomic)
111 #define otherwhite(g) (g->currentwhite ^ WHITEBITS) argument
113 #define isdead(g,v) isdeadm(otherwhite(g), (v)->gch.marked) argument
120 #define luaC_white(g) cast(lu_byte, (g)->currentwhite & WHITEBITS) argument
[all …]
H A Dlmem.c76 global_State *g = G(L); in luaM_realloc_() local
80 if (nsize > realosize && g->gcrunning) in luaM_realloc_()
83 newblock = (*g->frealloc)(g->ud, block, osize, nsize); in luaM_realloc_()
87 if (g->gcrunning) { in luaM_realloc_()
89 newblock = (*g->frealloc)(g->ud, block, osize, nsize); /* try again */ in luaM_realloc_()
95 g->GCdebt = (g->GCdebt + nsize) - realosize; in luaM_realloc_()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlgc.c59 #define setthreshold(g) (g->GCthreshold = (g->estimate/100) * g->gcpause) argument
325 while (g->gray) m += propagatemark(g); in propagateall()
496 if (g->mt[i]) markobject(g, g->mt[i]); in markmt()
506 markobject(g, g->mainthread); in markroot()
508 markvalue(g, gt(g->mainthread)); in markroot()
533 g->gray = g->weak; in atomic()
540 g->gray = g->grayagain; in atomic()
550 g->sweepgc = &g->rootgc; in atomic()
615 g->gcdept += g->totalbytes - g->GCthreshold; in luaC_step()
626 g->GCthreshold = g->totalbytes; in luaC_step()
[all …]
H A Dlstate.c37 global_State g; member
80 g->GCthreshold = 4*g->totalbytes; in f_luaopen()
85 G(L) = g; in preinit_state()
115 (*g->frealloc)(g->ud, fromstate(L), state_size(LG), 0); in close_state()
150 g = &((LG *)L)->g; in lua_newstate()
158 g->ud = ud; in lua_newstate()
160 g->uvhead.u.l.prev = &g->uvhead; in lua_newstate()
161 g->uvhead.u.l.next = &g->uvhead; in lua_newstate()
172 g->sweepgc = &g->rootgc; in lua_newstate()
173 g->gray = NULL; in lua_newstate()
[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()
26 STAILQ_FOREACH(graph_node, &g->node_list, next) in graph_dump()
54 fprintf(f, "graph <%s> @ %p\n", g->name, g); in rte_graph_obj_dump()
55 fprintf(f, " id=%" PRIu32 "\n", g->id); in rte_graph_obj_dump()
60 fprintf(f, " socket=%d\n", g->socket); in rte_graph_obj_dump()
[all …]
/f-stack/freebsd/contrib/openzfs/scripts/
H A Dzfs2zol-patch.sed3 s:usr/src/uts/common/fs/zfs/sys:include/sys:g
4 s:usr/src/uts/common/fs/zfs:module/zfs:g
5 s:usr/src/lib/libzpool:lib/libzpool:g
6 s:usr/src/cmd:cmd:g
7 s:usr/src/common/nvpair:module/nvpair:g
9 s:usr/src/man/man1m/zfs.1m:man/man8/zfs.8:g
10 s:usr/src/uts/common/sys:include/sys:g
12 s:usr/src/lib/libzfs/common:lib/libzfs:g
14 s:lib/libzpool/common/sys:include/sys:g
15 s:lib/libzpool/common:lib/libzpool:g
[all …]
H A Dzol2zfs-patch.sed3 s:cmd:usr/src/cmd:g
6 s:include/sys:lib/libzpool/common/sys:g
8 s:include/sys:usr/src/uts/common/sys:g
10 s:include:usr/src/common/zfs:g
11 s:lib/libzfs:usr/src/lib/libzfs/common:g
13 s:lib/libzpool:lib/libzpool/common:g
14 s:lib/libzpool:usr/src/lib/libzpool:g
17 s:module/nvpair:usr/src/common/nvpair:g
18 s:module/zcommon:usr/src/common/zfs/:g
19 s:module/zfs:usr/src/uts/common/fs/zfs:g
[all …]
/f-stack/freebsd/contrib/openzfs/config/
H A DSubstfiles.am2 -e 's|@bindir[@]|$(bindir)|g' \
3 -e 's|@sbindir[@]|$(sbindir)|g' \
4 -e 's|@datadir[@]|$(datadir)|g' \
5 -e 's|@sysconfdir[@]|$(sysconfdir)|g' \
6 -e 's|@runstatedir[@]|$(runstatedir)|g' \
7 -e 's|@initconfdir[@]|$(initconfdir)|g' \
8 -e 's|@initdir[@]|$(initdir)|g' \
12 -e 's|@udevdir[@]|$(udevdir)|g' \
13 -e 's|@udevruledir[@]|$(udevruledir)|g' \
14 -e 's|@zfsexecdir[@]|$(zfsexecdir)|g' \
[all …]
/f-stack/app/nginx-1.16.1/auto/
H A Dmake58 -e "s/\//$ngx_regex_dirsep/g"`
74 -e "s/\//$ngx_regex_dirsep/g"`
78 -e "s/\//$ngx_regex_dirsep/g"`
98 -e "s/\//$ngx_regex_dirsep/g"`
102 -e "s/\//$ngx_regex_dirsep/g"`
126 -e "s/\//$ngx_regex_dirsep/g"`
130 -e "s/\//$ngx_regex_dirsep/g"`
154 -e "s/\//$ngx_regex_dirsep/g"`
158 -e "s/\//$ngx_regex_dirsep/g"`
222 -e "s/\//$ngx_regex_dirsep/g"`
[all …]
/f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/
H A Dbitmap.h197 bitmap_t g; in bitmap_get() local
209 bitmap_t g; in bitmap_set() local
215 g = *gp; in bitmap_set()
218 *gp = g; in bitmap_set()
228 g = *gp; in bitmap_set()
231 *gp = g; in bitmap_set()
303 bitmap_t g; in bitmap_sfu() local
341 g = *gp; in bitmap_unset()
345 *gp = g; in bitmap_unset()
355 g = *gp; in bitmap_unset()
[all …]
/f-stack/freebsd/contrib/openzfs/module/icp/algs/sha2/
H A Dsha2.c158 uint32_t g = ctx->state.s32[6]; in SHA256Transform() local
199 SHA256ROUND(a, b, c, d, e, f, g, h, 0, w0); in SHA256Transform()
202 SHA256ROUND(h, a, b, c, d, e, f, g, 1, w1); in SHA256Transform()
205 SHA256ROUND(g, h, a, b, c, d, e, f, 2, w2); in SHA256Transform()
208 SHA256ROUND(f, g, h, a, b, c, d, e, 3, w3); in SHA256Transform()
211 SHA256ROUND(e, f, g, h, a, b, c, d, 4, w4); in SHA256Transform()
214 SHA256ROUND(d, e, f, g, h, a, b, c, 5, w5); in SHA256Transform()
217 SHA256ROUND(c, d, e, f, g, h, a, b, 6, w6); in SHA256Transform()
351 ctx->state.s32[6] += g; in SHA256Transform()
368 uint64_t g = ctx->state.s64[6]; in SHA512Transform() local
[all …]
/f-stack/tools/compat/include/sys/
H A Dioccom.h56 #define _IO(g,n) _IOC(IOC_VOID, (g), (n), 0) argument
57 #define _IOWINT(g,n) _IOC(IOC_VOID, (g), (n), sizeof(int)) argument
58 #define _IOR(g,n,t) _IOC(IOC_OUT, (g), (n), sizeof(t)) argument
59 #define _IOW(g,n,t) _IOC(IOC_IN, (g), (n), sizeof(t)) argument
61 #define _IOWR(g,n,t) _IOC(IOC_INOUT, (g), (n), sizeof(t)) argument
/f-stack/app/redis-5.0.5/deps/jemalloc/
H A D.travis.yml7 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
9 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
13 …env: CC=gcc CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-boun…
19 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-Werror -Wno-…
21 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-prof" EXTRA_CFLAGS="-Werror -Wno-a…
23 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--disable-stats" EXTRA_CFLAGS="-Werror -Wno…
35 …env: CC=gcc CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-boun…
37 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-Werror -Wno-…
39 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--disable-stats" EXTRA_CFLAGS="-Werror -Wno…
63 …env: CC=gcc CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-Werror -…
[all …]
/f-stack/freebsd/sys/
H A Dioccom.h64 #define _IO(g,n) _IOC(IOC_VOID, (g), (n), 0) argument
65 #define _IOWINT(g,n) _IOC(IOC_VOID, (g), (n), sizeof(int)) argument
66 #define _IOR(g,n,t) _IOC(IOC_OUT, (g), (n), sizeof(t)) argument
67 #define _IOW(g,n,t) _IOC(IOC_IN, (g), (n), sizeof(t)) argument
69 #define _IOWR(g,n,t) _IOC(IOC_INOUT, (g), (n), sizeof(t)) argument
/f-stack/freebsd/contrib/openzfs/module/icp/asm-x86_64/sha2/
H A Dsha256_impl.S142 xor %r10d,%r15d # Ch(e,f,g)=((f^g)&e)^g
188 xor %r9d,%r15d # Ch(e,f,g)=((f^g)&e)^g
234 xor %r8d,%r15d # Ch(e,f,g)=((f^g)&e)^g
280 xor %edx,%r15d # Ch(e,f,g)=((f^g)&e)^g
326 xor %ecx,%r15d # Ch(e,f,g)=((f^g)&e)^g
372 xor %ebx,%r15d # Ch(e,f,g)=((f^g)&e)^g
418 xor %eax,%r15d # Ch(e,f,g)=((f^g)&e)^g
464 xor %r11d,%r15d # Ch(e,f,g)=((f^g)&e)^g
556 xor %r9d,%r15d # Ch(e,f,g)=((f^g)&e)^g
602 xor %r8d,%r15d # Ch(e,f,g)=((f^g)&e)^g
[all …]
H A Dsha512_impl.S143 xor %r10,%r15 # Ch(e,f,g)=((f^g)&e)^g
189 xor %r9,%r15 # Ch(e,f,g)=((f^g)&e)^g
235 xor %r8,%r15 # Ch(e,f,g)=((f^g)&e)^g
281 xor %rdx,%r15 # Ch(e,f,g)=((f^g)&e)^g
327 xor %rcx,%r15 # Ch(e,f,g)=((f^g)&e)^g
373 xor %rbx,%r15 # Ch(e,f,g)=((f^g)&e)^g
419 xor %rax,%r15 # Ch(e,f,g)=((f^g)&e)^g
465 xor %r11,%r15 # Ch(e,f,g)=((f^g)&e)^g
511 xor %r10,%r15 # Ch(e,f,g)=((f^g)&e)^g
557 xor %r9,%r15 # Ch(e,f,g)=((f^g)&e)^g
[all …]
/f-stack/freebsd/contrib/libsodium/src/libsodium/include/sodium/private/
H A Ded25519_ref10_fe_51.h58 h0 = g[0]; in fe25519_sub()
59 h1 = g[1]; in fe25519_sub()
60 h2 = g[2]; in fe25519_sub()
61 h3 = g[3]; in fe25519_sub()
62 h4 = g[4]; in fe25519_sub()
180 g[0] = g0 ^ x0; in fe25519_cswap()
258 g0 = g[0]; in fe25519_mul()
259 g1 = g[1]; in fe25519_mul()
260 g2 = g[2]; in fe25519_mul()
261 g3 = g[3]; in fe25519_mul()
[all …]
H A Ded25519_ref10_fe_25_5.h213 int32_t g0 = g[0]; in fe25519_cswap()
257 g[0] = g0 ^ x0; in fe25519_cswap()
258 g[1] = g1 ^ x1; in fe25519_cswap()
259 g[2] = g2 ^ x2; in fe25519_cswap()
260 g[3] = g3 ^ x3; in fe25519_cswap()
261 g[4] = g4 ^ x4; in fe25519_cswap()
262 g[5] = g5 ^ x5; in fe25519_cswap()
263 g[6] = g6 ^ x6; in fe25519_cswap()
264 g[7] = g7 ^ x7; in fe25519_cswap()
265 g[8] = g8 ^ x8; in fe25519_cswap()
[all …]
/f-stack/freebsd/contrib/device-tree/src/arm64/freescale/
H A Dfsl-ls1046-post.dtsi13 #include "qoriq-fman3-0-1g-0.dtsi"
14 #include "qoriq-fman3-0-1g-1.dtsi"
15 #include "qoriq-fman3-0-1g-2.dtsi"
16 #include "qoriq-fman3-0-1g-3.dtsi"
17 #include "qoriq-fman3-0-1g-4.dtsi"
18 #include "qoriq-fman3-0-1g-5.dtsi"
19 #include "qoriq-fman3-0-10g-0.dtsi"
20 #include "qoriq-fman3-0-10g-1.dtsi"
H A Dfsl-ls1043-post.dtsi12 #include "qoriq-fman3-0-1g-0.dtsi"
13 #include "qoriq-fman3-0-1g-1.dtsi"
14 #include "qoriq-fman3-0-1g-2.dtsi"
15 #include "qoriq-fman3-0-1g-3.dtsi"
16 #include "qoriq-fman3-0-1g-4.dtsi"
17 #include "qoriq-fman3-0-1g-5.dtsi"
18 #include "qoriq-fman3-0-10g-0.dtsi"
/f-stack/freebsd/kern/
H A Dkern_lockf.c2273 g->g_gen++; in graph_add_edge()
2281 g->g_gen++; in graph_add_edge()
2414 if (g->g_size == g->g_space) { in graph_alloc_vertex()
2415 g->g_vertices = realloc(g->g_vertices, in graph_alloc_vertex()
2419 g->g_indexbuf = malloc(2 * g->g_space * sizeof(int), in graph_alloc_vertex()
2421 g->g_space = 2 * g->g_space; in graph_alloc_vertex()
2425 g->g_vertices[g->g_size] = v; in graph_alloc_vertex()
2426 g->g_size++; in graph_alloc_vertex()
2455 g->g_size--; in graph_free_vertex()
2469 g->g_gen = 0; in graph_init()
[all …]
/f-stack/freebsd/crypto/aesni/
H A Daesencdec.h41 __m128i b, __m128i c, __m128i d, __m128i e, __m128i f, __m128i g, in aesni_enc8() argument
52 g ^= keysched[0]; in aesni_enc8()
62 g = _mm_aesenc_si128(g, keysched[i + 1]); in aesni_enc8()
72 out[6] = _mm_aesenclast_si128(g, keysched[i + 1]); in aesni_enc8()
78 __m128i b, __m128i c, __m128i d, __m128i e, __m128i f, __m128i g, in aesni_dec8() argument
89 g ^= keysched[0]; in aesni_dec8()
99 g = _mm_aesdec_si128(g, keysched[i + 1]); in aesni_dec8()
109 out[6] = _mm_aesdeclast_si128(g, keysched[i + 1]); in aesni_dec8()
/f-stack/app/redis-5.0.5/deps/lua/test/
H A Dreadonly.lua4 local g={}
6 setmetatable(g,{__index=G,__newindex=f})
7 setfenv(1,g)
10 rawset(g,"x",3)

12345678910>>...26