HomeSort by relevance Sort by last modified time
    Searched full:icache (Results 1 - 25 of 37) sorted by null

1 2

  /system/extras/tests/icachetest/
Android.mk 6 LOCAL_SRC_FILES:= icache_main.c icache.S icache2.S
10 LOCAL_MODULE:= icache
icache.S 2 * icache.s
icache2.S 2 * icache.s
  /external/iproute2/lib/
inet_proto.c 28 static int icache = -1; local
31 if (proto == icache)
36 icache = proto;
48 static int icache = -1; local
51 if (icache>=0 && strcmp(ncache, buf) == 0)
52 return icache;
63 icache = pe->p_proto;
ll_map.c 161 static int icache; local
167 if (icache && strcmp(name, ncache) == 0)
168 return icache;
172 icache = im->index;
  /external/e2fsprogs/lib/ext2fs/
freefs.c 20 static void ext2fs_free_inode_cache(struct ext2_inode_cache *icache);
53 if (fs->icache)
54 ext2fs_free_inode_cache(fs->icache);
99 static void ext2fs_free_inode_cache(struct ext2_inode_cache *icache)
101 if (--icache->refcount)
103 if (icache->buffer)
104 ext2fs_free_mem(&icache->buffer);
105 if (icache->cache)
106 ext2fs_free_mem(&icache->cache);
107 icache->buffer_blk = 0
    [all...]
inode.c 57 * This routine flushes the icache, if it exists.
63 if (!fs->icache)
66 for (i=0; i < fs->icache->cache_size; i++)
67 fs->icache->cache[i].ino = 0;
69 fs->icache->buffer_blk = 0;
77 if (fs->icache)
79 retval = ext2fs_get_mem(sizeof(struct ext2_inode_cache), &fs->icache);
83 memset(fs->icache, 0, sizeof(struct ext2_inode_cache));
84 retval = ext2fs_get_mem(fs->blocksize, &fs->icache->buffer);
86 ext2fs_free_mem(&fs->icache);
    [all...]
dupfs.c 44 if (fs->icache)
45 fs->icache->refcount++;
ext2fs.h 247 struct ext2_inode_cache *icache; member in struct:struct_ext2_filsys
    [all...]
  /external/v8/src/mips/
cpu-mips.cc 52 res = syscall(__NR_cacheflush, start, size, ICACHE);
  /external/e2fsprogs/debugfs/
util.o 
debugfs.o 
  /external/qemu/
exec-all.h 102 #define CODE_GEN_ALIGN 16 /* must be >= of the size of a icache line */
272 /* no need to flush icache explicitly */
291 /* flush icache */
  /external/libffi/src/alpha/
ffi.c 192 /* Flush the Icache.
  /external/kernel-headers/original/asm-arm/
cacheflush.h 132 * Ensure coherency between the Icache and the Dcache in the
system.h 32 #define CR_I (1 << 12) /* Icache enable */
  /external/libffi/src/pa/
ffi.c 644 /* Flush d/icache -- have to flush up 2 two lines because of
677 /* Flush d/icache -- have to flush three lines because of alignment. */
  /external/libffi/src/sh/
ffi.c 489 /* Flush the icache. */
  /external/libffi/src/sh64/
ffi.c 332 /* Flush the icache. */
  /external/libffi/src/sparc/
ffi.c 461 /* Flush the Icache. FIXME: alignment isn't certain, assume 8 bytes */
  /external/kernel-headers/original/linux/
sysctl.h 185 VM_VFS_CACHE_PRESSURE=26, /* dcache/icache reclaim pressure */
  /external/libffi/src/mips/
ffi.c 633 cacheflush (clear_location, FFI_TRAMPOLINE_SIZE, ICACHE);
  /external/qemu/target-arm/
helper.c 106 env->cp15.c0_ccsid[1] = 0x2007e01a; /* 16k L1 icache. */
107 env->cp15.c0_ccsid[2] = 0xf0000000; /* No L2 icache. */
    [all...]
  /external/libffi/src/powerpc/
ffi_darwin.c 563 /* Flush the icache. Only necessary on Darwin. */
  /external/qemu/tcg/ppc/
tcg-target.c 1111 /* flush icache */
    [all...]

Completed in 404 milliseconds

1 2