/system/extras/libpagemap/ |
pm_process.c | 83 error = pm_map_usage(proc->maps[i], &map_usage); 138 pm_map_t **maps; local 144 maps = malloc(proc->num_maps * sizeof(pm_map_t*)); 145 if (!maps) 148 memcpy(maps, proc->maps, proc->num_maps * sizeof(pm_map_t*)); 150 *maps_out = maps; 173 error = pm_map_workingset(proc->maps[i], &map_ws); 205 free(proc->maps); 227 pm_map_t *map, **maps, **new_maps local [all...] |
/external/openssl/crypto/x509v3/ |
pcy_map.c | 69 int policy_cache_set_mapping(X509 *x, POLICY_MAPPINGS *maps) 76 if (sk_POLICY_MAPPING_num(maps) == 0) 81 for (i = 0; i < sk_POLICY_MAPPING_num(maps); i++) 83 map = sk_POLICY_MAPPING_value(maps, i); 129 sk_POLICY_MAPPING_pop_free(maps, POLICY_MAPPING_free);
|
/external/oprofile/daemon/liblegacy/ |
opd_proc.h | 27 /** maps are always added to the end of head, so search will be done 30 struct list_head maps; member in struct:opd_proc
|
opd_mapping.c | 59 list_for_each_safe(pos, pos2, &proc->maps) { 79 if (list_empty(&proc->maps)) { 91 list_add_tail(&map->next, &proc->maps);
|
opd_parse_proc.c | 86 * opd_get_ascii_maps - read all maps for a process 89 * Read the /proc/<pid>/maps file and add all 105 strcat(mapsfile, "/maps"); 132 list_for_each(pos, &proc->maps) { 135 if (pos != proc->maps.next) { 144 if (list_empty(&proc->maps)) { 145 /* we always need a valid proc->maps[0], we artificially give 148 * thread when adding vmlinux and module maps to proc->maps[]
|
/external/freetype/src/psnames/ |
psmodule.c | 297 /* Build a table that maps Unicode values to glyph indices. */ 314 table->maps = 0; 316 if ( !FT_NEW_ARRAY( table->maps, num_glyphs + EXTRA_GLYPH_LIST_SIZE ) ) 324 map = table->maps; 365 count = (FT_UInt)( map - table->maps ); 370 FT_FREE( table->maps ); 379 (void)FT_RENEW_ARRAY( table->maps, num_glyphs, count ); 385 ft_qsort( table->maps, count, sizeof ( PS_UniMap ), 405 min = table->maps; 461 map = table->maps + mid [all...] |
/frameworks/base/tools/layoutlib/bridge/src/com/google/android/maps/ |
MapView.java | 17 package com.google.android.maps;
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
line-map.h | 76 struct line_map * GTY ((length ("%h.used"))) maps; 103 /* If non-null, the allocator to use when resizing 'maps'. If null, 137 maps, so any stored line_map pointers should not be used. */ 170 #define INCLUDED_FROM(SET, MAP) (&(SET)->maps[(MAP)->included_from])
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/ |
line-map.h | 76 struct line_map * GTY ((length ("%h.used"))) maps; 103 /* If non-null, the allocator to use when resizing 'maps'. If null, 137 maps, so any stored line_map pointers should not be used. */ 170 #define INCLUDED_FROM(SET, MAP) (&(SET)->maps[(MAP)->included_from])
|
/prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/ |
line-map.h | 76 struct line_map * GTY ((length ("%h.used"))) maps; 103 /* If non-null, the allocator to use when resizing 'maps'. If null, 137 maps, so any stored line_map pointers should not be used. */ 170 #define INCLUDED_FROM(SET, MAP) (&(SET)->maps[(MAP)->included_from])
|
/external/quake/quake/src/QW/client/ |
r_light.c | 154 int maps; local 219 for (maps = 0 ; maps < MAXLIGHTMAPS && surf->styles[maps] != 255 ; 220 maps++) 222 scale = d_lightstylevalue[surf->styles[maps]];
|
gl_rlight.c | 280 int maps; local 347 for (maps = 0 ; maps < MAXLIGHTMAPS && surf->styles[maps] != 255 ; 348 maps++) 350 scale = d_lightstylevalue[surf->styles[maps]];
|
gl_rsurf.c | 145 int maps; local 169 for (maps = 0 ; maps < MAXLIGHTMAPS && surf->styles[maps] != 255 ; 170 maps++) 172 scale = d_lightstylevalue[surf->styles[maps]]; 173 surf->cached_light[maps] = scale; // 8.8 fraction 788 int maps; local 822 for (maps = 0 ; maps < MAXLIGHTMAPS && fa->styles[maps] != 255 867 int maps; local [all...] |
r_surf.c | 139 int maps; local 163 for (maps = 0 ; maps < MAXLIGHTMAPS && surf->styles[maps] != 255 ; 164 maps++) 166 scale = r_drawsurf.lightadj[maps]; // 8.8 fraction
|
/external/quake/quake/src/WinQuake/ |
r_light.cpp | 154 int maps;
local 219 for (maps = 0 ; maps < MAXLIGHTMAPS && surf->styles[maps] != 255 ;
220 maps++)
222 scale = d_lightstylevalue[surf->styles[maps]];
|
gl_rlight.cpp | 283 int maps;
local 350 for (maps = 0 ; maps < MAXLIGHTMAPS && surf->styles[maps] != 255 ;
351 maps++)
353 scale = d_lightstylevalue[surf->styles[maps]];
|
r_surf.cpp | 156 int maps;
local 180 for (maps = 0 ; maps < MAXLIGHTMAPS && surf->styles[maps] != 255 ;
181 maps++)
183 scale = r_drawsurf.lightadj[maps]; // 8.8 fraction
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
HandleNativeHeap.java | 161 byte[] maps = new byte[mapSize]; 162 buffer.get(maps, 0, mapSize); 163 parseMaps(cd, maps); 238 private void parseMaps(ClientData cd, byte[] maps) { 239 InputStreamReader input = new InputStreamReader(new ByteArrayInputStream(maps));
|
/system/core/toolbox/ |
lsof.c | 101 FILE *maps; local 110 strncat(info->path, "maps", sizeof(info->path)); 112 maps = fopen(info->path, "r"); 113 if (!maps) 116 while (fscanf(maps, "%*x-%*x %*s %zx %5s %ld %s\n", &offset, device, &inode, 118 // We don't care about non-file maps 127 fclose(maps);
|
/external/v8/test/mjsunit/regress/ |
regress-1493017.js | 28 // Test collection of abandoned maps. Tests that deleted map 31 // Flags: --expose-gc --collect-maps 42 // Force a global GC. This will collect the maps starting from C and
|
/system/extras/librank/ |
librank.c | 177 pm_map_t **maps; local 239 error = pm_process_maps(proc, &maps, &num_maps); 241 fprintf(stderr, "Error listing maps for process %d.\n", proc->pid); 246 if (prefix && (strncmp(pm_map_name(maps[j]), prefix, prefix_len))) 249 li = get_library(pm_map_name(maps[j])); 255 error = pm_map_usage(maps[j], &map_usage); 259 pm_map_name(maps[j]), proc->pid);
|
/external/webkit/LayoutTests/fast/url/script-tests/ |
scheme.js | 8 // an API that always maps to absolute URLs. If you know of one, please
|
/sdk/eclipse/buildConfig/ |
build.properties | 168 mapsRoot=path/to/maps 180 # By default thebuilder will use whatever is in the maps.
|
/external/tremolo/Tremolo/ |
treminfo.c | 144 for(i=0;i<ci->maps;i++) /* unpack does the range checking */ 281 ci->maps=oggpack_read(opb,6)+1; 282 ci->map_param=_ogg_malloc(sizeof(*ci->map_param)*ci->maps); 283 for(i=0;i<ci->maps;i++){ 297 if(ci->mode_param[i].mapping>=ci->maps)goto err_out;
|
/frameworks/base/data/keyboards/ |
Android.mk | 21 # Validate all key maps.
|