Home
last modified time | relevance | path

Searched refs:tmp2 (Results 1 – 14 of 14) sorted by relevance

/xen/xen/arch/arm/arm64/lib/
A Dstrcmp.S57 tmp2 .req x8 label
99 mov tmp2, #~0
101 CPU_BE( lsl tmp2, tmp2, tmp1 ) /* Shift (tmp1 & 63). */
103 CPU_LE( lsr tmp2, tmp2, tmp1 ) /* Shift (tmp1 & 63). */
105 orr data1, data1, tmp2
106 orr data2, data2, tmp2
117 and tmp2, src2, #7
118 neg tmp2, tmp2
119 add tmp2, tmp2, #8
120 subs tmp3, tmp1, tmp2
[all …]
A Dstrncmp.S59 tmp2 .req x9 label
94 orr tmp2, data1, #REP8_7f
135 mov tmp2, #~0
138 CPU_BE( lsl tmp2, tmp2, tmp3 ) /* Shift (tmp1 & 63). */
140 CPU_LE( lsr tmp2, tmp2, tmp3 ) /* Shift (tmp1 & 63). */
147 orr data1, data1, tmp2
148 orr data2, data2, tmp2
162 and tmp2, src2, #7
163 neg tmp2, tmp2
164 add tmp2, tmp2, #8
[all …]
A Dstrlen.S49 tmp2 .req x8 label
79 orr tmp2, data1, #REP8_7f
82 bic has_nul1, tmp1, tmp2
101 CPU_BE( orr tmp2, data2, #REP8_7f )
102 CPU_BE( bic has_nul2, tmp1, tmp2 )
115 mov tmp2, #~0
117 CPU_BE( lsl tmp2, tmp2, tmp1 ) /* Shift (tmp1 & 63). */
119 CPU_LE( lsr tmp2, tmp2, tmp1 ) /* Shift (tmp1 & 63). */
121 orr data1, data1, tmp2
122 orr data2a, data2, tmp2
A Dstrnlen.S51 tmp2 .req x9 label
87 orr tmp2, data1, #REP8_7f
90 bic has_nul1, tmp1, tmp2
119 CPU_BE( orr tmp2, data2, #REP8_7f )
120 CPU_BE( bic has_nul2, tmp1, tmp2 )
153 mov tmp2, #~0
155 CPU_BE( lsl tmp2, tmp2, tmp4 ) /* Shift (tmp1 & 63). */
157 CPU_LE( lsr tmp2, tmp2, tmp4 ) /* Shift (tmp1 & 63). */
161 orr data1, data1, tmp2
162 orr data2a, data2, tmp2
A Dmemset.S44 tmp2 .req x4 label
82 neg tmp2, dst
83 ands tmp2, tmp2, #15
92 sub count, count, tmp2
93 add dst, dst, tmp2
179 neg tmp2, dst
180 ands tmp2, tmp2, zva_bits_x
183 sub tmp1, count, tmp2
199 subs tmp2, tmp2, #64
204 add dst, dst, tmp2
A Dmemcmp.S54 tmp2 .req x9 label
125 mov tmp2, #~0
127 CPU_BE( lsl tmp2, tmp2, tmp1 )/*Big-endian.Early bytes are at MSB*/
129 CPU_LE( lsr tmp2, tmp2, tmp1 )
131 orr data1, data1, tmp2
132 orr data2, data2, tmp2
143 and tmp2, src2, #7
144 neg tmp2, tmp2
145 add tmp2, tmp2, #8/*valid length in the first 8 bytes of src2*/
146 subs tmp3, tmp1, tmp2
[all …]
A Dmemcpy.S43 tmp2 .req x4 label
64 neg tmp2, src
65 ands tmp2, tmp2, #15/* Bytes to reach alignment. */
67 sub count, count, tmp2
74 tbz tmp2, #0, 1f
78 tbz tmp2, #1, 2f
82 tbz tmp2, #2, 3f
86 tbz tmp2, #3, .LSrcAligned
A Dmemmove.S44 tmp2 .req x4 label
71 ands tmp2, src, #15 /* Bytes to reach alignment. */
73 sub count, count, tmp2
79 tbz tmp2, #0, 1f
83 tbz tmp2, #1, 2f
87 tbz tmp2, #2, 3f
91 tbz tmp2, #3, .LSrcAligned
/xen/xen/common/
A Drbtree.c261 tmp2 = sibling->rb_left; in __rb_erase_color()
262 if (!tmp2 || rb_is_black(tmp2)) { in __rb_erase_color()
303 tmp2->rb_right = sibling; in __rb_erase_color()
304 parent->rb_right = tmp2; in __rb_erase_color()
309 sibling = tmp2; in __rb_erase_color()
326 if (tmp2) in __rb_erase_color()
345 if (!tmp2 || rb_is_black(tmp2)) { in __rb_erase_color()
361 tmp2->rb_left = sibling; in __rb_erase_color()
362 parent->rb_left = tmp2; in __rb_erase_color()
367 sibling = tmp2; in __rb_erase_color()
[all …]
/xen/tools/include/xen-foreign/
A DMakefile30 sed 's/(__align8__ \(uint64_t\))/(\1)/g' < $@.tmp > $@.tmp2
32 $(call move-if-changed,$@.tmp2,$@)
37 sed 's/(__align8__ \(uint64_t\))/(\1)/g' < $@.tmp > $@.tmp2
39 $(call move-if-changed,$@.tmp2,$@)
44 sed 's/(__align8__ \(uint64_t\))/(\1)/g' < $@.tmp > $@.tmp2
46 $(call move-if-changed,$@.tmp2,$@)
51 sed 's/(__align8__ \(uint64_t\))/(\1)/g' < $@.tmp > $@.tmp2
53 $(call move-if-changed,$@.tmp2,$@)
/xen/xen/arch/arm/arm64/
A Dhead.S512 .macro create_table_entry, ptbl, tbl, virt, shift, tmp1, tmp2, tmp3
516 load_paddr \tmp2, \tbl
518 orr \tmp3, \tmp3, \tmp2 /* + \tlb paddr */
520 adr_l \tmp2, \ptbl
522 str \tmp3, [\tmp2, \tmp1, lsl #3]
542 .macro create_mapping_entry, ptbl, virt, phys, tmp1, tmp2, tmp3, type=PT_MEM_L3
548 mov \tmp2, #\type /* \tmp2 := right for section PT */
549 orr \tmp2, \tmp2, \tmp3 /* + PAGE_ALIGNED(phys) */
553 str \tmp2, [\tmp3, \tmp1, lsl #3]
/xen/tools/xenstat/libxenstat/src/
A Dxenstat_linux.c230 char *tmp2 = strpbrk(tmp, "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"); in parseNetDevLine() local
231 if (tmp2 != NULL) in parseNetDevLine()
232 strcpy(iface, tmp2); in parseNetDevLine()
/xen/tools/ocaml/libs/xl/
A Dxenlight_stubs.c401 CAMLlocal2(tmp1, tmp2); in Val_string_option()
404 tmp2 = Val_some(tmp1); in Val_string_option()
405 CAMLreturn(tmp2); in Val_string_option()
/xen/xen/arch/x86/
A Dtime.c1913 uint64_t tmp, tmp2 = rdtsc(); in tsc_check_writability() local
1917 if ( ABS((s64)tmp - (s64)tmp2) < (1LL << 31) ) in tsc_check_writability()

Completed in 22 milliseconds