Searched refs:id (Results 76 - 100 of 2462) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/sys/kern/
H A Dsubr_pcu.c39 * Therefore, only LWP itself can set a CPU for lwp_t::l_pcu_cpu[id].
47 * by the owner LWP. Therefore struct cpu_info::ci_pcu_curlwp[id]
48 * may only be changed by current CPU, and lwp_t::l_pcu_cpu[id] may
82 u_int id; local
92 for (id = 0; id < PCU_UNIT_COUNT; id++) {
93 if ((pcu_inuse & (1 << id)) == 0) {
96 struct cpu_info * const pcu_ci = l->l_pcu_cpu[id];
100 const pcu_ops_t * const pcu = pcu_ops_md_defs[id];
183 const u_int id = pcu->pcu_id; local
204 const u_int id = pcu->pcu_id; local
222 const u_int id = pcu->pcu_id; local
269 const u_int id = pcu->pcu_id; local
323 const u_int id = pcu->pcu_id; local
341 const u_int id = pcu->pcu_id; local
358 const u_int id = pcu->pcu_id; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/lib/uuid/
H A Duuid.c34 int lvid_create(union lvid *lvid, struct id *vgid)
36 memcpy(lvid->id, vgid, sizeof(*lvid->id));
37 return id_create(&lvid->id[1]);
50 int lvid_from_lvnum(union lvid *lvid, struct id *vgid, uint32_t lv_num)
54 memcpy(lvid->id, vgid, sizeof(*lvid->id));
57 lvid->id[1].uuid[i - 1] = _c[lv_num % (sizeof(_c) - 1)];
73 if ((c = strchr(_c, lvid->id[1].uuid[i])))
87 if (lvid->id[
98 id_create(struct id *id) argument
136 id_valid(struct id *id) argument
158 id_write_format(const struct id *id, char *buffer, size_t size) argument
183 id_read_format(struct id *id, const char *buffer) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/30_threads/thread/cons/
H A D2.cc32 free_function(std::thread::id& id) argument
34 id = std::this_thread::get_id();
37 // thread::id default cons
38 // thread::id copy ctor
51 std::thread::id id1;
53 std::thread::id id2 = t.get_id();
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/examples/hello-objc-gnustep/
H A DAppController.h18 - (id)init;
26 - (BOOL)applicationShouldTerminate:(id)sender;
31 - (void)showPrefPanel:(id)sender;
32 - (void)showInfoPanel:(id)sender;
34 - (void)showHelloWindow:(id)sender;
/netbsd-6-1-5-RELEASE/tests/lib/libc/sys/
H A Dt_msgrcv.c65 int id; local
67 if ((id = msgget(MSG_KEY, 0)) != -1)
68 (void)msgctl(id, IPC_RMID, 0);
81 int id; local
83 id = msgget(MSG_KEY, IPC_CREAT | 0600);
84 ATF_REQUIRE(id != -1);
86 (void)msgsnd(id, &msg1, sizeof(struct msg), IPC_NOWAIT);
87 (void)msgrcv(id, &msg2, sizeof(struct msg), MSG_MTYPE_1, IPC_NOWAIT);
93 ATF_REQUIRE(msgctl(id, IPC_RMID, 0) == 0);
110 int id, st local
157 int id, r = 0; local
210 int id; local
247 int id, sta; local
310 int id; local
[all...]
H A Dt_msgctl.c62 int id; local
64 if ((id = msgget(MSG_KEY, 0)) != -1)
65 (void)msgctl(id, IPC_RMID, 0);
79 int id; local
83 id = msgget(MSG_KEY, IPC_CREAT | 0600);
84 ATF_REQUIRE(id != -1);
87 ATF_REQUIRE_ERRNO(EINVAL, msgctl(id, INT_MAX, &msgds) == -1);
90 ATF_REQUIRE_ERRNO(EFAULT, msgctl(id, IPC_STAT, (void *)-1) == -1);
97 ATF_REQUIRE(msgctl(id, IPC_RMID, 0) == 0);
118 int id; local
194 int id, sta; local
258 int id; local
308 int id; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/obj-c++.dg/
H A Disa-field-1.mm10 - (Class) test1: (id)object;
14 - (Class) test2: (id)object;
19 Class test1(id object) {
23 - (Class) test1: (id)object {
32 Class test2(id object) {
36 - (Class) test2: (id)object {
43 Class test3(id object) {
H A Dstubify-1.mm9 typedef struct objc_object { } *id ;
13 extern id objc_msgSend(id self, char * op, ...);
28 ((void (*)(id, char *, int))objc_msgSend)([self class], (char *)contextInfo, 1);
29 ((void (*)(id, char *, int))bogonic)([self class], (char *)contextInfo, 1);
H A Dstubify-2.mm9 typedef struct objc_object { } *id ;
11 extern id objc_msgSend(id self, char * op, ...);
24 ((void (*)(id, char *, int))objc_msgSend)([self class], (char *)contextInfo, 1);
25 ((void (*)(id, char *, int))bogonic)([self class], (char *)contextInfo, 1);
H A Dtry-catch-11.mm21 - (Object *)parm1: (id)p1 parm2: (id<Proto1>)p2;
30 - (Object *)parm1: (id)p1 parm2: (id<Proto1>)p2 {
32 mc2 = p2; /* { dg-warning "type .id <Proto1>. does not conform to the .Proto2. protocol" } */
34 @catch (id exc) {
H A Dcomp-types-11.mm6 - (id)meth1;
7 - (id)meth2:(int)arg;
17 id<Foo> func(void) {
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/objc/execute/
H A Dnil_method-1.m12 - (id) testId;
15 - (id) testIdWithA: (id)a;
18 - (id) testIdWithA: (id)g andB: (id)b;
21 - (id) sum: (int)firstNumber, ...;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/23_containers/list/modifiers/
H A D3.h69 VERIFY(k->id() == 1);
70 VERIFY(k->id() == list0101.front().id());
71 VERIFY(k->id() == list0101.back().id());
76 VERIFY(k->id() == 1);
81 VERIFY(k->id() == 1);
95 VERIFY(i->id() == 2);
96 VERIFY(i->id() == list0101.front().id());
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dreplay.c45 krb5_rcache id,
48 id->name = strdup(name);
49 if(id->name == NULL) {
59 krb5_rcache *id,
62 *id = NULL;
69 *id = calloc(1, sizeof(**id));
70 if(*id == NULL) {
80 krb5_rcache *id,
85 *id
44 krb5_rc_resolve(krb5_context context, krb5_rcache id, const char *name) argument
58 krb5_rc_resolve_type(krb5_context context, krb5_rcache *id, const char *type) argument
79 krb5_rc_resolve_full(krb5_context context, krb5_rcache *id, const char *string_name) argument
117 krb5_rc_default(krb5_context context, krb5_rcache *id) argument
129 krb5_rc_initialize(krb5_context context, krb5_rcache id, krb5_deltat auth_lifespan) argument
151 krb5_rc_recover(krb5_context context, krb5_rcache id) argument
158 krb5_rc_destroy(krb5_context context, krb5_rcache id) argument
174 krb5_rc_close(krb5_context context, krb5_rcache id) argument
202 krb5_rc_store(krb5_context context, krb5_rcache id, krb5_donot_replay *rep) argument
257 krb5_rc_expunge(krb5_context context, krb5_rcache id) argument
264 krb5_rc_get_lifespan(krb5_context context, krb5_rcache id, krb5_deltat *auth_lifespan) argument
282 krb5_rc_get_name(krb5_context context, krb5_rcache id) argument
289 krb5_rc_get_type(krb5_context context, krb5_rcache id) argument
296 krb5_get_server_rcache(krb5_context context, const krb5_data *piece, krb5_rcache *id) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/objc.dg/
H A Dstubify-1.m9 typedef struct objc_object { } *id ;
11 extern id objc_msgSend(id self, char * op, ...);
24 ((void (*)(id, char *, int))objc_msgSend)([self class], (char *)contextInfo, 1);
25 ((void (*)(id, char *, int))bogonic)([self class], (char *)contextInfo, 1);
H A Dstubify-2.m9 typedef struct objc_object { } *id ;
11 extern id objc_msgSend(id self, char * op, ...);
24 ((void (*)(id, char *, int))objc_msgSend)([self class], (char *)contextInfo, 1);
25 ((void (*)(id, char *, int))bogonic)([self class], (char *)contextInfo, 1);
H A Dtry-catch-10.m21 - (Object *)parm1: (id)p1 parm2: (id<Proto1>)p2;
30 - (Object *)parm1: (id)p1 parm2: (id<Proto1>)p2 {
32 mc2 = p2; /* { dg-warning "type .id <Proto1>. does not conform to the .Proto2. protocol" } */
34 @catch (id exc) {
H A Dcomp-types-10.m6 - (id)meth1;
7 - (id)meth2:(int)arg;
17 id<Foo> func(void) {
H A Dmethod-11.m5 when sending messages to 'id'. */
16 - (id)initWithData:(Object1 *)data;
20 - (id)initWithData:(Object2 *)data;
24 id obj1, obj2 = 0;
28 /* { dg-message "also found .\\-\\(id\\)initWithData:\\(Object1 \\*\\)data." "" { target *-*-* } 16 } */
29 /* { dg-message "also found .\\-\\(id\\)initWithData:\\(Object2 \\*\\)data." "" { target *-*-* } 20 } */
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp4246.C2 // prms-id: 4246
12 virtual void id() { } function in class:A
20 virtual void id() { } function in class:B
28 void id() { abort(); } function in class:C
36 void id() { } function in class:D
42 ((B*)dp2)->id();
46 bp1->id();
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp4246.C2 // prms-id: 4246
12 virtual void id() { } function in class:A
20 virtual void id() { } function in class:B
28 void id() { abort(); } function in class:C
36 void id() { } function in class:D
42 ((B*)dp2)->id();
46 bp1->id();
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
H A Dnon-stop.c39 void break_at_me (int id, int i) argument
46 int id = *(int *)arg; local
59 if (exit_first_thread && id == 0)
62 break_at_me (id, i);
67 create_thread (int id) argument
72 *id2 = id;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/sh/
H A Dsh-c.c38 tree id = get_identifier (attr); local
42 tree_cons (id, NULL_TREE, NULL_TREE), 0);
46 = tree_cons (id, NULL_TREE, *sh_deferred_function_attributes_tail);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Duninit-1-O0.c9 int id; member in struct:list
21 if (q->id == p->id)
H A Duninit-1.c9 int id; member in struct:list
21 if (q->id == p->id)

Completed in 228 milliseconds

1234567891011>>