/src/lib/libc/db/hash/ |
page.h | 86 BUFHEAD *newp; member in struct:__anon9d08c6170108
|
/src/games/hunt/huntd/ |
execute.c | 195 PLAYER *newp; local in function:move_player 268 newp = play_at(y, x); 269 checkdam(newp, pp, pp->p_ident, STABDAM, KNIFE); 274 newp = play_at(y, x); 275 message(newp, "Oooh, there's a short guy waving at you!"); 286 for (newp = Boot; newp < &Boot[NBOOTS]; newp++) { 287 if (newp->p_flying < 0) 289 if (newp->p_y == y && newp->p_x == x) [all...] |
draw.c | 317 PLAYER *newp; local in function:drawplayer 325 for (newp = Monitor; newp < End_monitor; newp++) 326 check(newp, y, x); 329 for (newp = Player; newp < End_player; newp++) { 330 if (!draw || newp == pp) { 331 check(newp, y, x) [all...] |
/src/sys/compat/netbsd32/ |
netbsd32_sysctl.c | 206 void *newp, *oldp; local in function:netbsd32___sysctl 213 newp = SCARG_P32(uap, newv); 239 sysctl_lock(newp != NULL); 245 newp, SCARG(uap, newlen),
|
/src/usr.bin/crunch/crunchide/ |
crunchide.c | 147 struct keep *newp, *prevp, *curp; local in function:add_to_keep_list 159 newp = (struct keep *) malloc(sizeof(struct keep)); 160 if (newp) 161 newp->sym = strdup(symbol); 162 if (newp == NULL || newp->sym == NULL) { 167 newp->next = curp; 169 prevp->next = newp; 171 keep_list = newp;
|
/src/lib/libform/ |
field.c | 320 char *newp; local in function:field_buffer_init 330 if ((newp = realloc(field->alines->string, 333 field->alines->string = newp;
|
internals.c | 710 char *newp; local in function:_formi_join_line 734 if ((newp = realloc(row->string, (size_t)(row->length + 738 row->string = newp; 803 if ((newp = realloc(saved->string, 808 saved->string = newp; 886 char *newp; local in function:split_line 932 if ((newp = realloc(new_line->string, 935 new_line->string = newp;
|
/src/sys/dev/iscsi/ |
iscsi_rcv.c | 300 uint8_t *newp; local in function:collect_text_data 304 if ((newp = malloc(nlen + 2, M_TEMP, M_WAITOK)) == NULL) { 310 memcpy(newp, req_ccb->ccb_text_data, req_ccb->ccb_text_len); 311 memcpy(&newp[req_ccb->ccb_text_len], pdu->pdu_temp_data, pdu->pdu_temp_data_len); 317 pdu->pdu_temp_data = newp;
|
/src/sys/dev/acpi/ |
acpi_pci_link.c | 1187 void *newp; local in function:acpi_AppendBufferResource 1232 if ((newp = ACPI_ALLOCATE(buf->Length * 2)) == NULL) 1234 memcpy(newp, buf->Pointer, buf->Length); 1235 rp = (ACPI_RESOURCE *)((u_int8_t *)newp + 1238 buf->Pointer = newp;
|
/src/sys/kern/ |
kern_veriexec.c | 143 if (newp != NULL) 174 if (error || newp == NULL) 269 char *newp; local in function:veriexec_fpops_add 274 newp = kmem_zalloc(new_max, KM_SLEEP); 275 strlcpy(newp, veriexec_fp_names, new_max); 277 veriexec_fp_names = newp;
|
/src/sys/dev/wsfont/ |
wsfont.c | 458 u_char *ch, *newch, *p, *newp; local in function:wsfont_rotate_internal 495 newp = newch + 502 newp = newch + 509 *newp = *p; 512 *newp |= bit;
|
/src/sbin/sysctl/ |
sysctl.c | 2512 u_quad_t olim, *newp, nlim; local in function:proc_limit 2523 newp = &nlim; 2538 newp = NULL; 2541 rc = prog_sysctl(name, namelen, &olim, &osz, newp, nsz); 2543 sysctlerror(newp == NULL); 2547 if (newp && qflag) 2552 newp ? DISPLAY_OLD : DISPLAY_VALUE); 2555 newp ? DISPLAY_OLD : DISPLAY_VALUE); 2557 if (newp) { 2631 int o, m, *newp, rc local in function:mode_bits [all...] |
/src/usr.sbin/sysinst/ |
mbr.c | 2186 struct mbr_partition *newp; local in function:mbr_add_part 2271 newp = &m->mbr.mbr_parts[0]; 2324 newp = &new_mbr->mbr.mbr_parts[0]; 2343 newp = &new_mbr->mbr.mbr_parts[0]; 2420 newp = NULL; 2426 newp = &m->mbr.mbr_parts[i]; 2434 if (newp == NULL) 2438 * Now newp points to the modified partition entry but we do not know 2447 if (newp == &m->mbr.mbr_parts[i]) 2460 if (newp == &me->mbr.mbr_parts[j] [all...] |
/src/sys/arch/sparc64/sparc64/ |
pmap.c | 435 paddr_t newp; local in function:pmap_enter_kpage 437 newp = 0UL; 438 while (pseg_set(pmap_kernel(), va, data, newp) & 1) { 439 if (!pmap_get_page(&newp)) { 446 ("pseg_set: pm=%p va=%p data=%lx newp %lx\n", 447 pmap_kernel(), va, (long)data, (long)newp)); 719 paddr_t newp = 0; local in function:pmap_bootstrap 1044 pmap_get_page(&newp); 1045 } while (!newp); 1046 pmap_kernel()->pm_segs=(paddr_t *)(u_long)newp; [all...] |