Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 25 of 31) sorted by relevance

12

/xen-4.10.0-shim-comet/xen/common/xz/
A Ddec_stream.c166 if (s->temp.pos == s->temp.size) { in fill_temp()
477 if (dec_vli(s, s->temp.buf, &s->temp.pos, s->temp.size) in dec_block_header()
488 if (dec_vli(s, s->temp.buf, &s->temp.pos, s->temp.size) in dec_block_header()
501 if (s->temp.size - s->temp.pos < 2) in dec_block_header()
512 if (s->temp.buf[s->temp.pos++] != 0x00) in dec_block_header()
518 if (s->temp.size - s->temp.pos < 2) in dec_block_header()
522 if (s->temp.buf[s->temp.pos++] != 0x21) in dec_block_header()
526 if (s->temp.buf[s->temp.pos++] != 0x01) in dec_block_header()
530 if (s->temp.size - s->temp.pos < 1) in dec_block_header()
538 while (s->temp.pos < s->temp.size) in dec_block_header()
[all …]
A Ddec_bcj.c75 } temp; member
408 s->temp.size -= copy_size; in bcj_flush()
409 memmove(s->temp.buf, s->temp.buf + copy_size, s->temp.size); in bcj_flush()
449 if (s->temp.size < b->out_size - b->out_pos || s->temp.size == 0) { in xz_dec_bcj_run()
451 memcpy(b->out + b->out_pos, s->temp.buf, s->temp.size); in xz_dec_bcj_run()
471 memcpy(s->temp.buf, b->out + b->out_pos, s->temp.size); in xz_dec_bcj_run()
495 b->out = s->temp.buf; in xz_dec_bcj_run()
509 bcj_apply(s, s->temp.buf, &s->temp.filtered, s->temp.size); in xz_dec_bcj_run()
517 s->temp.filtered = s->temp.size; in xz_dec_bcj_run()
568 s->temp.filtered = 0; in xz_dec_bcj_reset()
[all …]
A Ddec_lzma2.c275 } temp; member
859 memcpy(s->temp.buf + s->temp.size, b->in + b->in_pos, tmp); in lzma2_lzma()
862 memzero(s->temp.buf + s->temp.size + tmp, in lzma2_lzma()
863 sizeof(s->temp.buf) in lzma2_lzma()
867 s->temp.size += tmp; in lzma2_lzma()
874 s->rc.in = s->temp.buf; in lzma2_lzma()
884 memmove(s->temp.buf, s->temp.buf + s->rc.in_pos, in lzma2_lzma()
885 s->temp.size); in lzma2_lzma()
890 s->temp.size = 0; in lzma2_lzma()
1088 && s->temp.size in xz_dec_lzma2_run()
[all …]
/xen-4.10.0-shim-comet/tools/firmware/vgabios/
A Ddataseghack7 $1 > temp.awk.1
13 $1 > temp.awk.2
19 $1 > temp.awk.3
22 cat temp.awk.1 temp.awk.2 temp.awk.3 | sed -e 's/^\.data//' -e 's/^\.bss//' -e 's/^\.text//' > $1
23 /bin/rm -f temp.awk.1 temp.awk.2 temp.awk.3 $1.orig
A DMakefile25temp.awk.* vgabios*.orig _vgabios_* _vgabios-debug_* core vgabios*.bin vgabios*.txt $(RELEASE).bin…
/xen-4.10.0-shim-comet/tools/tests/x86_emulator/
A Dblowfish.c335 uint32_t temp; in Blowfish_Encrypt() local
345 temp = Xl; in Blowfish_Encrypt()
347 Xr = temp; in Blowfish_Encrypt()
350 temp = Xl; in Blowfish_Encrypt()
352 Xr = temp; in Blowfish_Encrypt()
365 uint32_t temp; in Blowfish_Decrypt() local
376 temp = Xl; in Blowfish_Decrypt()
378 Xr = temp; in Blowfish_Decrypt()
382 temp = Xl; in Blowfish_Decrypt()
384 Xr = temp; in Blowfish_Decrypt()
/xen-4.10.0-shim-comet/xen/crypto/
A Drijndael.c733 u32 temp; in rijndaelKeySetupEnc() local
741 temp = rk[3]; in rijndaelKeySetupEnc()
761 temp = rk[ 5]; in rijndaelKeySetupEnc()
783 temp = rk[ 7]; in rijndaelKeySetupEnc()
796 temp = rk[11]; in rijndaelKeySetupEnc()
801 (Te4[(temp ) & 0xff] & 0x000000ff); in rijndaelKeySetupEnc()
822 u32 temp; in rijndaelKeySetupDec() local
829 temp = rk[i ]; rk[i ] = rk[j ]; rk[j ] = temp; in rijndaelKeySetupDec()
830 temp = rk[i + 1]; rk[i + 1] = rk[j + 1]; rk[j + 1] = temp; in rijndaelKeySetupDec()
831 temp = rk[i + 2]; rk[i + 2] = rk[j + 2]; rk[j + 2] = temp; in rijndaelKeySetupDec()
[all …]
/xen-4.10.0-shim-comet/tools/blktap2/drivers/
A Daes.c741 u32 temp; in AES_set_encrypt_key() local
763 temp = rk[3]; in AES_set_encrypt_key()
783 temp = rk[ 5]; in AES_set_encrypt_key()
805 temp = rk[ 7]; in AES_set_encrypt_key()
818 temp = rk[11]; in AES_set_encrypt_key()
823 (Te4[(temp ) & 0xff] & 0x000000ff); in AES_set_encrypt_key()
842 u32 temp; in AES_set_decrypt_key() local
853 temp = rk[i ]; rk[i ] = rk[j ]; rk[j ] = temp; in AES_set_decrypt_key()
854 temp = rk[i + 1]; rk[i + 1] = rk[j + 1]; rk[j + 1] = temp; in AES_set_decrypt_key()
855 temp = rk[i + 2]; rk[i + 2] = rk[j + 2]; rk[j + 2] = temp; in AES_set_decrypt_key()
[all …]
/xen-4.10.0-shim-comet/xen/xsm/flask/ss/
A Dsidtab.c155 struct sidtab_node *last, *cur, *temp; in sidtab_map_remove_on_error() local
178 temp = cur; in sidtab_map_remove_on_error()
180 context_destroy(&temp->context); in sidtab_map_remove_on_error()
181 xfree(temp); in sidtab_map_remove_on_error()
284 struct sidtab_node *cur, *temp; in sidtab_destroy() local
294 temp = cur; in sidtab_destroy()
296 context_destroy(&temp->context); in sidtab_destroy()
297 xfree(temp); in sidtab_destroy()
A Dhashtab.c99 struct hashtab_node *cur, *temp; in hashtab_destroy() local
109 temp = cur; in hashtab_destroy()
111 xfree(temp); in hashtab_destroy()
A Debitmap.c205 struct ebitmap_node *n, *temp; in ebitmap_destroy() local
213 temp = n; in ebitmap_destroy()
215 xfree(temp); in ebitmap_destroy()
A Davtab.c235 struct avtab_node *cur, *temp; in avtab_destroy() local
245 temp = cur; in avtab_destroy()
247 xfree(temp); in avtab_destroy()
/xen-4.10.0-shim-comet/stubdom/vtpm/
A Dvtpmblk.c128 UINT32 temp; in encrypt_vtpmblk() local
147 temp = sizeof(UINT32); in encrypt_vtpmblk()
148 ivlen = BLKSZ - temp; in encrypt_vtpmblk()
151 tpm_marshal_UINT32(&ivptr, &temp, (UINT32) clear_len); in encrypt_vtpmblk()
196 UINT32 u32, temp; in decrypt_vtpmblk() local
214 temp = sizeof(UINT32); in decrypt_vtpmblk()
215 ivptr = iv + BLKSZ - temp; in decrypt_vtpmblk()
216 tpm_unmarshal_UINT32(&ivptr, &temp, &u32); in decrypt_vtpmblk()
/xen-4.10.0-shim-comet/xen/common/libelf/
A DMakefile7 libelf.o: libelf-temp.o Makefile
10 libelf-temp.o: libelf-tools.o libelf-loader.o libelf-dominfo.o #libelf-relocate.o
/xen-4.10.0-shim-comet/tools/ocaml/libs/xl/
A Dxenlight_stubs.c718 CAMLlocal2(list, temp); in stub_xl_device_nic_list()
734 Field(list, 1) = temp; in stub_xl_device_nic_list()
735 temp = list; in stub_xl_device_nic_list()
746 CAMLlocal2(list, temp); in stub_xl_device_disk_list()
762 Field(list, 1) = temp; in stub_xl_device_disk_list()
763 temp = list; in stub_xl_device_disk_list()
795 CAMLlocal2(list, temp); in stub_xl_device_pci_list()
811 Field(list, 1) = temp; in stub_xl_device_pci_list()
812 temp = list; in stub_xl_device_pci_list()
883 temp = list; in stub_xl_device_pci_assignable_list()
[all …]
/xen-4.10.0-shim-comet/xen/common/
A Dbunzip2.c224 unsigned char length[MAX_SYMBOLS], temp[MAX_HUFCODE_BITS+1]; in get_next_block() local
298 temp[i] = limit[i] = 0; in get_next_block()
305 temp[length[i]]++; in get_next_block()
314 pp += temp[i]; in get_next_block()
327 base[i+1] = pp-(t += temp[i]); in get_next_block()
331 limit[maxLen] = pp+temp[maxLen]-1; in get_next_block()
/xen-4.10.0-shim-comet/xen/arch/x86/pv/
A Demul-priv-op.c1010 uint64_t temp; in write_msr() local
1061 if ( (rdmsr_safe(MSR_AMD64_NB_CFG, temp) != 0) || in write_msr()
1062 ((val ^ temp) & ~(1ULL << AMD64_NB_CFG_CF8_EXT_ENABLE_BIT)) ) in write_msr()
1074 if ( rdmsr_safe(MSR_FAM10H_MMIO_CONF_BASE, temp) != 0 ) in write_msr()
1077 temp != val : in write_msr()
1078 ((temp ^ val) & in write_msr()
1094 if ( rdmsr_safe(reg, temp) ) in write_msr()
1101 if ( rdmsr_safe(reg, temp) ) in write_msr()
1103 if ( val != guest_misc_enable(temp) ) in write_msr()
1181 if ( (rdmsr_safe(reg, temp) != 0) || (val != temp) ) in write_msr()
[all …]
/xen-4.10.0-shim-comet/xen/drivers/passthrough/vtd/x86/
A Dats.c112 struct pci_dev *pdev, *temp; in dev_invalidate_iotlb() local
118 list_for_each_entry_safe( pdev, temp, &iommu->ats_devices, ats.list ) in dev_invalidate_iotlb()
/xen-4.10.0-shim-comet/xen/arch/x86/oprofile/
A Dop_model_athlon.c243 u32 temp = 0; in ibs_log_event() local
245 temp = data & 0xFFFFFFFF; in ibs_log_event()
246 xenoprof_log_event(v, regs, temp, mode, 0); in ibs_log_event()
248 temp = (data >> 32) & 0xFFFFFFFF; in ibs_log_event()
249 xenoprof_log_event(v, regs, temp, mode, 0); in ibs_log_event()
/xen-4.10.0-shim-comet/xen/tools/kconfig/lxdialog/
A Dutil.c449 int i, temp; in print_button() local
455 temp = strspn(label, " "); in print_button()
456 label += temp; in print_button()
459 for (i = 0; i < temp; i++) in print_button()
470 wmove(win, y, x + temp + 1); in print_button()
/xen-4.10.0-shim-comet/xen/arch/arm/
A Dgic-v3-its.c673 struct its_device *temp; in gicv3_its_map_guest_device() local
676 temp = rb_entry(*new, struct its_device, rbnode); in gicv3_its_map_guest_device()
679 cmp = compare_its_guest_devices(temp, guest_doorbell, guest_devid); in gicv3_its_map_guest_device()
683 rb_erase(&temp->rbnode, &d->arch.vgic.its_devices); in gicv3_its_map_guest_device()
694 return remove_mapped_guest_device(temp); in gicv3_its_map_guest_device()
/xen-4.10.0-shim-comet/xen/tools/kconfig/
A Dnconf.gui.c154 float temp; in print_in_middle() local
168 temp = (width - length) / 2; in print_in_middle()
169 x = startx + (int)temp; in print_in_middle()
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/
A Dvmsi.c577 struct msixtbl_entry *entry, *temp; in msixtbl_pt_cleanup() local
584 list_for_each_entry_safe( entry, temp, in msixtbl_pt_cleanup()
A Dvpt.c253 struct periodic_time *pt, *temp, *earliest_pt; in pt_update_irq() local
261 list_for_each_entry_safe ( pt, temp, head, list ) in pt_update_irq()
/xen-4.10.0-shim-comet/tools/ocaml/libs/xc/
A Dxenctrl_stubs.c351 CAMLlocal2(result, temp); in stub_xc_domain_getinfolist()
363 result = temp = Val_emptylist; in stub_xc_domain_getinfolist()
379 Field(result, 1) = temp; in stub_xc_domain_getinfolist()
380 temp = result; in stub_xc_domain_getinfolist()

Completed in 41 milliseconds

12