| /src/lib/libtelnet/ |
| getent.c | 44 static char *area; variable 58 return((cgetent(&area, dba, name) == 0) ? 1 : 0); 71 return((cgetstr(area, id, &answer) > 0) ? answer : 0);
|
| /src/games/trek/ |
| dumpgame.c | 51 char *area; member in struct:dump 98 for (d = Dump_template; d->area; d++) { 99 write(fd, &d->area, sizeof d->area); 101 write(fd, d->area, i); 159 for (d = Dump_template; d->area; d++) { 162 if ((char *)junk != d->area) 165 if (read(fd, d->area, i) != i)
|
| /src/lib/libc/rpc/ |
| svc_auth_unix.c | 73 struct area { struct 77 } *area; local 84 area = (struct area *) rqst->rq_clntcred; 85 aup = &area->area_aup; 86 aup->aup_machname = area->area_machname; 87 aup->aup_gids = area->area_gids;
|
| /src/external/mit/libuv/dist/src/unix/ |
| haiku.c | 93 area_info area; local 104 while (get_next_area_info(thread.team, &cookie, &area) == B_OK) 105 *rss += area.ram_size;
|
| /src/games/hack/ |
| hack.mkshop.c | 357 int area = (sroom->hx - sroom->lx) * (sroom->hy - sroom->ly); local 358 return (area > 20);
|
| /src/external/gpl2/lvm2/dist/lib/format_text/ |
| layout.h | 47 /* NULL-terminated list of metadata area headers */ 66 uint64_t size; /* Size of metadata area */ 79 struct device_area area; member in struct:mda_context
|
| format-text.c | 97 return mdac->area.size >> SECTOR_SHIFT; 101 * Check if metadata area belongs to vg 110 if (pvl->pv->dev == mdac->area.dev) 119 * This allows reverse traversal through text metadata area to find old 139 * Analyze a metadata area for old metadata records in the circular buffer. 142 * FIXME: do something with each metadata area (try to extract vg, write 160 struct device_area *area; local 166 log_print("Found text metadata area: offset=%" PRIu64 ", size=%" 167 PRIu64, mdac->area.start, mdac->area.size) [all...] |
| /src/lib/libnvmm/ |
| libnvmm.c | 96 area_t *area; local 111 area = malloc(sizeof(*area)); 112 if (area == NULL) 114 area->gpa = gpa; 115 area->hva = hva; 116 area->size = size; 117 area->prot = nprot; 119 LIST_INSERT_HEAD(areas, area, list);
|
| /src/sys/arch/arm/sunxi/ |
| sunxi_sramc.c | 100 const struct sunxi_sramc_area *area; member in struct:sunxi_sramc_node 133 node->area = dce->data; 135 aprint_verbose_dev(sc->sc_dev, "area: %s\n", 136 node->area->desc); 256 if (config > __SHIFTOUT_MASK(node->area->mask)) 258 if ((node->area->flags & SUNXI_SRAMC_F_SWAP) != 0) 260 val = SRAMC_READ(sc, node->area->reg); 261 val &= ~node->area->mask; 262 val |= __SHIFTIN(config, node->area->mask); 263 SRAMC_WRITE(sc, node->area->reg, val) [all...] |
| /src/sys/arch/x86/x86/ |
| fpu.c | 167 union savefpu *area = pcb->pcb_savefpu; local 175 return area; 182 union savefpu *area = pcb->pcb_savefpu; local 188 fpu_area_save(area, x86_xsave_features, !(l->l_proc->p_flag & PK_32)); 296 /* Fill in the FPU area */ 377 fpu_area_save(void *area, uint64_t xsave_features, bool is_64bit) 381 fnsave(area); 384 XS64(fxsave)(area); 387 XS64(xsave)(area, xsave_features); 390 XS64(xsaveopt)(area, xsave_features) [all...] |
| /src/sys/external/bsd/drm2/dist/drm/qxl/ |
| qxl_ioctl.c | 314 struct qxl_rect area = {.left = update_area->left, local 348 DRM_ERROR("got update area for surface with no id %d\n", update_area->handle); 349 ret = qxl_io_update_area(qdev, qobj, &area);
|
| /src/external/bsd/nvi/dist/motif_l/ |
| m_motif.h | 55 area, /* text goes here */ member in struct:__anon7601
|
| /src/external/mit/xorg/lib/libxcb/files/ |
| damage.h | 166 xcb_rectangle_t area; member in struct:xcb_damage_notify_event_t 273 * the extraneous area included. A reasonable goal is for each primitive 275 * rectangle and for the damage area of the operation to be the union of these 319 * the extraneous area included. A reasonable goal is for each primitive 321 * rectangle and for the damage area of the operation to be the union of these
|
| /src/sys/arch/x86/include/ |
| cpufunc.h | 391 uint8_t *area = addr; local 394 "fnsave %[area]" 395 : [area] "=m" (*area) 404 const uint8_t *area = addr; local 407 "frstor %[area]" 409 : [area] "m" (*area) 417 uint8_t *area = addr; local 420 "fxsave %[area]" 430 const uint8_t *area = addr; local 443 uint8_t *area = addr; local 459 uint8_t *area = addr; local 475 const uint8_t *area = addr; local 492 uint8_t *area = addr; local 505 const uint8_t *area = addr; local 518 uint8_t *area = addr; local 534 uint8_t *area = addr; local 550 const uint8_t *area = addr; local [all...] |
| pmap_private.h | 107 bool active; /* area is active */ 108 } area[SLSPACE_NAREAS]; member in struct:slotspace
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gem/ |
| i915_gem_mman.c | 312 struct vm_area_struct *area = vmf->vma; local 313 struct i915_mmap_offset *mmo = area->vm_private_data; 319 bool write = area->vm_flags & VM_WRITE; 386 err = remap_io_sg(area, 387 area->vm_start, area->vm_end - area->vm_start, 412 struct vm_area_struct *area = vmf->vma; local 413 struct i915_mmap_offset *mmo = area->vm_private_data; 423 bool write = area->vm_flags & VM_WRITE [all...] |
| /src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/ |
| i915_gem_mman.c | 845 struct vm_area_struct *area; local 868 area = find_vma(current->mm, addr); 869 if (!area) { 876 if (area->vm_private_data != mmo) {
|
| /src/sys/arch/hpcmips/stand/pbsdboot/ |
| disptest.c | 43 static struct area { struct
|
| /src/external/gpl2/lvm2/dist/lib/metadata/ |
| mirror.c | 148 * to simply swap it for the last area in the array. This would have 168 struct lv_segment_area area; local 176 area = mirrored_seg->areas[mimage]; 183 mirrored_seg->areas[i-1] = area; 650 /* Mirror with only 1 area is 'in sync'. */
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| s390-linux-nat.c | 501 The only thing we actually need is the total address space area 741 for (const auto &area : state->watch_areas) 743 watch_lo_addr = std::min (watch_lo_addr, area.lo_addr); 744 watch_hi_addr = std::max (watch_hi_addr, area.hi_addr); 761 for (const auto &area : state->break_areas) 763 watch_lo_addr = std::min (watch_lo_addr, area.lo_addr); 764 watch_hi_addr = std::max (watch_hi_addr, area.hi_addr); 769 Otherwise stop after any instruction within the PER area and 776 /* The PER area must include the instruction before the 851 watch_area area; local 873 watch_area &area = state->watch_areas[ix]; local 903 watch_area area; local 926 watch_area &area = state->break_areas[ix]; local [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| s390-linux-nat.c | 501 The only thing we actually need is the total address space area 741 for (const auto &area : state->watch_areas) 743 watch_lo_addr = std::min (watch_lo_addr, area.lo_addr); 744 watch_hi_addr = std::max (watch_hi_addr, area.hi_addr); 761 for (const auto &area : state->break_areas) 763 watch_lo_addr = std::min (watch_lo_addr, area.lo_addr); 764 watch_hi_addr = std::max (watch_hi_addr, area.hi_addr); 769 Otherwise stop after any instruction within the PER area and 776 /* The PER area must include the instruction before the 851 watch_area area; local 873 watch_area &area = state->watch_areas[ix]; local 903 watch_area area; local 926 watch_area &area = state->break_areas[ix]; local [all...] |
| /src/external/bsd/libpcap/dist/ |
| nametoaddr.c | 668 u_int node, area; local 670 if (sscanf(s, "%d.%d", &area, &node) != 2) 673 *addr = (area << AREASHIFT) & AREAMASK;
|
| /src/bin/ksh/ |
| table.h | 8 Area *areap; /* area to allocate entries */ 17 Area *areap; /* area to allocate from */ 109 Area area; /* area to allocate things */ member in struct:block
|
| /src/lib/libedit/ |
| terminal.c | 841 char *area; local 850 area = buf; 896 &area)); 1459 char *area; local 1465 area = buf; 1524 scap = tgetstr(ct_encode_string(*argv, &el->el_scratch), &area);
|
| /src/sys/arch/hpcsh/dev/hd64461/ |
| hd64461pcmcia.c | 228 * Workaround for SH-3 PCMCIA bug on area 6: 231 * byte-access to area 6 becomes word-access if preceding access is 233 * Area 5 is not affected by this bug. 236 * before any byte-access to area 6 (channel 0). 398 * Continuous 16-MB Area Mode 665 *offsetp = ofs + 0x01000000; /* skip attribute area */ 821 /* set Continuous 16-MB Area Mode */ 826 * set Common memory area. 1084 unsigned int area, buswidth; local 1088 area = BCR2_AREA6_SHIFT [all...] |