Searched refs:temp (Results 26 - 50 of 62) sorted by relevance

123

/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/aes/
H A Daes_x86core.c475 u32 temp; local
497 temp = rk[3];
499 (Te4[(temp >> 8) & 0xff] ) ^
500 (Te4[(temp >> 16) & 0xff] << 8) ^
501 (Te4[(temp >> 24) ] << 16) ^
502 (Te4[(temp ) & 0xff] << 24) ^
517 temp = rk[ 5];
519 (Te4[(temp >> 8) & 0xff] ) ^
520 (Te4[(temp >> 16) & 0xff] << 8) ^
521 (Te4[(temp >> 2
576 u32 temp; local
[all...]
/barrelfish-2018-10-04/lib/libc/stdlib/
H A Dradixsort.c133 stack s[SIZE], *sp, *sp0, *sp1, temp; local
204 swap(*sp0, *sp1, temp); /* Play it safe -- biggest bin last. */
232 stack s[512], *sp, *sp0, *sp1, temp; local
285 swap(*sp0, *sp1, temp);
287 for (ak = ta + n, ai = a+n; ak > ta;) /* Copy to temp. */
/barrelfish-2018-10-04/lib/compiler-rt/builtins/
H A Dfp_add_impl.inc54 const rep_t temp = aRep;
56 bRep = temp;
/barrelfish-2018-10-04/lib/skb/
H A Dskb_snprintf.c757 double temp; local
798 temp = ufvalue;
799 my_modf(temp, &intpart);
810 temp = intpart*0.1;
811 my_modf(temp, &intpart);
812 idx = (int) ((temp -intpart +0.05)* 10.0);
813 /* idx = (int) (((double)(temp*0.1) -intpart +0.05) *10.0); */
814 /* printf ("%llf, %f, %x\n", temp, intpart, idx); */
825 temp = fracpart*0.1;
826 my_modf(temp,
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/asm/
H A Dx86-mont.pl114 $temp="mm6";
194 &movd ($temp,&DWP($frame,"esp")); # tp[0]
198 &paddq ($mul1,$temp); # +=tp[0]
208 &movd ($temp,&DWP($frame+4,"esp")); # tp[1]
214 &paddq ($car0,$temp); # +=tp[1]
225 &movd ($temp,&DWP($frame+4,"esp",$j,4));# tp[j+1]
233 &paddq ($car0,$temp); # +=tp[j+1]
252 &movd ($temp,&DWP($frame+4,"esp",$num,4)); # += tp[num]
254 &paddq ($car1,$temp);
/barrelfish-2018-10-04/tools/usbboot/arch/omap4/
H A Dclock.c283 u32 temp; local
284 temp = readl(CM_MEMIF_CLKSTCTRL);
285 temp &= (~3);
286 temp |= 2;
287 writel(temp, CM_MEMIF_CLKSTCTRL);
318 writel(temp|3, CM_MEMIF_CLKSTCTRL);
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Dtrace.c118 sprintf(temp_trace_file,"%s/%d.%d.temp.log",
397 unsigned long long temp; /* just in case unsinged long long > 64 bits */ local
399 temp = hrtime;
400 temp = temp * cycleval / 1000000; /* cycleval is in picoseconds */
401 return((word) temp);
407 double temp; local
408 temp = (hrtime / 1000000000.0);
409 return(temp * cycleval);
H A Delipsys_fd.c204 PrologWord *temp; local
206 Var_Domain(p,temp);
208 return temp;
213 PrologWord *temp; local
215 temp = p;
216 Dereference_(temp);
217 return temp;
1059 Int temp; local
1068 temp = max_ends[index_i] - duration_i;
1069 if (max_start_possible_lasts < temp)
1847 PrologWord *temp; local
2495 PrologWord *temp; local
[all...]
/barrelfish-2018-10-04/lib/usb/class/
H A Dusb_hid.c520 uint32_t temp; local
541 temp = h.loc.position + (h.loc.size * h.loc.count);
543 if (hpos < temp)
544 hpos = temp;
551 temp = 0;
553 temp = hpos - lpos;
557 temp += 8;
562 return ((temp + 7) / 8);
/barrelfish-2018-10-04/usr/acpi/
H A Dvtd_domains.h134 struct vtd_domain *temp = d; local
137 free(temp);
/barrelfish-2018-10-04/lib/x86emu/
H A Ddebug.c174 char temp[100]; local
175 sprintf(temp,x,y);
176 sprintf(M.x86.decoded_buf+M.x86.enc_str_pos,"%s",temp);
177 M.x86.enc_str_pos += strlen(temp);
/barrelfish-2018-10-04/usr/drivers/usb/usb_manager/controller/ohci/
H A Dusb_ohci_root_hub.c158 const void *data = (const void *) hc->root_hub_desc.temp;
245 hc->root_hub_desc.temp[0] = hc->root_hub_config;
351 hc->root_hub_desc.temp[0] = 0;
368 memset(hc->root_hub_desc.temp, 0, 16);
H A Dusb_ohci.h346 uint8_t temp[128]; member in union:usb_ohci_hub_desc
/barrelfish-2018-10-04/tools/molly/
H A Dmolly_init.c241 uint64_t temp = (uint64_t)ptr; local
242 assert(temp < 0x7fffffff);
243 return (uint32_t) temp;
/barrelfish-2018-10-04/usr/drivers/usb/usb_manager/
H A Dusb_xfer.c308 uint16_t temp; local
322 temp = bulk_min[speed];
324 temp = control_min[speed];
326 ptr->fixed[0] = temp;
327 ptr->fixed[1] = temp;
328 ptr->fixed[2] = temp;
329 ptr->fixed[3] = temp;
/barrelfish-2018-10-04/include/vm/
H A Dmemguard.c390 char *temp; local
406 temp = ptr;
408 temp[i] = 'M';
H A Dvm_object.c525 vm_object_t temp; local
619 temp = robject->backing_object;
620 if (object == temp) {
630 temp = robject->backing_object;
631 if (object == temp) {
655 temp = object->backing_object;
656 if (temp != NULL) {
659 VM_OBJECT_WLOCK(temp);
661 temp->shadow_count--;
662 VM_OBJECT_WUNLOCK(temp);
[all...]
/barrelfish-2018-10-04/usr/drivers/solarflair/sfxge/common/
H A Dsiena_nvram.c659 uint16_t temp[4]; local
686 temp[0] = EFX_WORD_FIELD(dcfg->fw_version[partn].version_w,
688 temp[1] = EFX_WORD_FIELD(dcfg->fw_version[partn].version_x,
690 temp[2] = EFX_WORD_FIELD(dcfg->fw_version[partn].version_y,
692 temp[3] = EFX_WORD_FIELD(dcfg->fw_version[partn].version_z,
694 if (memcmp(version, temp, sizeof (temp)) < 0)
695 memcpy(version, temp, sizeof (temp));
/barrelfish-2018-10-04/lib/openssl-1.0.0d/test/
H A Dtestss.com19 $ CAreq2="""req2CA.ss""" ! temp
/barrelfish-2018-10-04/usr/drivers/usb/usb_manager/controller/ehci/
H A Dusb_ehci_root_hub.c181 hc->rh_desc.temp[0] = hc->rh_device_config;
263 hc->rh_desc.temp[0] = 0;
274 memset(hc->rh_desc.temp, 0, 16);
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/lib/
H A Dpeval.pl124 clear_declarations, open(F,read,input_file), open(temp,write,decs_file),
126 compile(temp).
136 open(temp,write,decs_file), writeln(decs_file,"open(dummy)."),
137 close(decs_file), compile(temp).
/barrelfish-2018-10-04/lib/cxx/cxx/
H A Dstrstream.cpp306 off_type temp = epptr() - newpos; local
308 pbump(static_cast<int>((epptr() - pbase()) - temp));
/barrelfish-2018-10-04/lib/cxx/cxxabi/
H A Dcxa_personality.cpp420 const void** temp = reinterpret_cast<const void**>( local
430 const void** ttypePtr = temp++;
458 const uint8_t* temp = classInfo + specIndex; local
463 uint64_t ttypeIndex = readULEB128(&temp);
848 const uint8_t* temp = action; local
849 int64_t actionOffset = readSLEB128(&temp);
/barrelfish-2018-10-04/lib/lua/src/
H A Dlcode.c697 { int temp = e->f; e->f = e->t; e->t = temp; } local
753 int temp; /* exchange args to replace by `<' or `<=' */ local
754 temp = o1; o1 = o2; o2 = temp; /* o1 <==> o2 */
/barrelfish-2018-10-04/lib/mm/
H A Dmm.c614 struct capref temp; local
615 err = mm->slot_alloc(mm->slot_alloc_inst, 1, &temp);
626 err = mm->slot_alloc(mm->slot_alloc_inst, 1, &temp);
633 err = cap_retype(temp, cap, offset, mm->objtype, blockbytes, 1);
639 err = mm_add(mm, temp, blockbits, base);

Completed in 297 milliseconds

123