Searched defs:l2 (Results 1 - 14 of 14) sorted by relevance

/arch/microblaze/lib/
H A Dmulsi3.S27 l2: label
32 beqi r7, l2
33 bneid r6, l2
/arch/parisc/lib/
H A Dio.c168 unsigned int l = 0, l2; local
220 l2 = cpu_to_le16(inw(port));
221 *(unsigned short *)p = (l & 0xff) << 8 | (l2 >> 8);
223 l = l2;
240 unsigned int l = 0, l2; local
267 l2 = cpu_to_le32(inl(port));
268 *(unsigned int *)p = (l & 0xffff) << 16 | (l2 >> 16);
270 l = l2;
284 l2 = cpu_to_le32(inl(port));
285 *(unsigned int *)p = (l & 0xff) << 24 | (l2 >>
338 unsigned int l = 0, l2; local
410 unsigned int l = 0, l2; local
[all...]
/arch/sparc/lib/
H A DPeeCeeI.c36 u32 l, l2; local
59 /* Hold three bytes in l each time, grab a byte from l2 */
64 l2 = *(u32 *)src;
65 l |= (l2 >> 24);
67 l = l2 << 8;
72 /* Hold a byte in l each time, grab 3 bytes from l2 */
76 l2 = *(u32 *)src;
77 l |= (l2 >> 8);
79 l = l2 << 24;
153 u32 l = 0, l2, *p local
[all...]
/arch/blackfin/include/asm/
H A Dcontext.S39 [--sp] = l2;
86 l2 = r0; define
111 [--sp] = l2;
146 l2 = r0; define
170 [--sp] = l2;
221 l2 = r0; define
257 l2 = [sp++]; define
327 l2 = [sp++]; define
H A Dptrace.h58 long l2; member in struct:pt_regs
/arch/blackfin/mach-common/
H A Dinterrupt.S53 [--sp] = l2;
103 l2 = r1; define
H A Ddpmc_modes.S344 [--sp] = l2;
872 l2 = [sp++]; define
/arch/s390/lib/
H A Dstring.c255 int l1, l2; local
257 l2 = __strend(s2) - s2;
258 if (!l2)
261 while (l1-- >= l2) {
263 register unsigned long r3 asm("3") = (unsigned long) l2;
265 register unsigned long r5 asm("5") = (unsigned long) l2;
/arch/x86/boot/
H A Dstring.c135 size_t l1, l2; local
137 l2 = strlen(s2);
138 if (!l2)
141 while (l1 >= l2) {
143 if (!memcmp(s1, s2, l2))
/arch/x86/kernel/cpu/
H A Dintel.c363 unsigned int l2 = 0; local
376 l2 = init_intel_cacheinfo(c);
388 rdmsr(MSR_IA32_MISC_ENABLE, l1, l2);
414 if (l2 == 0)
416 else if (l2 == 256)
421 if (l2 == 128)
428 if (l2 == 128)
H A Dintel_cacheinfo.c231 union l2_cache l2; local
240 cpuid(0x80000006, &dummy, &dummy, &l2.val, &l3.val);
254 if (!l2.val)
256 assoc = assocs[l2.assoc];
257 line_size = l2.line_size;
258 lines_per_tag = l2.lines_per_tag;
578 unsigned int trace = 0, l1i = 0, l1d = 0, l2 = 0, l3 = 0; local
676 l2 += cache_table[k].size;
702 l2 = new_l2;
715 c->x86_cache_size = l3 ? l3 : (l2
[all...]
/arch/powerpc/platforms/52xx/
H A Dmpc52xx_pic.c182 pr_debug("%s: irq=%x. l2=%d flow_type=%d\n", __func__,
295 static int mpc52xx_is_extirq(int l1, int l2) argument
297 return ((l1 == 0) && (l2 == 0)) ||
298 ((l1 == 1) && (l2 >= 1) && (l2 <= 3));
330 pr_debug("return %x, l1=%d, l2=%d\n", intrvect_linux, intrvect_l1,
376 pr_err("%s: invalid irq: virq=%i, l1=%i, l2=%i\n",
382 pr_debug("%s: virq=%x, l1=%i, l2=%i\n", __func__, virq, l1irq, l2irq);
/arch/x86/platform/mrst/
H A Dearly_printk_mrst.c115 const char *s2, unsigned long l2)
124 for (i = 0; i < l2; i++)
112 dw_kmsg_dump(struct kmsg_dumper *dumper, enum kmsg_dump_reason reason, const char *s1, unsigned long l1, const char *s2, unsigned long l2) argument
/arch/x86/xen/
H A Dmmu.c1726 pmd_t *l2; local
1743 l2 = m2v(l3[pud_index(__START_KERNEL_map)].pud);
1745 memcpy(level2_ident_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
1746 memcpy(level2_kernel_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
1749 l2 = m2v(l3[pud_index(__START_KERNEL_map + PMD_SIZE)].pud);
1750 memcpy(level2_fixmap_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);

Completed in 523 milliseconds