Searched defs:cache (Results 1 - 25 of 197) sorted by relevance

12345678

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Ddircache.py1 """Read and cache directory listings.
4 using a cache to avoid reading the directory more often than necessary.
14 cache = {} variable
17 """Reset the cache completely."""
18 global cache
19 cache = {}
22 """List directory contents, using cache."""
24 cached_mtime, list = cache[path]
25 del cache[path]
32 cache[pat
[all...]
H A Dlinecache.py21 # The cache
23 cache = {} # The cache variable
27 """Clear the cache entirely."""
29 global cache
30 cache = {}
34 """Get the lines for a file from the cache.
35 Update the cache if it doesn't contain an entry for this file already."""
37 if filename in cache:
38 return cache[filenam
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Ddircache.py1 """Read and cache directory listings.
4 using a cache to avoid reading the directory more often than necessary.
14 cache = {} variable
17 """Reset the cache completely."""
18 global cache
19 cache = {}
22 """List directory contents, using cache."""
24 cached_mtime, list = cache[path]
25 del cache[path]
32 cache[pat
[all...]
H A Dlinecache.py21 # The cache
23 cache = {} # The cache variable
27 """Clear the cache entirely."""
29 global cache
30 cache = {}
34 """Get the lines for a file from the cache.
35 Update the cache if it doesn't contain an entry for this file already."""
37 if filename in cache:
38 return cache[filenam
[all...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
H A Drandom_number.h51 uint64 cache; member in class:__gnu_parallel::random_number
78 cache(0), bits_left(0) { }
89 cache(0), bits_left(0) { }
110 unsigned long res = cache & ((1 << bits) - 1);
111 cache = cache >> bits;
115 cache |= ((uint64(mt())) << bits_left);
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/5/platforms/android-4/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/5/platforms/android-5/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/5/platforms/android-8/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/6/platforms/android-4/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/6/platforms/android-5/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/6/platforms/android-8/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/6/platforms/android-9/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/7/platforms/android-5/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/7/platforms/android-8/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list
/prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/asm/
H A Dprocinfo.h35 struct cpu_cache_fns *cache; member in struct:proc_info_list

Completed in 872 milliseconds

12345678