HomeSort by relevance Sort by last modified time
    Searched refs:start (Results 1 - 25 of 10991) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/u-boot/board/emulation/qemu-x86/
Makefile 5 obj-y += start.o
  /external/clang/test/Sema/
builtins-aarch64.c 7 void __clear_cache(void *start, void *end);
10 void test_clear_cache_chars(char *start, char *end) {
11 __clear_cache(start, end);
14 void test_clear_cache_voids(void *start, void *end) {
15 __clear_cache(start, end);
builtins-arm64.c 5 void __clear_cache(void *start, void *end);
8 void test_clear_cache_chars(char *start, char *end) {
9 __clear_cache(start, end);
12 void test_clear_cache_voids(void *start, void *end) {
13 __clear_cache(start, end);
  /external/u-boot/arch/arm/cpu/arm926ejs/
cache.c 26 void invalidate_dcache_range(unsigned long start, unsigned long stop)
28 if (!check_cache_range(start, stop))
31 while (start < stop) {
32 asm volatile("mcr p15, 0, %0, c7, c6, 1\n" : : "r"(start));
33 start += CONFIG_SYS_CACHELINE_SIZE;
37 void flush_dcache_range(unsigned long start, unsigned long stop)
39 if (!check_cache_range(start, stop))
42 while (start < stop) {
43 asm volatile("mcr p15, 0, %0, c7, c14, 1\n" : : "r"(start));
44 start += CONFIG_SYS_CACHELINE_SIZE
    [all...]
  /external/llvm/test/tools/dsymutil/ARM/
thumb.c 9 void start() { function
13 CHECK: DW_AT_name{{.*}}"start"
  /external/swiftshader/third_party/llvm-7.0/llvm/test/tools/dsymutil/ARM/
thumb.c 9 void start() { function
13 CHECK: DW_AT_name{{.*}}"start"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inffast.h 11 void inflate_fast OF((z_streamp strm, unsigned start));
  /external/clang/test/CodeGen/
2002-09-19-StarInLabel.c 3 extern void start() __asm__("start");
6 void start() {} function
  /external/u-boot/lib/zlib/
inffast.h 11 void inflate_fast OF((z_streamp strm, unsigned start));
  /external/llvm/utils/
bisect 10 parser.add_argument('--start', type=int, default=0)
16 start = args.start variable
20 print("Start: %d" % start)
24 while start != end and start != end-1:
25 count = start + (end - start)/2
26 print("Visiting Count: %d with (Start, End) = (%d,%d)" % (count, start, end)
32 start = count variable
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/
bisect 10 parser.add_argument('--start', type=int, default=0)
16 start = args.start variable
20 print("Start: %d" % start)
24 while start != end and start != end-1:
25 count = start + (end - start)/2
26 print("Visiting Count: %d with (Start, End) = (%d,%d)" % (count, start, end)
32 start = count variable
    [all...]
  /external/u-boot/arch/arm/cpu/arm11/
cpu.c 66 void invalidate_dcache_range(unsigned long start, unsigned long stop)
68 if (!check_cache_range(start, stop))
71 while (start < stop) {
72 asm volatile("mcr p15, 0, %0, c7, c6, 1" : : "r" (start));
73 start += CONFIG_SYS_CACHELINE_SIZE;
77 void flush_dcache_range(unsigned long start, unsigned long stop)
79 if (!check_cache_range(start, stop))
82 while (start < stop) {
83 asm volatile("mcr p15, 0, %0, c7, c14, 1" : : "r" (start));
84 start += CONFIG_SYS_CACHELINE_SIZE
    [all...]
  /external/u-boot/arch/arm/cpu/pxa/
cache.c 23 void invalidate_dcache_range(unsigned long start, unsigned long stop)
25 start &= ~(CONFIG_SYS_CACHELINE_SIZE - 1);
28 while (start <= stop) {
29 asm volatile("mcr p15, 0, %0, c7, c6, 1\n" : : "r"(start));
30 start += CONFIG_SYS_CACHELINE_SIZE;
34 void flush_dcache_range(unsigned long start, unsigned long stop)
36 return invalidate_dcache_range(start, stop);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BidiRun.java 34 int start; /* first logical position of the run */ field in class:BidiRun
43 * Note that members start and limit of a run instance have different
48 * - start is the first logical position of the run in the source text.
51 * - start is the first logical position of the run in the source text.
62 BidiRun(int start, int limit, byte embeddingLevel)
64 this.start = start;
74 this.start = run.start;
85 return start;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BidiRun.java 34 int start; /* first logical position of the run */ field in class:BidiRun
43 * Note that members start and limit of a run instance have different
48 * - start is the first logical position of the run in the source text.
51 * - start is the first logical position of the run in the source text.
62 BidiRun(int start, int limit, byte embeddingLevel)
64 this.start = start;
74 this.start = run.start;
86 return start;
    [all...]
  /frameworks/av/media/libeffects/loudness/dsp/core/
basic-inl.h 31 int start = start_index; local
33 while (end > start + 1) {
34 int i = (end + start) / 2;
38 start = i;
41 return start;
  /external/u-boot/arch/riscv/lib/
cache.c 9 void flush_dcache_range(unsigned long start, unsigned long end)
13 void invalidate_icache_range(unsigned long start, unsigned long end)
17 void invalidate_dcache_range(unsigned long start, unsigned long end)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inffast.h 11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inffast.h 11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
  /external/mesa3d/src/intel/common/
gen_clflush.h 37 gen_clflush_range(void *start, size_t size)
39 void *p = (void *) (((uintptr_t) start) & ~CACHELINE_MASK);
40 void *end = start + size;
49 gen_flush_range(void *start, size_t size)
52 gen_clflush_range(start, size);
56 gen_invalidate_range(void *start, size_t size)
58 gen_clflush_range(start, size);
70 __builtin_ia32_clflush(start + size - 1);
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlToken.java 35 final int start; field in class:HtmlToken
39 static HtmlToken instance(int start, int end, HtmlTokenType type) {
40 return new HtmlToken(start, end, type);
44 int n = end - start;
46 return context.regionMatches(start, match, 0, n);
49 private HtmlToken(int start, int end, HtmlTokenType type) {
50 this.start = start;
  /external/python/cpython2/Modules/zlib/
inffast.h 11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
  /external/u-boot/board/efi/efi-x86_payload/
Makefile 5 obj-y += start.o payload.o
  /external/u-boot/board/intel/cherryhill/
Makefile 5 obj-y += cherryhill.o start.o
  /external/u-boot/board/intel/cougarcanyon2/
Makefile 5 obj-y += cougarcanyon2.o start.o

Completed in 3471 milliseconds

1 2 3 4 5 6 7 8 91011>>