Home
last modified time | relevance | path

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

/kernel/target/arm64/boot-shim/
A Dboot-shim.S16 tmp .req x16 label
44 mrs tmp, CurrentEL
45 cmp tmp, #(1 << 2)
49 mrs tmp, sctlr_el2
50 bic tmp, tmp, #SCTLR_I
51 bic tmp, tmp, #SCTLR_C
52 bic tmp, tmp, #SCTLR_M
59 bic tmp, tmp, #SCTLR_I
60 bic tmp, tmp, #SCTLR_C
61 bic tmp, tmp, #SCTLR_M
[all …]
/kernel/arch/arm64/
A Dstart.S59 orr tmp, tmp, #(1<<12) /* Enable icache */
60 orr tmp, tmp, #(1<<2) /* Enable dcache/ucache */
96 mov sp, tmp
110 mov tmp, #0
113 add tmp, tmp, #1
142 mov tmp, #0
145 add tmp, tmp, #1
198 orr tmp, tmp, #0x1
209 sub tmp, tmp, tmp2
210 add tmp, tmp, kernel_vaddr
[all …]
A Dmexec.S24 tmp .req x9 label
30 mrs tmp, sctlr_el1 // Read the SCTLR into a temp
31 bic tmp, tmp, #(1<<12) // Disable icache
32 bic tmp, tmp, #(1<<2) // Disable dcache/ucache
33 bic tmp, tmp, #(1<<0) // Disable the MMU
34 msr sctlr_el1, tmp // Write the temp back to the control register
78 orr tmp, x0, x1
79 orr tmp, tmp, x2
80 cbz tmp, .Lfinish_copy
136 ldr tmp, [x1, x3, lsl 3]
[all …]
/kernel/lib/fixed_point/include/lib/
A Dfixed_point.h26 uint64_t tmp; in fp_32_64_div_32_32() local
46 uint64_t tmp; in u64_mul_u32_fp32_64() local
54 res_0 += tmp >> 32; in u64_mul_u32_fp32_64()
55 res_l32 = (uint32_t)tmp; in u64_mul_u32_fp32_64()
93 uint64_t tmp; in u64_mul_u64_fp32_64() local
97 res_0 = tmp << 32; in u64_mul_u64_fp32_64()
99 res_0 += tmp; in u64_mul_u64_fp32_64()
101 res_0 += tmp; in u64_mul_u64_fp32_64()
103 res_0 += tmp >> 32; in u64_mul_u64_fp32_64()
106 res_0 += tmp >> 32; in u64_mul_u64_fp32_64()
[all …]
/kernel/lib/libc/string/
A Dstrcpy.c14 char *tmp = dest; in strcpy() local
18 return tmp; in strcpy()
A Dstrcat.c14 char *tmp = dest; in strcat() local
21 return tmp; in strcat()
A Dstrncpy.c14 char *tmp = dest; in strncpy() local
19 return tmp; in strncpy()
A Dstrncat.c14 char *tmp = dest; in strncat() local
27 return tmp; in strncat()
/kernel/target/arm64/board/eagle/
A Dboot-shim-config.h13 uint32_t tmp = *wdt_mode; in disable_watchdog() local
14 tmp &= ~WDT_MODE_EN; in disable_watchdog()
15 tmp |= WDT_MODE_KEY; in disable_watchdog()
16 *wdt_mode = tmp; in disable_watchdog()
/kernel/target/arm64/board/mt8167s_ref/
A Dboot-shim-config.h13 uint32_t tmp = *wdt_mode; in disable_watchdog() local
14 tmp &= ~WDT_MODE_EN; in disable_watchdog()
15 tmp |= WDT_MODE_KEY; in disable_watchdog()
16 *wdt_mode = tmp; in disable_watchdog()
/kernel/target/arm64/board/cleo/
A Dboot-shim-config.h13 uint32_t tmp = *wdt_mode; in disable_watchdog() local
14 tmp &= ~WDT_MODE_EN; in disable_watchdog()
15 tmp |= WDT_MODE_KEY; in disable_watchdog()
16 *wdt_mode = tmp; in disable_watchdog()
/kernel/lib/debuglog/
A Ddebuglog.cpp343 char tmp[DLOG_MAX_DATA + 128]; in debuglog_dumper() local
368 n = snprintf(tmp, sizeof(tmp), "[%05d.%03d] %05" PRIu64 ".%05" PRIu64 "> %s\n", in debuglog_dumper()
372 if (n > (int)sizeof(tmp)) { in debuglog_dumper()
373 n = sizeof(tmp); in debuglog_dumper()
375 __kernel_console_write(tmp, n); in debuglog_dumper()
376 dlog_serial_write(tmp, n); in debuglog_dumper()
/kernel/lib/pow2_range_allocator/
A Dpow2_range_allocator.cpp242 uint tmp = csize << 1; in p2ra_add_range() local
243 while ((tmp <= max_csize) && in p2ra_add_range()
244 (tmp <= range_len) && in p2ra_add_range()
245 (!(range_start & (tmp - 1)))) { in p2ra_add_range()
247 csize = tmp; in p2ra_add_range()
248 tmp <<= 1; in p2ra_add_range()
/kernel/object/
A Dbus_transaction_initiator_dispatcher.cpp71 QuarantineList tmp; in ReleaseQuarantine() local
77 quarantine_.swap(tmp); in ReleaseQuarantine()

Completed in 31 milliseconds