| /freebsd-14.2/sbin/gbde/ |
| H A D | gbde.c | 446 random_bits(gl->spare, sizeof(gl->spare)); in cmd_write() 481 bzero(&gl->sector0, sizeof gl->sector0); in cmd_destroy() 482 bzero(&gl->sectorN, sizeof gl->sectorN); in cmd_destroy() 483 bzero(&gl->keyoffset, sizeof gl->keyoffset); in cmd_destroy() 485 bzero(gl->mkey, sizeof gl->mkey); in cmd_destroy() 522 bzero(gl, sizeof *gl); in cmd_init() 632 gl->sector0 = first_sector * gl->sectorsize; in cmd_init() 639 gl->sectorN = (last_sector + 1) * gl->sectorsize; in cmd_init() 643 o %= (gl->sectorN - gl->sector0); in cmd_init() 710 random_bits(gl->mkey, sizeof gl->mkey); in cmd_init() [all …]
|
| /freebsd-14.2/sys/geom/bde/ |
| H A D | g_bde_lock.c | 187 bcopy(gl->spare, p, sizeof gl->spare); in g_bde_encode_lock() 191 bcopy(gl->salt, p, sizeof gl->salt); in g_bde_encode_lock() 192 p += sizeof gl->salt; in g_bde_encode_lock() 195 bcopy(gl->mkey, p, sizeof gl->mkey); in g_bde_encode_lock() 257 bcopy(p, gl->spare, sizeof gl->spare); in g_bde_decode_lock() 261 bcopy(p, gl->salt, sizeof gl->salt); in g_bde_decode_lock() 265 bcopy(p, gl->mkey, sizeof gl->mkey); in g_bde_decode_lock() 357 struct g_bde_key *gl; in g_bde_decrypt_lockx() local 363 gl = &sc->key; in g_bde_decrypt_lockx() 426 q1 += gl->mkey[i]; in g_bde_decrypt_lockx() [all …]
|
| H A D | g_bde.h | 159 int g_bde_encode_lock(u_char *sha2, struct g_bde_key *gl, u_char *ptr); 160 int g_bde_decode_lock(struct g_bde_softc *sc, struct g_bde_key *gl, u_char *ptr);
|
| /freebsd-14.2/contrib/netbsd-tests/lib/libc/gen/ |
| H A D | t_glob.c | 199 glob_t gl; in run() local 202 memset(&gl, 0, sizeof(gl)); in run() 203 gl.gl_opendir = gl_opendir; in run() 204 gl.gl_readdir = gl_readdir; in run() 205 gl.gl_closedir = gl_closedir; in run() 206 gl.gl_stat = gl_stat; in run() 207 gl.gl_lstat = gl_lstat; in run() 211 for (i = 0; i < gl.gl_pathc; i++) in run() 214 ATF_CHECK(len == gl.gl_pathc); in run() 215 for (i = 0; i < gl.gl_pathc; i++) in run() [all …]
|
| /freebsd-14.2/libexec/ftpd/ |
| H A D | popen.c | 100 glob_t gl; in ftpd_popen() local 103 memset(&gl, 0, sizeof(gl)); in ftpd_popen() 104 gl.gl_matchc = MAXGLOBARGS; in ftpd_popen() 106 if (glob(argv[argc], flags, NULL, &gl)) in ftpd_popen() 108 else if (gl.gl_pathc > 0) { in ftpd_popen() 109 for (pop = gl.gl_pathv; *pop && gargc < (MAXGLOBARGS-1); in ftpd_popen() 113 globfree(&gl); in ftpd_popen()
|
| H A D | ftpcmd.y | 1731 glob_t gl; 1733 memset(&gl, 0, sizeof(gl)); 1735 gl.gl_matchc = MAXGLOBARGS; 1736 if (glob(s, flags, NULL, &gl) == 0 && gl.gl_pathc != 0) { 1737 for (pp = gl.gl_pathv, p = NULL, n = 0; *pp; pp++) 1754 globfree(&gl);
|
| /freebsd-14.2/usr.bin/vtfontcvt/ |
| H A D | vtfontcvt.c | 206 mp->m_glyph = gl; in add_mapping() 258 struct glyph *gl; in add_glyph() local 269 return (gl); in add_glyph() 274 gl = xmalloc(sizeof *gl); in add_glyph() 286 return (gl); in add_glyph() 318 struct glyph *gl; in add_char() local 323 gl = add_glyph(bytes, 0, 1); in add_char() 325 gl = add_glyph(bytes, map_idx, 0); in add_char() 639 struct glyph *gl; in number_glyphs() local 644 gl->g_index = idx++; in number_glyphs() [all …]
|
| /freebsd-14.2/crypto/heimdal/appl/ftp/ftpd/ |
| H A D | popen.c | 138 glob_t gl; in ftpd_popen() local 148 memset(&gl, 0, sizeof(gl)); in ftpd_popen() 150 glob(argv[argc], flags, NULL, &gl) || in ftpd_popen() 151 gl.gl_pathc == 0) in ftpd_popen() 154 for (pop = gl.gl_pathv; in ftpd_popen() 158 globfree(&gl); in ftpd_popen()
|
| H A D | ftpcmd.y | 841 glob_t gl; 845 memset(&gl, 0, sizeof(gl)); 846 if (glob($1, flags, NULL, &gl) || 847 gl.gl_pathc == 0) { 851 $$ = strdup(gl.gl_pathv[0]); 853 globfree(&gl);
|
| H A D | ftpcmd.c | 2679 glob_t gl; in yyparse() 2683 memset(&gl, 0, sizeof(gl)); in yyparse() 2684 if (glob((yyvsp[(1) - (1)].s), flags, NULL, &gl) || in yyparse() 2685 gl.gl_pathc == 0) { in yyparse() 2689 (yyval.s) = strdup(gl.gl_pathv[0]); in yyparse() 2691 globfree(&gl); in yyparse()
|
| H A D | ftpd.c | 2218 glob_t gl; in send_file_list() local 2230 memset(&gl, 0, sizeof(gl)); in send_file_list() 2232 if (glob(whichf, flags, 0, &gl)) { in send_file_list() 2235 } else if (gl.gl_pathc == 0) { in send_file_list() 2240 dirlist = gl.gl_pathv; in send_file_list() 2338 globfree(&gl); in send_file_list()
|
| /freebsd-14.2/sys/dev/ath/ath_hal/ar5212/ |
| H A D | ar5212_rfgain.c | 190 const GAIN_OPTIMIZATION_LADDER *gl; in ar5212AdjustGain() local 193 gl = &gainLadder5112; in ar5212AdjustGain() 195 gl = &gainLadder; in ar5212AdjustGain() 196 gv->currStep = &gl->optStep[gv->currStepNum]; in ar5212AdjustGain() 208 gv->targetGain -= 2 * (gl->optStep[--(gv->currStepNum)].stepGain - in ar5212AdjustGain() 210 gv->currStep = &gl->optStep[gv->currStepNum]; in ar5212AdjustGain() 217 if (gv->currStepNum == gl->numStepsInLadder-1) { in ar5212AdjustGain() 227 gv->currStepNum < (gl->numStepsInLadder - 1)) { in ar5212AdjustGain() 229 (gl->optStep[++(gv->currStepNum)].stepGain - gv->currStep->stepGain); in ar5212AdjustGain() 230 gv->currStep = &gl->optStep[gv->currStepNum]; in ar5212AdjustGain()
|
| /freebsd-14.2/usr.bin/login/ |
| H A D | login_fbtab.c | 123 glob_t gl; in login_protect() local 127 if (glob(pattern, GLOB_NOSORT, NULL, &gl) != 0) in login_protect() 129 for (i = 0; i < gl.gl_pathc; i++) { in login_protect() 130 path = gl.gl_pathv[i]; in login_protect() 139 globfree(&gl); in login_protect()
|
| /freebsd-14.2/crypto/heimdal/appl/ftp/ftp/ |
| H A D | cmds.c | 514 glob_t gl; in mput() local 537 memset(&gl, 0, sizeof(gl)); in mput() 539 if (glob(argv[i], flags, NULL, &gl) || gl.gl_pathc == 0) { in mput() 541 globfree(&gl); in mput() 562 globfree(&gl); in mput() 1564 glob_t gl; in globulize() local 1571 memset(&gl, 0, sizeof(gl)); in globulize() 1572 if (glob(*cpp, flags, NULL, &gl) || in globulize() 1573 gl.gl_pathc == 0) { in globulize() 1575 globfree(&gl); in globulize() [all …]
|
| /freebsd-14.2/lib/libiconv_modules/ISO2022/ |
| H A D | citrus_iso2022.c | 94 int gl:3, member 435 s->gl = 0; in _citrus_ISO2022_init_state() 588 psenc->gl = 0; in _ISO2022_sgetwchar() 594 psenc->gl = 1; in _ISO2022_sgetwchar() 660 psenc->gl = string[1] - 'n' + 2; in _ISO2022_sgetwchar() 1076 if (psenc->gl == target) in _ISO2022_sputwchar() 1083 psenc->gl = 0; in _ISO2022_sputwchar() 1086 psenc->gl = 1; in _ISO2022_sputwchar() 1090 psenc->gl = 2; in _ISO2022_sputwchar() 1094 psenc->gl = 3; in _ISO2022_sputwchar() [all …]
|
| /freebsd-14.2/sys/modules/iwlwififw/ |
| H A D | Makefile | 19 iwlwifi-gl-c0-fm-c0-fw \ 20 iwlwifi-gl-c0-fm-c0-pnvm \
|
| /freebsd-14.2/sys/modules/iwlwififw/iwlwifi-gl-c0-fm-c0-fw/ |
| H A D | Makefile | 3 NAME= gl-c0-fm-c0
|
| /freebsd-14.2/sys/modules/iwlwififw/iwlwifi-gl-c0-fm-c0-pnvm/ |
| H A D | Makefile | 3 NAME= gl-c0-fm-c0
|
| /freebsd-14.2/contrib/tnftp/src/ |
| H A D | util.c | 634 glob_t gl; in globulize() local 642 memset(&gl, 0, sizeof(gl)); in globulize() 643 if (glob(pattern, flags, NULL, &gl) || gl.gl_pathc == 0) { in globulize() 645 globfree(&gl); in globulize() 648 p = ftp_strdup(gl.gl_pathv[0]); in globulize() 649 globfree(&gl); in globulize()
|
| H A D | cmds.c | 507 glob_t gl; in mput() local 529 memset(&gl, 0, sizeof(gl)); in mput() 531 if (glob(argv[i], flags, NULL, &gl) || gl.gl_pathc == 0) { in mput() 533 globfree(&gl); in mput() 536 for (cpp = gl.gl_pathv; cpp && *cpp != NULL && connected; in mput() 555 globfree(&gl); in mput()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_ignorelist.txt | 12 # Stack buffer overflow in VC/INCLUDE/xlocnum, see http://goo.gl/L4qqUG
|
| /freebsd-14.2/sys/contrib/openzfs/module/lua/ |
| H A D | lparser.c | 340 Labellist *gl = &ls->dyd->gt; in closegoto() local 341 Labeldesc *gt = &gl->arr[g]; in closegoto() 352 for (i = g; i < gl->n - 1; i++) in closegoto() 353 gl->arr[i] = gl->arr[i + 1]; in closegoto() 354 gl->n--; in closegoto() 400 Labellist *gl = &ls->dyd->gt; in findgotos() local 402 while (i < gl->n) { in findgotos() 403 if (luaS_eqstr(gl->arr[i].name, lb->name)) in findgotos() 419 Labellist *gl = &fs->ls->dyd->gt; in movegotosout() local 422 while (i < gl->n) { in movegotosout() [all …]
|
| /freebsd-14.2/contrib/lua/src/ |
| H A D | lparser.c | 529 Labellist *gl = &ls->dyd->gt; /* list of gotos */ in solvegoto() local 530 Labeldesc *gt = &gl->arr[g]; /* goto to be resolved */ in solvegoto() 535 for (i = g; i < gl->n - 1; i++) /* remove goto from pending list */ in solvegoto() 536 gl->arr[i] = gl->arr[i + 1]; in solvegoto() 537 gl->n--; in solvegoto() 586 Labellist *gl = &ls->dyd->gt; in solvegotos() local 589 while (i < gl->n) { in solvegotos() 590 if (eqstr(gl->arr[i].name, lb->name)) { in solvegotos() 591 needsclose |= gl->arr[i].close; in solvegotos() 630 Labellist *gl = &fs->ls->dyd->gt; in movegotosout() local [all …]
|
| /freebsd-14.2/contrib/nvi/regex/ |
| H A D | engine.c | 141 const sopno gl = g->laststate; in matcher() local 185 endp = fast(m, start, stop, gf, gl); in matcher() 197 endp = slow(m, m->coldp, stop, gf, gl); in matcher() 218 dp = dissect(m, m->coldp, endp, gf, gl); in matcher() 229 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0); in matcher() 241 endp = slow(m, m->coldp, endp-1, gf, gl); in matcher() 252 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0); in matcher()
|
| /freebsd-14.2/lib/libc/regex/ |
| H A D | engine.c | 200 const sopno gl = g->laststate; in matcher() local 297 endp = walk(m, start, stop, gf, gl, true); in matcher() 313 endp = walk(m, m->coldp, stop, gf, gl, false); in matcher() 335 dp = dissect(m, m->coldp, endp, gf, gl); in matcher() 346 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0); in matcher() 358 endp = walk(m, m->coldp, endp-1, gf, gl, false); in matcher() 369 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0); in matcher()
|