/external/clang/test/CodeGenCXX/ |
2006-03-01-GimplifyCrash.cpp | 9 PrefMapElem* fMap; 10 if (fMap[0].fPrefId == 1)
|
/external/vboot_reference/host/lib/ |
fmap.c | 10 #include "fmap.h" 22 fprintf(stderr, "Found FMAP, but major version is %u instead of %u\n", 27 /* Find and point to the FMAP header within the buffer */ 36 /* Search large alignments before small ones to find "right" FMAP. */ 47 uint8_t *fmap_find_by_name(uint8_t *ptr, size_t size, FmapHeader *fmap, 53 if (!fmap) 54 fmap = fmap_find(ptr, size); 55 if (!fmap) 58 ah = (FmapAreaHeader*)((void *)fmap + sizeof(FmapHeader)); 59 for (i = 0; i < fmap->fmap_nareas; i++ [all...] |
/external/skia/src/core/ |
SkLRUCache.h | 46 Entry** value = fMap.find(key); 60 fMap.set(entry); 62 while (fMap.count() > fMaxCount) { 69 return fMap.count(); 82 fMap.reset(); 101 Entry** value = fMap.find(key); 105 fMap.remove(key); 111 SkTHashTable<Entry*, K, Traits> fMap;
|
/external/skqp/src/core/ |
SkLRUCache.h | 46 Entry** value = fMap.find(key); 60 fMap.set(entry); 62 while (fMap.count() > fMaxCount) { 69 return fMap.count(); 82 fMap.reset(); 101 Entry** value = fMap.find(key); 105 fMap.remove(key); 111 SkTHashTable<Entry*, K, Traits> fMap;
|
/external/autotest/server/site_tests/firmware_FMap/ |
control | 9 PURPOSE = "Check the existence of BIOS and EC FMap and the required FMap areas" 10 CRITERIA = "This test will fail if the required FMap areas not existed" 20 FMap areas and verifies their hierarchies. It relies on flashrom to dump
|
control.dev | 9 PURPOSE = "Check the existence of BIOS and EC FMap and the required FMap areas" 10 CRITERIA = "This test will fail if the required FMap areas not existed" 20 FMap areas and verifies their hierarchies. It relies on flashrom to dump
|
firmware_FMap.py | 24 'FMAP': {}, 46 'FMAP': {}, 56 """Provides access to firmware FMap""" 68 """Client-side FMap test. 71 FMap areas and verifies their hierarchies. It relies on flashrom to dump 97 It fetches the FMap data from the active firmware via mosys. 140 logging.error('Missing RW_SECTION_A section in FMAP') 143 logging.error('Missing RW_SECTION_B section in FMAP') 155 logging.error('Missing RW_LEGACY section in FMAP') 172 @param expected_tree: A hierarchy dict of the expected FMap tree [all...] |
/external/vboot_reference/tests/futility/data/ |
README | 3 bios_mario_mp.bin uses old names for the FMAP areas
|
/external/vboot_reference/tests/futility/ |
data_fmap_expect_x.txt | 6 fmap_name: FMAP
|
data_fmap_expect_x2.txt | 6 fmap_name: FMAP
|
test_dump_fmap.sh | 12 # Good FMAP 24 # contain the stuff that the FMAP claims it does. 25 if "$FUTILITY" dump_fmap -x "${SCRIPTDIR}/data_fmap.bin" FMAP; then false; fi 39 # This FMAP has problems, and should fail. 51 rm -f ${TMP}* FMAP SI_DESC FOO
|
data_fmap_expect_p.txt | 26 FMAP 6356992 2048
|
data_fmap_expect_h.txt | 9 FMAP 00610000 00610800 00000800
|
/external/vboot_reference/futility/ |
traversal.c | 11 #include "fmap.h" 87 * The Chrome OS BIOS must contain specific FMAP areas, and we generally want 115 static int has_all_areas(uint8_t *buf, uint32_t len, FmapHeader *fmap, 120 if (!fmap_find_by_name(buf, len, fmap, area->name, 0)) 129 FmapHeader *fmap = fmap_find(buf, len); local 130 if (fmap) { 131 if (has_all_areas(buf, len, fmap, bios_area)) 133 if (has_all_areas(buf, len, fmap, old_bios_area)) 201 FmapHeader *fmap; local 223 fmap = fmap_find(buf, len) [all...] |
cmd_load_fmap.c | 20 #include "fmap.h" 27 "Replace the contents of specific FMAP areas. This is the complement\n" 97 FmapHeader *fmap; local 157 fmap = fmap_find(buf, len); 158 if (!fmap) { 159 fprintf(stderr, "Can't find an FMAP in %s\n", infile); 174 uint8_t *area_buf = fmap_find_by_name(buf, len, fmap, a, &ah); 176 fprintf(stderr, "Can't find area \"%s\" in FMAP\n", a); 203 "Replace the contents of specified FMAP areas",
|
/external/skia/src/gpu/vk/ |
GrVkPipelineStateCache.cpp | 40 : fMap(kMaxEntries) 49 SkASSERT(0 == fMap.count()); 65 fMap.foreach([](std::unique_ptr<Entry>* e) { 69 fMap.reset(); 73 fMap.reset(); 102 std::unique_ptr<Entry>* entry = fMap.find(desc); 108 entry = fMap.find(desc); 125 entry = fMap.insert(desc, std::unique_ptr<Entry>(new Entry(fGpu, pipelineState)));
|
/external/skqp/src/gpu/vk/ |
GrVkPipelineStateCache.cpp | 40 : fMap(kMaxEntries) 49 SkASSERT(0 == fMap.count()); 65 fMap.foreach([](std::unique_ptr<Entry>* e) { 69 fMap.reset(); 73 fMap.reset(); 102 std::unique_ptr<Entry>* entry = fMap.find(desc); 108 entry = fMap.find(desc); 125 entry = fMap.insert(desc, std::unique_ptr<Entry>(new Entry(fGpu, pipelineState)));
|
/external/autotest/client/cros/cellular/pseudomodem/ |
connect_cdma_machine.py | 44 fmap = super(ConnectCdmaMachine, self)._GetModemStateFunctionMap() 45 fmap[mm1_constants.MM_MODEM_STATE_REGISTERED] = \ 47 return fmap
|
/external/vboot_reference/host/lib/include/ |
fmap.h | 13 /* FMAP structs. See http://code.google.com/p/flashmap/wiki/FmapSpec */ 37 /* Find and point to the FMAP header within the buffer */ 43 FmapHeader *fmap,
|
/external/icu/icu4c/source/i18n/ |
casetrn.cpp | 95 fMap(map) 112 fMap(o.fMap) 121 fMap = o.fMap; 159 result=fMap(c, utrans_rep_caseContextIterator, &csc, &s, UCASE_LOC_ROOT); 162 // fMap() tried to look beyond the context limit
|
/external/dng_sdk/source/ |
dng_gain_map.cpp | 33 const dng_gain_map &fMap; 101 : fMap (map) 125 fMap.Origin ().v) / fMap.Spacing ().v; 140 if (fMap.Points ().v < 1) 144 uint32 lastRow = static_cast<uint32> (fMap.Points ().v - 1); 180 return fMap.Entry (fRowIndex1, colIndex, fPlane) * (1.0f - fRowFract) + 181 fMap.Entry (fRowIndex2, colIndex, fPlane) * ( fRowFract); 191 fMap.Origin ().h) / fMap.Spacing ().h [all...] |
/external/skia/src/gpu/gl/ |
GrGLGpuProgramCache.cpp | 33 : fMap(kMaxEntries) 82 std::unique_ptr<Entry>* entry = fMap.find(desc); 88 entry = fMap.find(desc); 99 entry = fMap.insert(desc, std::unique_ptr<Entry>(new Entry(sk_sp<GrGLProgram>(program))));
|
/external/skqp/src/gpu/gl/ |
GrGLGpuProgramCache.cpp | 33 : fMap(kMaxEntries) 82 std::unique_ptr<Entry>* entry = fMap.find(desc); 88 entry = fMap.find(desc); 99 entry = fMap.insert(desc, std::unique_ptr<Entry>(new Entry(sk_sp<GrGLProgram>(program))));
|
/external/autotest/server/site_tests/platform_Flashrom/ |
platform_Flashrom.py | 57 def _get_eeprom(self, fmap): 58 """Get fmap start and size. 60 @return tuple for start and size for fmap. 64 output = self.run_cmd('mosys eeprom map | grep %s' % fmap) 66 logging.info('fmap %s', fmap_data)
|
/external/bzip2/ |
blocksort.c | 32 void fallbackSimpleSort ( UInt32* fmap, 44 tmp = fmap[i]; 46 for ( j = i+4; j <= hi && ec_tmp > eclass[fmap[j]]; j += 4 ) 47 fmap[j-4] = fmap[j]; 48 fmap[j-4] = tmp; 53 tmp = fmap[i]; 55 for ( j = i+1; j <= hi && ec_tmp > eclass[fmap[j]]; j++ ) 56 fmap[j-1] = fmap[j] [all...] |