HomeSort by: relevance | last modified time | path
    Searched defs:entry (Results 1 - 25 of 320) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bios/
nouveau_nvkm_subdev_bios_bit.c 37 u32 entry = bios->bit_offset + 12; local in function:bit_entry
39 if (nvbios_rd08(bios, entry + 0) == id) {
40 bit->id = nvbios_rd08(bios, entry + 0);
41 bit->version = nvbios_rd08(bios, entry + 1);
42 bit->length = nvbios_rd16(bios, entry + 2);
43 bit->offset = nvbios_rd16(bios, entry + 4);
47 entry += nvbios_rd08(bios, bios->bit_offset + 9);
  /src/bin/setfacl/
mask.c 51 acl_entry_t entry; local in function:set_acl_mask
56 entry = NULL;
59 * ... if a mask entry is specified, then the permissions of the mask
60 * entry in the resulting ACL shall be set to the permissions in the
61 * specified ACL mask entry.
72 * If no mask entry is specified and the -n option is not
74 * entry shall be set to the union of the permissions
85 * If no mask entry is specified and the -n option is
87 * mask entry shall remain unchanged ...
92 while (acl_get_entry(acl, entry_id, &entry) == 1)
    [all...]
remove.c 52 acl_entry_t entry; local in function:remove_acl
64 "entry to be removed is %s", filename,
77 /* find and delete the entry */
79 while (acl_get_entry(acl, entry_id, &entry) == 1) {
81 if (acl_get_tag_type(entry, &tag) == -1)
85 if (acl_delete_entry(acl_new, entry) == -1) {
87 warnx("%s: cannot remove non-existent ACL entry",
104 acl_entry_t entry; local in function:remove_by_number
119 * Find out whether we're removing the mask entry,
126 while (acl_get_entry(acl_new, entry_id, &entry) == 1)
    [all...]
  /src/usr.bin/mklocale/
yacc.y 135 table : entry
136 | table entry
139 entry : ENCODING STRING label
  /src/sys/arch/i386/stand/lib/
bootinfo.h 33 uint32_t entry[1]; member in struct:bootinfo
  /src/sys/arch/landisk/stand/boot/
bootinfo.h 36 u_long entry[1]; member in struct:btinfo
  /src/sys/arch/mvme68k/stand/libsa/
exec_mvme.c 52 kentry_t entry; local in function:exec_mvme
73 entry = (kentry_t)marks[MARK_ENTRY];
75 (*entry)(flag, bugargs.ctrl_addr, bugargs.ctrl_lun, bugargs.dev_lun,
  /src/sys/arch/mvmeppc/stand/libsa/
exec_mvme.c 82 kentry_t entry; local in function:exec_mvme
105 entry = (kentry_t) marks[MARK_ENTRY];
107 (*entry)(marks[MARK_SYM], marks[MARK_END], &bootinfo);
  /src/lib/libc/stdlib/
cxa_thread_atexit.c 53 struct cxa_dtor *entry; local in function:__cxa_thread_run_atexit
55 while ((entry = SLIST_FIRST(&cxa_dtors)) != NULL) {
57 (*entry->dtor)(entry->obj);
58 if (entry->dso_symbol)
59 __dl_cxa_refcount(entry->dso_symbol, -1);
60 free(entry);
74 struct cxa_dtor *entry; local in function:__cxa_thread_atexit_impl
78 entry = malloc(sizeof(*entry));
    [all...]
  /src/sys/arch/ia64/stand/ia64/ski/
sal_stub.c 48 struct sal_entrypoint_descriptor entry; member in struct:__anon2071fd3b0108
121 sal_systab.entry.sale_pal_proc = fd->func;
123 sal_systab.entry.sale_sal_proc = fd->func;
124 sal_systab.entry.sale_sal_gp = fd->gp;
  /src/sys/arch/sun68k/stand/tapeboot/
boot.c 61 void *entry; local in function:main
119 entry = (void *)marks[MARK_ENTRY];
122 entry = sun2_map_mem_run(entry);
124 printf("Starting program at 0x%x\n", (u_int)entry);
125 chain_to(entry);
  /src/sys/arch/zaurus/stand/zboot/
bootinfo.h 36 u_long entry[1]; member in struct:btinfo
  /src/sys/external/bsd/drm2/dist/drm/ttm/
ttm_execbuf_util.c 42 struct ttm_validate_buffer *entry)
44 list_for_each_entry_continue_reverse(entry, list, head) {
45 struct ttm_buffer_object *bo = entry->bo;
54 struct ttm_validate_buffer *entry; local in function:ttm_eu_backoff_reservation
60 list_for_each_entry(entry, list, head) {
61 struct ttm_buffer_object *bo = entry->bo;
89 struct ttm_validate_buffer *entry; local in function:ttm_eu_reserve_buffers
98 list_for_each_entry(entry, list, head) {
99 struct ttm_buffer_object *bo = entry->bo;
103 struct ttm_validate_buffer *safe = entry;
165 struct ttm_validate_buffer *entry; local in function:ttm_eu_fence_buffer_objects
    [all...]
  /src/sys/uvm/
uvm_fault.h 49 struct vm_map_entry *entry; /* map entry (from 'map') */ member in struct:uvm_faultinfo
  /src/sys/arch/ia64/ia64/
pal.S 42 ENTRY(ia64_call_pal_static, 4)
46 entry = loc1 define
55 movl entry=@gprel(ia64_pal_entry)
58 add entry=entry,gp
62 ld8 entry=[entry] // read entry point
67 mov b6=entry
89 ENTRY(ia64_call_pal_static_physical, 4
93 entry = loc1 define
144 entry = loc0 define
187 entry = loc0 define
    [all...]
  /src/tests/include/sys/
t_list.c 52 LIST_HEAD(listhead, entry) old_head, new_head, old_copy;
53 struct entry { struct in function:ATF_TC_BODY
54 LIST_ENTRY(entry) entries;
60 n1 = malloc(sizeof(struct entry));
64 n2 = malloc(sizeof(struct entry));
  /src/sbin/gpt/
set.c 73 unsigned int entry = 0; local in function:cmd_set
89 if (gpt == NULL || gpt_uint_get(gpt, &entry) == -1)
110 entry = m->map_index;
118 return gpt_attr_update(gpt, entry, attributes, clear);
unset.c 73 unsigned int entry = 0; local in function:cmd_unset
89 if (gpt == NULL || gpt_uint_get(gpt, &entry) == -1)
107 entry = m->map_index;
115 return gpt_attr_update(gpt, entry, 0, attributes);
  /src/lib/libc/posix1e/
acl_strip.c 68 acl_entry_t entry, entry_new; local in function:_posix1e_acl_strip_np
90 while (acl_get_entry(acl_old, entry_id, &entry) == 1) {
93 assert(_entry_brand(entry) == ACL_BRAND_POSIX);
95 if (acl_get_tag_type(entry, &tag) == -1)
104 if (acl_copy_entry(entry_new, entry) == -1)
  /src/sbin/cgdconfig/
cgdparse.y 60 %type <params> entry rules rule
80 entry: rules { yy_global_params = $$; } label
  /src/sys/arch/alpha/stand/common/
boot.c 84 u_int64_t entry; local in function:main
143 entry = marks[MARK_ENTRY];
165 (void)printf("Entering %s at 0x%lx...\n", name, entry);
168 u_int64_t))entry)(ffp_save, ptbr_save, BOOTINFO_MAGIC,
  /src/sys/arch/emips/stand/common/
bootxx.c 85 entrypt *entry; local in function:main
91 entry = loadfile(cp, "netbsd");
92 if ((int)entry != -1)
96 entry = loadfile(cp, "/boot");
97 if ((int)entry != -1)
103 entry(argc, argv, code, cv, bim, bip);
109 * Open 'filename', read in program and return the entry point or -1 if error.
  /src/sys/arch/evbmips/stand/sbmips/common/
boot.c 82 u_int32_t entry; local in function:main
136 entry = marks[MARK_ENTRY];
142 (void)printf("Entering %s at 0x%lx...\n", name, (long)entry);
156 (*(void (*)(long,long,long,long))entry)(fwhandle,
  /src/sys/arch/hpc/stand/hpcboot/
framebuffer.cpp 46 platid_mask_t target, entry; local in function:FrameBufferInfo::FrameBufferInfo
58 entry.dw.dw0 = tab->cpu;
59 entry.dw.dw1 = tab->machine;
60 if (platid_match(&target, &entry)) {
  /src/sys/arch/hpc/stand/hpcboot/sh3/
sh_console.cpp 54 platid_mask_t target, entry; local in function:SHConsole::selectBootConsole
61 entry.dw.dw0 = tab->cpu;
62 entry.dw.dw1 = tab->machine;
63 if (platid_match(&target, &entry)) {

Completed in 29 milliseconds

1 2 3 4 5 6 7 8 91011>>