HomeSort by relevance Sort by last modified time
    Searched defs:THREAD_SIZE (Results 1 - 6 of 6) sorted by null

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
page_64.h 13 #define THREAD_SIZE (PAGE_SIZE << THREAD_ORDER)
14 #define CURRENT_MASK (~(THREAD_SIZE-1))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
page_64.h 13 #define THREAD_SIZE (PAGE_SIZE << THREAD_ORDER)
14 #define CURRENT_MASK (~(THREAD_SIZE-1))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
page_64.h 13 #define THREAD_SIZE (PAGE_SIZE << THREAD_ORDER)
14 #define CURRENT_MASK (~(THREAD_SIZE-1))
  /external/kernel-headers/original/asm-arm/
thread_info.h 19 #define THREAD_SIZE 8192
20 #define THREAD_START_SP (THREAD_SIZE - 8)
94 return (struct thread_info *)(sp & ~(THREAD_SIZE - 1));
  /external/kernel-headers/original/asm-mips/
thread_info.h 82 #define THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER)
83 #define THREAD_MASK (THREAD_SIZE - 1UL)
92 ret = kzalloc(THREAD_SIZE, GFP_KERNEL); \
97 #define alloc_thread_info(tsk) kmalloc(THREAD_SIZE, GFP_KERNEL)
  /external/kernel-headers/original/asm-x86/
thread_info_32.h 57 #define THREAD_SIZE (4096)
59 #define THREAD_SIZE (8192)
62 #define STACK_WARN (THREAD_SIZE/8)
93 return (struct thread_info *)(current_stack_pointer & ~(THREAD_SIZE - 1));
99 __get_free_pages(GFP_KERNEL| __GFP_ZERO, get_order(THREAD_SIZE)))
102 __get_free_pages(GFP_KERNEL, get_order(THREAD_SIZE)))
105 #define free_thread_info(info) free_pages((unsigned long)(info), get_order(THREAD_SIZE))
111 movl $-THREAD_SIZE, reg; \
116 andl $-THREAD_SIZE, reg

Completed in 374 milliseconds