Searched refs:val (Results 176 - 200 of 424) sorted by relevance

1234567891011>>

/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dgc_stacks.c200 (ref)->val.all = (target)->tag.all;\
206 (ref)->val.all = (target)->tag.all;\
298 p_gc_interval(value val, type tag) argument
302 Return_Unify_Integer(val, tag, TG_SEG * sizeof(pword));
312 if (val.nint < sizeof(pword))
314 TG_SEG = val.nint / sizeof(pword);
332 result.val.nint = collections_;
338 result.val.nint = average_area_ * sizeof(pword);
349 result.val.nint = (char *) TG -
353 result.val
[all...]
H A Dmanual_examples.c64 dim = (uword *) p->val.ptr;
72 Write(p->val, p->tag, Current_Output);
120 did1 = val1.ptr->val.did;
126 p[0].val.did = Did(DidName(did1), arity + 1);
131 p[i].val.all = val1.ptr[i].val.all;
138 p[arity + 1].val.ptr = p + (arity + 1);
184 Remember(2, p->val, p->tag);
190 vlist.ptr->val, vlist.ptr->tag);
H A Dread.c355 pd->prev_token.string = TempAlloc(pd->string_store, pd->token.term.val.nint + 1); \
356 Copy_Bytes(pd->prev_token.string, pd->token.string, pd->token.term.val.nint + 1); \
363 pd->next_token.string = TempAlloc(pd->string_store, pd->token.term.val.nint + 1); \
364 Copy_Bytes(pd->next_token.string, pd->token.string, pd->token.term.val.nint + 1); \
369 #define IsChar(pd,char) ((pd)->token.term.val.nint == (char))
376 (pd->token.term.val.nint)
389 pd->token.term.val.nint = (l); \
484 if (IsRef((from)->tag) && (from)->val.ptr == (from)) { \
485 (to)->val.ptr = (to); \
487 (to)->val
2068 transf_meta_out(value val, type tag, pword *top, dident mod, pword *presult) argument
[all...]
H A Dproperty.c204 pm = (module_item *) (get_property(module, MODULE_PROP))->val.ptr;
344 pm = (module_item *) (get_property(module, MODULE_PROP))->val.ptr;
458 ec_ref_destroy((ec_ref) prop_value->val.wptr);
459 prop_value->val.wptr = NULL;
463 prop_value->val.nint == (GlobalVarIndex - 1))
480 heap_rec_header_tid.free((t_ext_ptr)prop_value->val.wptr);
487 heap_htable_tid.free((t_ext_ptr)prop_value->val.wptr);
494 heap_array_tid.free((t_ext_ptr)prop_value->val.wptr);
505 hg_free((generic_ptr)prop_value->val.ptr);
553 heap_htable_tid.mark_dids((t_ext_ptr)p->property_value.val
[all...]
H A Dbip_bag.c83 pword *pw = cdr.val.ptr;
120 pw = pw[1].val.ptr;
174 Return_Unify_Pw(vbag, tbag, bag.val, bag.tag);
192 Make_List(obj->list[0].val.ptr + 1, pw);
193 obj->list[0].val.ptr = pw;
212 pw = pw->val.ptr;
221 Return_Unify_Pw(vl, tl, list.val, list.tag);
H A Dbip_heapevents.c162 if (pw->val.did == d_defers0_)
168 vopt.ptr = vopt.ptr->val.ptr;
183 event->module.val = vmodule;
190 res = Unify_Pw(vhandle, thandle, hevent.val, hevent.tag);
217 return p_event_create4(vevent, tevent, opt.val, opt.tag, vhandle, thandle, vmodule, tmodule);
235 Request_Unify_Pw(vgoal, tgoal, goal.val, goal.tag);
241 Request_Unify_Pw(vmodule, tmodule, event->module.val, event->module.tag);
/barrelfish-master/lib/libc/gen/
H A Darc4random.c207 u_int32_t val; local
208 val = arc4_getbyte() << 24;
209 val |= arc4_getbyte() << 16;
210 val |= arc4_getbyte() << 8;
211 val |= arc4_getbyte();
212 return val;
236 u_int32_t val; local
240 val = arc4_getword();
242 return val;
H A Dsem.c342 #define TIMESPEC_SUB(dst, src, val) \
344 (dst)->tv_sec = (src)->tv_sec - (val)->tv_sec; \
345 (dst)->tv_nsec = (src)->tv_nsec - (val)->tv_nsec; \
367 int val, retval; local
382 while ((val = (*sem)->count) > 0) {
383 if (atomic_cmpset_acq_int(&(*sem)->count, val, val - 1))
416 int val; local
424 while ((val = (*sem)->count) > 0) {
425 if (atomic_cmpset_acq_int(&(*sem)->count, val, va
[all...]
/barrelfish-master/include/sys/
H A D_semaphore.h49 int ksem_getvalue(semid_t id, int *val);
H A Dimgact_elf.h38 #define AUXARGS_ENTRY(pos, id, val) {suword(pos++, id); suword(pos++, val);}
H A Dsem.h70 int val; /* value for SETVAL */ member in union:semun_old
80 int val; /* value for SETVAL */ member in union:semun
93 #define SETVAL 8 /* Set the value of semval to arg.val {ALTER} */
/barrelfish-master/usr/eclipseclp/icparc_solvers/ilog/
H A Dilog.cc125 IlcInt min = ec_arg(3).val.nint;
126 IlcInt max = ec_arg(4).val.nint;
272 Assert(v.getValue() == ec_arg(3).val.nint, "c_ilog_set_value");
275 return ilog_call(v == ec_arg(3).val.nint, ec_arg(1).val.ptr);
292 return ilog_call(x == y, ec_arg(1).val.ptr);
304 return ilog_call(ec2il_cstr(EC_arg(2)), ec_arg(1).val.ptr);
323 ReturnTryPushTrailCatchPop(v.setValue(v.getMin()), ec_arg(1).val.ptr);
337 ReturnTryPushTrailCatchPop(v.setMin(v.getMin()+1), ec_arg(1).val.ptr);
/barrelfish-master/kernel/arch/x86_64/
H A Dgdb_arch.c273 int gdb_arch_write_byte(uint8_t *addr, uint8_t val) argument
280 *addr = val;
287 int gdb_arch_read_byte(uint8_t *addr, uint8_t *val) argument
294 *val = *addr;
/barrelfish-master/lib/lua/src/
H A Dlvm.h34 StkId val);
36 StkId val);
/barrelfish-master/lib/zlib/
H A Dinffast.c134 Tracevv((stderr, this.val >= 0x20 && this.val < 0x7f ?
136 "inflate: literal 0x%02x\n", this.val));
137 PUP(out) = (unsigned char)(this.val);
140 len = (unsigned)(this.val);
165 dist = (unsigned)(this.val);
262 this = dcode[this.val + (hold & ((1U << op) - 1))];
272 this = lcode[this.val + (hold & ((1U << op) - 1))];
/barrelfish-master/tools/usbboot/arch/omap4/
H A Dserial.c49 #define WR(val, addr) writeb(val, cfg_uart_base + OFF_##addr)
/barrelfish-master/include/netinet/
H A Dip6.h300 * The pointer to the region will be returned to pointer variable "val",
307 #define IP6_EXTHDR_GET(val, typ, m, off, len) \
312 (val) = (typ)(mtod((m), caddr_t) + (off)); \
318 (val) = (typ)(mtod(t, caddr_t) + tmp); \
320 (val) = (typ)NULL; \
326 #define IP6_EXTHDR_GET0(val, typ, m, off, len) \
330 (val) = (typ)mtod(m, caddr_t); \
336 (val) = (typ)mtod(t, caddr_t); \
338 (val) = (typ)NULL; \
/barrelfish-master/usr/tests/cxx/
H A Dcxx11.cpp55 for(auto val : kvp.second)
57 std::cout << " " << val << std::endl;
/barrelfish-master/usr/eclipseclp/Alog/src/
H A Dmergelogs.c405 int val; local
445 val = entry->proc_id;
449 if ( p[j] == val )
455 p[(*ptot)++] = val;
460 val = entry->task_id;
464 if ( t[j] == val )
470 t[(*ttot)++] = val;
475 val = entry->event;
479 if ( e[j] == val )
485 e[(*etot)++] = val;
[all...]
/barrelfish-master/lib/libc/db/hash/
H A Dhash_page.c96 putpair(char *p, const DBT *key, const DBT *val) argument
110 off -= val->size;
111 memmove(p + off, val->data, val->size);
188 DBT key, val; local
236 val.data = (u_char *)op + ino[n + 1];
237 val.size = ino[n] - ino[n + 1];
238 putpair(np, &key, &val);
290 DBT key, val; local
352 val
398 __addel(HTAB *hashp, BUFHEAD *bufp, const DBT *key, const DBT *val) argument
877 squeeze_key(u_int16_t *sp, const DBT *key, const DBT *val) argument
[all...]
H A Dhash_bigkey.c86 __big_insert(HTAB *hashp, BUFHEAD *bufp, const DBT *key, const DBT *val) argument
99 val_data = (char *)val->data;
100 val_size = val->size;
131 if (space == val_size && val_size == val->size)
159 if (space == val_size && val_size == val->size)
359 __big_return(HTAB *hashp, BUFHEAD *bufp, int ndx, DBT *val, int set_current) argument
404 val->data = (u_char *)tp + off;
405 val->size = bp[1] - off;
428 val->size = (size_t)collect_data(hashp, bufp, (int)len, set_current);
429 if (val
498 __big_keydata(HTAB *hashp, BUFHEAD *bufp, DBT *key, DBT *val, int set) argument
512 collect_key(HTAB *hashp, BUFHEAD *bufp, int len, DBT *val, int set) argument
561 DBT key, val; local
[all...]
/barrelfish-master/kernel/include/arch/x86_64/
H A Dvmx_vmkit.h69 #define DWORD_MS(val) ((val >> 32) & 0xFFFFFFFF)
70 #define DWORD_LS(val) (val & 0xFFFFFFFF)
189 static inline void wr_ldtr(uint16_t val) argument
191 __asm volatile("lldt %[val]" :: [val] "m" (val) : "memory");
/barrelfish-master/lib/bfdmuxtools/
H A Dcodegen.c275 //uint64_t val = (long long int)strtol(endptr + from_pos, &endptr, 10);
276 uintmax_t val = strtoumax(expr + from_pos, &endptr, 0); local
278 if ((val != -1) && (endptr == expr + to_pos + 1)) { // ensures
282 msb = find_msb(val); // Determine size of operand
288 (*out)[*out_len] = (uint8_t) val;
295 *((uint16_t *) & ((*out)[*out_len])) = (uint16_t) val;
302 *((uint32_t *) & ((*out)[*out_len])) = (uint32_t) val;
309 *((uint64_t *) & ((*out)[*out_len])) = val;
/barrelfish-master/lib/openssl-1.0.0d/crypto/asn1/
H A Dx_name.c69 static int x509_name_ex_d2i(ASN1_VALUE **val,
74 static int x509_name_ex_i2d(ASN1_VALUE **val, unsigned char **out,
76 static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it);
77 static void x509_name_ex_free(ASN1_VALUE **val, const ASN1_ITEM *it);
132 static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it) argument
143 *val = (ASN1_VALUE *)ret;
172 static int x509_name_ex_d2i(ASN1_VALUE **val, argument
192 if(*val) x509_name_ex_free(val, NULL);
214 *val
222 x509_name_ex_i2d(ASN1_VALUE **val, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass) argument
[all...]
/barrelfish-master/usr/tests/ata_rw28_test/
H A Data_rw28_test.c61 uint32_t val = *(uint32_t*)(buf+i*step); local
62 if (val != pat)
66 i*step, val, pat);

Completed in 211 milliseconds

1234567891011>>