HomeSort by relevance Sort by last modified time
    Searched defs:Region (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
Region.py 2 # process FD Region generation
29 ## generate Region
32 class Region(RegionClassObject):
44 # Add region data to the Buffer
47 # @param Buffer The buffer generated region data will be put
48 # @param BaseAddress base address of region
49 # @param BlockSize block size of region
50 # @param BlockNum How many blocks in region
59 GenFdsGlobalVariable.InfLogger('\nGenerate Region at Offset 0x%X' % self.Offset)
60 GenFdsGlobalVariable.InfLogger(" Region Size = 0x%X" % Size)
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
region.h 15 * \brief C++ API: Region classes (territory containment)
31 * <code>Region</code> is the class representing a Unicode Region Code, also known as a
32 * Unicode Region Subtag, which is defined based upon the BCP 47 standard. We often think of
33 * "regions" as "countries" when defining the characteristics of a locale. Region codes There are different
34 * types of region codes that are important to distinguish.
36 * Macroregion - A code for a "macro geographical (continental) region, geographical sub-region, or
41 * Macroregions are represented in ICU by one of three region types: WORLD ( region code 001 )
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/ArmTrustZone/
ArmTrustZone.c 93 UINT32* Region;
99 Region = (UINT32*)((UINTN)TzascBase + TZASC_REGIONS_REG + (RegionId * 0x10));
101 MmioWrite32((UINTN)(Region), LowAddress&0xFFFF8000);
102 MmioWrite32((UINTN)(Region+1), HighAddress);
103 MmioWrite32((UINTN)(Region+2), ((Security & 0xF) <<28) | ((Size & 0x3F) << 1) | (Enabled & 0x1));
  /device/linaro/bootloader/edk2/ArmPlatformPkg/FileSystem/BootMonFs/
BootMonFsReadWrite.c 87 // This driver assumes that the entire file is in region 0.
140 BOOTMON_FS_FILE_REGION *Region;
154 // Allocate and initialize the memory region
155 Region = (BOOTMON_FS_FILE_REGION*)AllocateZeroPool (sizeof (BOOTMON_FS_FILE_REGION));
156 if (Region == NULL) {
161 Region->Buffer = AllocateCopyPool (*BufferSize, Buffer);
162 if (Region->Buffer == NULL) {
164 FreePool (Region);
168 Region->Size = *BufferSize;
169 Region->Offset = File->Position;
    [all...]
BootMonFsHw.h 49 } Region[HW_IMAGE_DESCRIPTION_REGION_MAX];
BootMonFsDir.c 46 BOOTMON_FS_FILE_REGION *Region;
52 FileSize += File->HwDescription.Region[Index].Size;
61 Region = (BOOTMON_FS_FILE_REGION*)RegionToFlushLink;
62 if (Region->Offset + Region->Size > FileSize) {
63 FileSize += Region->Offset + Region->Size;
271 Info->Region[Index].LoadAddress = File->HwDescription.Region[Index].LoadAddress;
272 Info->Region[Index].Size = File->HwDescription.Region[Index].Size;
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Include/Guid/
BootMonFsFileInfo.h 38 } Region[BOOTMONFS_IMAGE_DESCRIPTION_REGION_MAX];
43 OFFSET_OF (BOOTMON_FS_FILE_INFO, Region[BOOTMONFS_IMAGE_DESCRIPTION_REGION_MAX - 1].Checksum)
  /external/llvm/include/llvm/Support/
FileOutputBuffer.h 46 return (uint8_t*)Region->data();
51 return (uint8_t*)Region->data() + Region->size();
56 return Region->size();
83 std::unique_ptr<llvm::sys::fs::mapped_file_region> Region;
  /external/llvm/lib/Analysis/
RegionInfo.cpp 1 //===- RegionInfo.cpp - SESE region detection analysis --------------------===//
28 #define DEBUG_TYPE "region"
43 "verify-region-info",
45 cl::desc("Verify region info (time consuming)"));
48 static cl::opt<Region::PrintStyle, true> printStyleX("print-region-style",
53 clEnumValN(Region::PrintNone, "none", "print no details"),
54 clEnumValN(Region::PrintBB, "bb",
56 clEnumValN(Region::PrintRN, "rn",
62 // Region implementatio
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/
RegularExpressionDxe.c 88 OnigRegion *Region;
132 Region = onig_region_new ();
133 if (Region == NULL) {
143 Region,
157 // If successful, copy out the region (capture) information
160 *CapturesCount = Region->num_regs;
165 // Region beg/end values represent bytes, not characters
167 (*Captures)[Index].CapturePtr = (CHAR16*)((UINTN)String + Region->beg[Index]);
168 (*Captures)[Index].Length = (Region->end[Index] - Region->beg[Index]) / sizeof(CHAR16);
    [all...]
  /external/libchrome/base/files/
memory_mapped_file.h 42 // "region". Depending on the OS, the file may or may not be immediately
53 // Used to hold information about a region [offset + size] of a file.
54 struct BASE_EXPORT Region {
55 static const Region kWholeFile;
57 bool operator==(const Region& other) const;
58 bool operator!=(const Region& other) const;
60 // Start of the region (measured in bytes from the beginning of the file).
63 // Length of the region in bytes.
87 // As above, but works with a region of an already-opened file. All forms of
88 // |access| are allowed. If READ_WRITE_EXTEND is specified then |region|
    [all...]
  /frameworks/compile/mclinker/include/mcld/Fragment/
Fragment.h 29 enum Type { Alignment, Fillment, Region, Target, Stub, Null };
  /external/clang/lib/StaticAnalyzer/Checkers/
DynamicTypeChecker.cpp 58 // The tracked region.
169 const MemRegion *Region = C.getSVal(CE).getAsRegion();
170 if (!Region)
174 DynamicTypeInfo DynTypeInfo = getDynamicTypeInfo(State, Region);
208 reportTypeError(DynType, StaticType, Region, CE, C);
PointerArithChecker.cpp 52 const MemRegion *getArrayRegion(const MemRegion *Region, bool &Polymorphic,
54 const MemRegion *getPointedRegion(const MemRegion *Region,
107 PointerArithChecker::getPointedRegion(const MemRegion *Region,
109 assert(Region);
111 SVal S = State->getSVal(Region);
115 /// Checks whether a region is the part of an array.
118 /// allocation kind of the inspected region.
119 const MemRegion *PointerArithChecker::getArrayRegion(const MemRegion *Region,
123 assert(Region);
124 while (Region->getKind() == MemRegion::Kind::CXXBaseObjectRegionKind)
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ClipRegion2Activity.java 22 import android.graphics.Region;
51 private Region mRegion = new Region();
74 Region.Op.DIFFERENCE);
  /frameworks/native/include/ui/
Region.h 34 class Region : public LightFlattenable<Region>
37 static const Region INVALID_REGION;
39 Region();
40 Region(const Region& rhs);
41 explicit Region(const Rect& rhs);
42 ~Region();
44 static Region createTJunctionFreeRegion(const Region& r)
    [all...]
  /external/llvm/tools/llvm-cov/
SourceCoverageView.h 28 coverage::CounterMappingRegion Region;
31 ExpansionView(const coverage::CounterMappingRegion &Region,
33 : Region(Region), View(std::move(View)) {}
35 : Region(std::move(RHS.Region)), View(std::move(RHS.View)) {}
37 Region = std::move(RHS.Region);
42 unsigned getLine() const { return Region.LineStart; }
43 unsigned getStartCol() const { return Region.ColumnStart;
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Reverb/lib/
LVREV.h 93 /* Memory table containing the region definitions */
96 LVM_MemoryRegion_st Region[LVREV_NR_MEMORY_REGIONS]; /* One definition for each region */
191 /* region base addresses in the memory table before calling this function. */
  /frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
Region.java 41 public class Region {
42 private static final String TAG = "Region";
58 public Region(float[] xy, Bitmap img) {
  /frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/
Region.java 32 public class Region {
33 private static final String TAG = "Region";
49 public Region(float[] xy, Bitmap img) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusheaders.h 6 * Region class definitions.
487 class Region: public GdiplusBase
492 static Region* FromHRGN(HRGN hrgn);
494 Region();
495 Region(const RectF& rect);
496 Region(const Rect& rect);
497 Region(const GraphicsPath *path);
498 Region(const BYTE *regionData, INT size);
499 Region(HRGN hrgn);
500 ~Region();
    [all...]
  /external/icu/icu4c/source/i18n/
region.cpp 10 * File REGION.CPP
20 * \brief C++ API: Region classes (territory containment)
23 #include "unicode/region.h"
44 delete (icu::Region *)obj;
52 icu::Region::cleanupRegionData();
77 * Initializes the region data from the ICU resource bundles. The region data
81 * If the region data has already loaded, then this method simply returns without doing
84 void U_CALLCONV Region::loadRegionData(UErrorCode &status) {
104 LocalUResourceBundlePointer regionList(ures_getByKey(idValidity.getAlias(),"region",NULL,&status))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
RegionInfo.cpp 1 //===- RegionInfo.cpp - SESE region detection analysis --------------------===//
22 #define DEBUG_TYPE "region"
38 VerifyRegionInfoX("verify-region-info", cl::location(VerifyRegionInfo),
39 cl::desc("Verify region info (time consuming)"));
44 static cl::opt<enum Region::PrintStyle> printStyle("print-region-style",
48 clEnumValN(Region::PrintNone, "none", "print no details"),
49 clEnumValN(Region::PrintBB, "bb",
51 clEnumValN(Region::PrintRN, "rn",
55 /// Region Implementatio
    [all...]
  /frameworks/native/libs/ui/
Region.cpp 17 #define LOG_TAG "Region"
27 #include <ui/Region.h>
56 const Region Region::INVALID_REGION(Rect::INVALID_RECT);
60 Region::Region() {
64 Region::Region(const Region& rhs)
72 Region::Region(const Rect& rhs)
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Application/LinuxLoader/
LinuxLoaderFdt.c 119 // Load the Original FDT tree into the new region
154 FDT_REGION Region;
265 Region.Base = cpu_to_fdtn ((UINTN)Resource->PhysicalStart);
266 Region.Size = cpu_to_fdtn ((UINTN)Resource->ResourceLength);
268 err = fdt_setprop (fdt, node, "reg", &Region, sizeof (Region));
270 DEBUG ((EFI_D_ERROR, "Fail to set new 'memory region' (err:%d)\n", err));
295 // Go through the list and add the reserved region to the Device Tree
300 DEBUG ((DEBUG_VERBOSE, "Reserved region of type %d [0x%lX, 0x%lX]\n",

Completed in 630 milliseconds

1 2 3 4 5