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

1 2 3 4

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mipsr6@cache.d 2 #name: MIPS CACHE instruction
3 #source: cache.s
6 # Check MIPS CACHE instruction assembly.
11 [0-9a-f]+ <[^>]*> 7c457fa5 cache 0x5,255\(v0\)
12 [0-9a-f]+ <[^>]*> 7c658025 cache 0x5,-256\(v1\)
cache.s 1 # Source file to test offsets used with the CACHE and PREF instruction.
3 # By default test CACHE.
7 .macro cache ops:vararg
19 cache 5, 255($2)
20 cache 5, -256($3)
22 cache 5, 2047($2)
23 cache 5, -2048($3)
29 cache 5, 2048($4)
30 cache 5, -2049($5)
31 cache 5, 32767($6
    [all...]
cache.d 2 #name: MIPS CACHE instruction
5 # Check MIPS CACHE instruction assembly.
10 [0-9a-f]+ <[^>]*> bc4507ff cache 0x5,2047\(v0\)
11 [0-9a-f]+ <[^>]*> bc65f800 cache 0x5,-2048\(v1\)
12 [0-9a-f]+ <[^>]*> bc850800 cache 0x5,2048\(a0\)
13 [0-9a-f]+ <[^>]*> bca5f7ff cache 0x5,-2049\(a1\)
14 [0-9a-f]+ <[^>]*> bcc57fff cache 0x5,32767\(a2\)
15 [0-9a-f]+ <[^>]*> bce58000 cache 0x5,-32768\(a3\)
18 [0-9a-f]+ <[^>]*> bc258000 cache 0x5,-32768\(at\)
21 [0-9a-f]+ <[^>]*> bc257fff cache 0x5,32767\(at\
    [all...]
micromips@cache.d 2 #name: MIPS CACHE instruction
4 #source: cache.s
6 # Check MIPS CACHE instruction assembly (microMIPS).
11 [0-9a-f]+ <[^>]*> 20a2 67ff cache 0x5,2047\(v0\)
12 [0-9a-f]+ <[^>]*> 20a3 6800 cache 0x5,-2048\(v1\)
14 [0-9a-f]+ <[^>]*> 20a1 6000 cache 0x5,0\(at\)
16 [0-9a-f]+ <[^>]*> 20a1 6000 cache 0x5,0\(at\)
18 [0-9a-f]+ <[^>]*> 20a1 6000 cache 0x5,0\(at\)
20 [0-9a-f]+ <[^>]*> 20a1 6000 cache 0x5,0\(at\)
23 [0-9a-f]+ <[^>]*> 20a1 6000 cache 0x5,0\(at\
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
complete-ant-cmd.pl 82 # Run "ant -projecthelp" to list targets. Keep a cache of results in a
83 # cache-file.
87 open( CACHE, '>'.$cacheFile ) || die "can\'t write $cacheFile: $!\n";
96 for (@targets) { print CACHE "$_\n"; }
100 # Read the target-cache
101 open( CACHE, $cacheFile ) || die "can\'t read $cacheFile: $!\n";
103 while (<CACHE>) {
108 close( CACHE );
  /system/extras/tests/ext4/
android_emmc_perf_tests.sh 32 CACHE="/dev/block/platform/omap/omap_hsmmc.0/by-name/cache"
38 CACHE="/dev/block/platform/sdhci-tegra.3/by-name/cache"
53 CACHE="/dev/block/platform/s3c-sdhci.0/by-name/userdata"
59 CACHE="/dev/block/platform/sdhci-tegra.3/by-name/CAC"
65 CACHE="/dev/block/platform/dw_mmc.0/by-name/cache"
71 CACHE="dev/block/platform/msm_sdcc.1/by-name/cache"
    [all...]
  /external/libdivsufsort/
CMakeLists.txt 27 set(LIB_SUFFIX "" CACHE STRING "Define suffix of directory name (32 or 64)")
29 set(CMAKE_INSTALL_RUNTIMEDIR "" CACHE PATH "Specify the output directory for dll runtimes (default is bin)")
34 set(CMAKE_INSTALL_LIBDIR "" CACHE PATH "Specify the output directory for libraries (default is lib)")
39 set(CMAKE_INSTALL_INCLUDEDIR "" CACHE PATH "Specify the output directory for header files (default is include)")
44 set(CMAKE_INSTALL_PKGCONFIGDIR "" CACHE PATH "Specify the output directory for pkgconfig files (default is lib/pkgconfig)")
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/graphics/
ImageLoader.java 34 private static final BitmapCache CACHE = new BitmapCache(
48 final Bitmap cachedValue = CACHE.get(id);
50 // If the image is already in the cache, display the image,
74 // Add the image to the memory cache first
75 CACHE.put(id, bitmap);
86 * A simple cache implementation for {@link android.graphics.Bitmap} instances which uses
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineRunnable.java 15 * from cache, first using transformed data and then using source data. If no resource can be decoded from cache,
21 * Using two stages with a re-post in between allows us to run fast disk cache decodes on one thread and slow source
40 this.stage = Stage.CACHE;
81 return stage == Stage.CACHE;
111 Log.d(TAG, "Exception decoding result from cache: " + e);
131 /** Attempting to decode resource from cache. */
132 CACHE,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
AdamsNordsieckTransformer.java 135 /** Cache for already computed coefficients. */
136 private static final Map<Integer, AdamsNordsieckTransformer> CACHE =
203 synchronized(CACHE) {
204 AdamsNordsieckTransformer t = CACHE.get(nSteps);
207 CACHE.put(nSteps, t);
  /libcore/ojluni/src/main/java/java/time/format/
DecimalStyle.java 93 * The cache of DecimalStyle instances.
95 private static final ConcurrentMap<Locale, DecimalStyle> CACHE = new ConcurrentHashMap<>(16, 0.75f, 2);
156 DecimalStyle info = CACHE.get(locale);
159 CACHE.putIfAbsent(locale, info);
160 info = CACHE.get(locale);
DateTimeTextProvider.java 100 * Implementations should cache the textual information.
106 /** Cache. */
107 private static final ConcurrentMap<Entry<TemporalField, Locale>, Object> CACHE = new ConcurrentHashMap<>(16, 0.75f, 2);
311 Object store = CACHE.get(key);
314 CACHE.putIfAbsent(key, store);
315 store = CACHE.get(key);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
StringPrep.java 182 private static final WeakReference<StringPrep>[] CACHE = (WeakReference<StringPrep>[])new WeakReference[MAX_PROFILE+1];
303 // per type and store it in the internal cache.
304 synchronized (CACHE) {
305 WeakReference<StringPrep> ref = CACHE[profile];
320 CACHE[profile] = new WeakReference<StringPrep>(instance);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
StringPrep.java 197 private static final WeakReference<StringPrep>[] CACHE = (WeakReference<StringPrep>[])new WeakReference[MAX_PROFILE+1];
320 // per type and store it in the internal cache.
321 synchronized (CACHE) {
322 WeakReference<StringPrep> ref = CACHE[profile];
337 CACHE[profile] = new WeakReference<StringPrep>(instance);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
DateNumberFormat.java 46 private static SimpleCache<ULocale, char[]> CACHE = new SimpleCache<ULocale, char[]>();
64 char[] elems = CACHE.get(loc);
66 // Missed cache
87 CACHE.put(loc, elems);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DateNumberFormat.java 42 private static SimpleCache<ULocale, char[]> CACHE = new SimpleCache<ULocale, char[]>();
60 char[] elems = CACHE.get(loc);
62 // Missed cache
83 CACHE.put(loc, elems);
  /libcore/ojluni/src/main/java/sun/util/locale/
BaseLocale.java 40 private static final Cache CACHE = new Cache();
68 CACHE.put(new Key(language, region), base);
86 BaseLocale baseLocale = CACHE.get(key);
290 private static class Cache extends LocaleObjectCache<Key, BaseLocale> {
292 public Cache() {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
BaseLocale.java 23 private static final Cache CACHE = new Cache();
65 BaseLocale baseLocale = CACHE.get(key);
255 private static class Cache extends LocaleObjectCache<Key, BaseLocale> {
257 public Cache() {
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
BaseLocale.java 19 private static final Cache CACHE = new Cache();
61 BaseLocale baseLocale = CACHE.get(key);
245 private static class Cache extends LocaleObjectCache<Key, BaseLocale> {
247 public Cache() {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
BaseLocale.java 19 private static final Cache CACHE = new Cache();
61 BaseLocale baseLocale = CACHE.get(key);
251 private static class Cache extends LocaleObjectCache<Key, BaseLocale> {
253 public Cache() {
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageAttachmentTile.java 159 mActionHandler.startDownloadingAttachment(AttachmentDestination.CACHE,
222 AttachmentDestination.CACHE, AttachmentRendition.SIMPLE, 0, false);
MessageAttachmentBar.java 251 mActionHandler.startDownloadingAttachment(AttachmentDestination.CACHE);
269 mActionHandler.showAttachment(AttachmentDestination.CACHE);
AttachmentActionHandler.java 100 (destination == AttachmentDestination.CACHE ||
  /libcore/ojluni/src/main/java/java/time/temporal/
WeekFields.java 188 * The cache of rules by firstDayOfWeek plus minimalDays.
191 private static final ConcurrentMap<String, WeekFields> CACHE = new ConcurrentHashMap<>(4, 0.75f, 2);
317 WeekFields rules = CACHE.get(key);
320 CACHE.putIfAbsent(key, rules);
321 rules = CACHE.get(key);
    [all...]
  /external/sfntly/cpp/
CMakeLists.txt 4 set(CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING "good configs" FORCE)

Completed in 818 milliseconds

1 2 3 4