| /src/external/bsd/mdocml/dist/ |
| test-sandbox_init.c | 6 char *ep; local 9 rc = sandbox_init(kSBXProfileNoInternet, SANDBOX_NAMED, &ep); 11 sandbox_free_error(ep);
|
| eqn.c | 308 struct eqn_node *ep; local 310 ep = mandoc_calloc(1, sizeof(*ep)); 311 ep->gsize = EQN_DEFSIZE; 312 return ep; 316 eqn_reset(struct eqn_node *ep) 318 free(ep->data); 319 ep->data = ep->start = ep->end = NULL [all...] |
| /src/external/ibm-public/postfix/dist/src/util/ |
| edit_file.c | 176 #define EDIT_FILE_ALLOC(ep, path, mode) do { \ 177 (ep) = (EDIT_FILE *) mymalloc(sizeof(EDIT_FILE)); \ 178 (ep)->final_path = mystrdup(path); \ 179 (ep)->final_mode = (mode); \ 180 (ep)->tmp_path = concatenate((path), EDIT_FILE_SUFFIX, (char *) 0); \ 181 (ep)->tmp_fp = 0; \ 184 #define EDIT_FILE_FREE(ep) do { \ 185 myfree((ep)->final_path); \ 186 myfree((ep)->tmp_path); \ 187 myfree((void *) (ep)); \ 197 EDIT_FILE *ep; local [all...] |
| /src/external/bsd/nvi/dist/common/ |
| log4.c | 81 log_init(SCR *sp, EXF *ep) 89 * ep MAY NOT BE THE SAME AS sp->ep, DON'T USE THE LATTER. 97 ep->l_cursor.lno = 1; /* XXX Any valid recno. */ 98 ep->l_cursor.cno = 0; 99 ep->l_high = ep->l_cur = 1; 101 if ((sp->db_error = ep->env->log_cursor(ep->env, &logc, 0)) 104 F_SET(ep, F_NOLOG) 171 EXF *ep; local 202 EXF *ep; local 254 EXF *ep; local 336 EXF *ep; local 375 EXF *ep; local 412 EXF *ep; local 442 EXF *ep; local [all...] |
| log1.c | 101 log_init(SCR *sp, EXF *ep) 105 * ep MAY NOT BE THE SAME AS sp->ep, DON'T USE THE LATTER. 113 ep->l_cursor.lno = 1; /* XXX Any valid recno. */ 114 ep->l_cursor.cno = 0; 115 ep->l_high = ep->l_cur = 1; 117 ep->log = dbopen(NULL, O_CREAT | O_NONBLOCK | O_RDWR, 119 if (ep->log == NULL) { 121 F_SET(ep, F_NOLOG) 169 EXF *ep; local 200 EXF *ep; local 248 EXF *ep; local 366 EXF *ep; local 413 EXF *ep; local 525 EXF *ep; local 619 EXF *ep; local 722 EXF *ep; local [all...] |
| log.c | 102 log_init(SCR *sp, EXF *ep) 106 * ep MAY NOT BE THE SAME AS sp->ep, DON'T USE THE LATTER. 114 ep->l_cursor.lno = 1; /* XXX Any valid recno. */ 115 ep->l_cursor.cno = 0; 116 ep->l_high = ep->l_cur = 1; 118 if (db_create(&ep->log, 0, 0) != 0 || 119 db_open(ep->log, NULL, DB_RECNO, 122 F_SET(ep, F_NOLOG) 170 EXF *ep; local 201 EXF *ep; local 249 EXF *ep; local 367 EXF *ep; local 413 EXF *ep; local 449 EXF *ep; local 559 EXF *ep; local 650 EXF *ep; local 752 EXF *ep; local [all...] |
| /src/external/gpl2/groff/dist/src/libs/libgroff/ |
| putenv.c | 56 char **ep; local 62 for (ep = environ; *ep != NULL; ++ep) 63 if (!strncmp(*ep, string, size) && (*ep)[size] == '=') 65 while (ep[1] != NULL) 67 ep[0] = ep[1]; 68 ++ep; [all...] |
| /src/external/bsd/libfido2/dist/src/ |
| util.c | 17 char *ep; local 21 ull = strtoull(str, &ep, base); 22 if (str == ep || *ep != '\0')
|
| /src/external/mit/libuv/dist/include/uv/ |
| os390.h | 28 void* ep; \
|
| /src/games/hack/ |
| hack.engrave.c | 94 struct engr *ep = head_engr; local 95 while (ep) { 96 if (x == ep->engr_x && y == ep->engr_y) 97 return (ep); 98 ep = ep->nxt_engr; 106 struct engr *ep = engr_at(x, y); local 110 if (ep && ep->engr_time <= moves) 135 struct engr *ep = engr_at(x, y); local 165 struct engr *ep = engr_at(x, y); local 187 struct engr *ep; local 209 struct engr *ep, *oep = engr_at(u.ux, u.uy); local 349 struct engr *ep = head_engr; local 366 struct engr *ep; local [all...] |
| /src/crypto/external/apache2/openssl/lib/libdes/ |
| orand_key.c | 41 u_int8_t *p, *ep; local 45 ep = (u_int8_t *)(ret + sizeof(*ret)); 46 while (p + sizeof(v) <= ep) { 51 if (ep - p) { 53 memcpy(p, &v, ep - p);
|
| /src/crypto/external/bsd/openssl/lib/libdes/ |
| orand_key.c | 41 u_int8_t *p, *ep; local 45 ep = (u_int8_t *)(ret + sizeof(*ret)); 46 while (p + sizeof(v) <= ep) { 51 if (ep - p) { 53 memcpy(p, &v, ep - p);
|
| /src/crypto/external/bsd/openssl.old/lib/libdes/ |
| orand_key.c | 41 u_int8_t *p, *ep; local 45 ep = (u_int8_t *)(ret + sizeof(*ret)); 46 while (p + sizeof(v) <= ep) { 51 if (ep - p) { 53 memcpy(p, &v, ep - p);
|
| /src/external/bsd/nvi/dist/ex/ |
| ex_undo.c | 41 EXF *ep; local 59 ep = sp->ep; 60 if (!F_ISSET(ep, F_UNDO)) { 61 F_SET(ep, F_UNDO); 62 ep->lundo = FORWARD; 64 switch (ep->lundo) { 68 ep->lundo = FORWARD; 73 ep->lundo = BACKWARD;
|
| /src/sbin/restore/ |
| utilities.c | 64 struct entry *ep; local 74 ep = lookupname(name); 75 if (ep == NULL) { 77 ep = addentry(name, pathsearch(name)->d_ino, NODE); 78 newnode(ep); 80 ep->e_flags |= NEW|KEEP; 89 mktempname(struct entry *ep) 93 if (ep->e_flags & TMPNAME) 94 badentry(ep, "mktempname: called with TMPNAME"); 95 ep->e_flags |= TMPNAME 271 struct entry *ep; local 289 struct entry *ep; local [all...] |
| symtab.c | 86 struct entry *ep; local 90 for (ep = entry[inum % entrytblsize]; ep != NULL; ep = ep->e_next) 91 if (ep->e_ino == inum) 92 return (ep); 146 struct entry *ep; local 152 for (ep = lookupino(UFS_ROOTINO); ep != NULL; ep = ep->e_entries) 173 struct entry *ep; local 222 struct entry *np, *ep; local 393 char *cp, *ep; local 451 struct entry *ep, *tep; local 540 struct entry *ep; local [all...] |
| restore.c | 77 struct entry *ep; local 96 ep = lookupino(ino); 97 if (ep != NULL) { 98 if (strcmp(name, myname(ep)) == 0) { 99 ep->e_flags |= NEW; 104 ep = addentry(name, ino, type); 106 newnode(ep); 107 ep->e_flags |= NEW; 120 struct entry *ep; local 124 ep = lookupname(name) 157 struct entry *ep, *nextep; local 210 struct entry *ep, *np, *ip; local 518 struct entry *ep, *np; local 566 struct entry *ep, **prev; local 595 struct entry *ep; local 677 struct entry *ep; local 780 struct entry *np, *ep; local 820 struct entry *ep; local 842 struct entry *np, *ep; local [all...] |
| /src/tests/lib/libc/stdlib/ |
| t_hsearch.c | 87 ENTRY e, *ep; local 103 ep = hsearch(e, ENTER); 105 ATF_REQUIRE(ep != NULL); 106 ATF_REQUIRE_STREQ(ep->key, ch); 107 ATF_REQUIRE_EQ((intptr_t)ep->data, i); 117 ep = hsearch(e, FIND); 119 ATF_REQUIRE(ep != NULL); 120 ATF_REQUIRE_STREQ(ep->key, ch); 121 ATF_REQUIRE_EQ((intptr_t)ep->data, i); 137 ENTRY e, *ep; local 172 ENTRY e, *ep; local 193 ENTRY e, *ep, *ep2; local 241 ENTRY e, *ep; local 290 ENTRY e, *ep; local 325 ENTRY e, *ep; local 347 ENTRY e, *ep, *ep2; local [all...] |
| /src/sys/arch/sgimips/stand/common/ |
| iris_parse.c | 48 char *ep = strcpy(bootpath, argv[1]); local 49 ep = strrchr(bootpath, '/'); 50 if (ep == NULL) 53 strcpy(kernelname, ep + 1); 55 i = ep - bootpath; 58 ep = strchr(bootpath, '('); 59 if (ep == NULL) 64 strcpy(disksetting, ep + 1);
|
| /src/usr.bin/crunch/crunchgen/ |
| crunched_main.c | 58 const struct stub *ep; local 66 for (ep = entry_points; ep->name != NULL; ep++) 67 if (strcmp(basename, ep->name) == 0) 68 return ep->f(argc, argv, envp); 89 const struct stub *ep; local 94 for (ep = entry_points; ep->name != NULL; ep++) [all...] |
| /src/lib/libc/yp/ |
| yp_match.c | 70 struct ypmatch_ent *ep; local 79 for (ep = ypmc; ep; ep = ep->next) 80 if (ep->expire_t < t) 82 if (ep == NULL) { 83 if ((ep = malloc(sizeof *ep)) == NULL) 85 (void)memset(ep, 0, sizeof *ep) 134 struct ypmatch_ent *ep; local [all...] |
| /src/usr.bin/spell/spellprog/ |
| spellprog.c | 316 char *ep, *cp, *dp; local 379 for (ep = word; (*ep = ch = getchar()) != '\n'; ep++) { 380 if (ep - word == sizeof(word) - 1) { 381 *ep = '\0'; 392 for (cp = word, dp = original; cp < ep; ) 396 for (cp = word; cp < ep; cp++) 399 if (trypref(ep, ".", 0)) 402 for (cp = original + 1, dp = word + 1; dp < ep; dp++, cp++ [all...] |
| /src/external/bsd/nvi/dist/vi/ |
| v_undo.c | 64 F_SET(sp->ep, F_UNDO); 65 sp->ep->lundo = BACKWARD; 79 EXF *ep; local 125 ep = sp->ep; 126 if (!F_ISSET(ep, F_UNDO)) { 127 F_SET(ep, F_UNDO); 128 ep->lundo = BACKWARD; 130 ep->lundo = ep->lundo == BACKWARD ? FORWARD : BACKWARD [all...] |
| /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/ |
| unsetenv.c | 57 char **ep; local 69 ep = __environ; 70 while (*ep != NULL) 71 if (!strncmp (*ep, name, len) && (*ep)[len] == '=') 74 char **dp = ep; 82 ++ep;
|
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| unsetenv.c | 57 char **ep; local 69 ep = __environ; 70 while (*ep != NULL) 71 if (!strncmp (*ep, name, len) && (*ep)[len] == '=') 74 char **dp = ep; 82 ++ep;
|