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

1 2 3 4

  /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...]
  /device/google/dragon/recovery/updater/
flash_device.c 27 #include "fmap.h"
40 struct fmap *fmap; member in struct:flash_device
72 dev->fmap = NULL;
92 if (dev->fmap)
93 free(dev->fmap);
128 struct fmap *flash_get_fmap(struct flash_device *dev)
130 if (!dev->fmap) {
133 dev->fmap = fmap_load(dev, off);
136 if (!dev->fmap)
    [all...]
vboot_interface.c 29 #include "fmap.h"
125 struct fmap h;
130 * Try to find the FMAP signature at 64-byte boundaries
145 struct fmap *fmap_load(struct flash_device *dev, off_t offset)
147 struct fmap hdr;
148 struct fmap *fmap; local
152 ALOGD("Searching FMAP @0x%08lx\n", offset);
155 ALOGD("Cannot read FMAP header\n");
160 ALOGD("Cannot find FMAP\n")
181 struct fmap *fmap = flash_get_fmap(dev); local
207 struct fmap *fmap = flash_get_fmap(dev); local
    [all...]
fmap.h 22 #define FMAP_VER_MAJOR 1 /* this header's FMAP minor version */
23 #define FMAP_VER_MINOR 1 /* this header's FMAP minor version */
40 struct fmap { struct
fwtool.cpp 29 #include "fmap.h"
56 struct fmap *fmap; local
58 fmap = flash_get_fmap(dev);
59 if (!fmap)
62 printf("FMAP '%s' ver %d.%d base 0x%" PRIx64 " size 0x%x\n",
63 fmap->name, fmap->ver_major, fmap->ver_minor,
64 fmap->base, fmap->size)
    [all...]
vboot_interface.h 31 struct fmap *fmap_load(struct flash_device *dev, off_t offset);
  /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"
21 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
96 It fetches the FMap data from the active firmware via mosys.
139 logging.error('Missing RW_SECTION_A section in FMAP')
142 logging.error('Missing RW_SECTION_B section in FMAP')
154 logging.error('Missing RW_LEGACY section in FMAP')
171 @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
data_fmap2_expect_hh.txt 24 FMAP 000a0000 000a1000 00001000
  /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",
cmd_dump_fmap.c 18 #include "fmap.h"
299 * arbitrarily-ordered FMAP entries, and then to prune it until it's as
303 /* Convert the FMAP info into our format. */
398 "Display (and extract) the FMAP components from a BIOS image.\n"
421 const FmapHeader *fmap; local
490 fmap = fmap_find(base_of_rom, size_of_rom);
491 if (fmap) {
494 retval = human_fmap(fmap);
498 (uint32_t) ((char *)fmap - (char *)base_of_rom));
502 dump_fmap(fmap, argc - optind - 1
    [all...]
  /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 94 fMap(map)
111 fCsp(o.fCsp), fMap(o.fMap)
121 fMap = o.fMap;
159 result=fMap(fCsp, c, utrans_rep_caseContextIterator, &csc, &s, "", &locCache);
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/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...]
  /external/skia/src/core/
SkRemote.cpp 548 SkASSERT(fMap.count() == 0);
553 fMap.set(id, val);
558 fMap.remove(id);
563 T* val = fMap.find(id);
569 SkTHashMap<ID, T> fMap;
579 SkASSERT(fMap.count() == 0);
584 fMap.set(id, SkSafeRef(val));
589 T** val = fMap.find(id);
592 fMap.remove(id);
597 T** val = fMap.find(id)
    [all...]

Completed in 457 milliseconds

1 2 3 4