/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xregion.h | 1 /* $Xorg: region.h,v 1.4 2001/02/09 02:03:40 xorgcvs Exp $ */ 73 * clip region 81 } REGION; 84 * typedef struct _XRegion *Region; 89 * Remember, x2 and y2 are not in the region 98 * update region extents 112 * Check to see if there is enough memory in the present region. 136 /* add a rectangle to the given Region */ 152 /* add a rectangle to the given Region */
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_allocator.h | 290 // Region: a part of Space dedicated to a single size class. 296 // A Region looks like this: 332 RegionInfo *region = GetRegionInfo(class_id); local 333 Batch *b = region->free_list.Pop(); 335 b = PopulateFreeList(stat, c, class_id, region); 336 region->n_allocated += b->count; 341 RegionInfo *region = GetRegionInfo(class_id); local 343 region->free_list.Push(b); 344 region->n_freed += b->count; 364 RegionInfo *region = GetRegionInfo(class_id) 402 RegionInfo *region = GetRegionInfo(class_id); local 411 RegionInfo *region = GetRegionInfo(class_id); local 442 RegionInfo *region = GetRegionInfo(class_id); local [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
ArrayBoundCheckerV2.cpp | 69 const MemRegion *region) { 71 switch (region->getKind()) { 79 region = cast<SubRegion>(region)->getSuperRegion(); 89 // some new logic here that reasons directly about memory region extents. 94 // memory access is within the extent of the base region. Since we 95 // have some flexibility in defining the base region, we can achieve 109 // before the first valid offset in the memory region. 264 /// Compute a raw byte offset from a base region. Used for array bounds 270 const MemRegion *region = location.getAsRegion() local [all...] |
/frameworks/base/graphics/java/android/graphics/ |
BitmapRegionDecoder.java | 27 * BitmapRegionDecoder can be used to decode a rectangle region from an image. 33 * to get a decoded Bitmap of the specified region. 166 region decoder int (pointer). 176 * Decodes a rectangle region in the image specified by rect. 178 * @param rect The rectangle that specified the region to be decode. 186 checkRecycled("decodeRegion called on recycled region decoder"); 198 checkRecycled("getWidth called on recycled region decoder"); 206 checkRecycled("getHeight called on recycled region decoder"); 212 * Frees up the memory associated with this region decoder, and mark the 213 * region decoder as "dead", meaning it will throw an exception if decodeRegion() [all...] |
/frameworks/native/services/surfaceflinger/ |
Layer.h | 34 #include <ui/Region.h> 74 Region visibleRegion; 75 Region coveredRegion; 76 Region visibleNonTransparentRegion; 109 Region activeTransparentRegion; 110 Region requestedTransparentRegion; 144 bool setTransparentRegionHint(const Region& transparent); 195 virtual void draw(const sp<const DisplayDevice>& hw, const Region& clip) const; 201 virtual void onDraw(const sp<const DisplayDevice>& hw, const Region& clip) const; 215 * setVisibleRegion - called to set the new visible region. This give [all...] |
/external/chromium/base/win/ |
i18n.cc | 87 bool GetUserDefaultUILanguage(std::wstring* language, std::wstring* region) { 101 region->clear(); 106 DPCHECK(0 != result_length) << "Failed getting region id"; 108 region->assign(&result_buffer[0], result_length - 1); 124 std::wstring region; local 134 } else if (GetUserDefaultUILanguage(&language, ®ion)) { 137 if (!region.empty()) 140 .append(region));
|
/external/chromium/net/disk_cache/ |
mem_entry_impl.h | 37 // can only be one continous filled region in a sparse entry, as illustrated by 40 // x = unfilled region 41 // o = filled region 42 // It is guranteed that there is at most one unfilled region and one filled 43 // region, and the unfilled region (if there is one) is always before the filled 44 // region. The book keeping for filled region in a sparse entry is done by using
|
/external/llvm/include/llvm/Analysis/ |
RegionPrinter.h | 1 //===-- RegionPrinter.h - Region printer external interface -----*- C++ -*-===// 11 // instantiate the region printer.
|
/external/llvm/test/Analysis/RegionInfo/ |
multiple_exiting_edge.ll | 1 ; RUN: opt -regions -print-region-style=bb -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s 2 ; RUN: opt -regions -print-region-style=rn -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
|
/external/llvm/test/Feature/ |
md_on_instruction.ll | 10 call void @llvm.dbg.region.end(metadata !0) 17 declare void @llvm.dbg.region.end(metadata) nounwind readnone
|
/external/llvm/test/Linker/ |
2009-09-03-mdnode.ll | 19 call void @llvm.dbg.region.end(metadata !0) 27 declare void @llvm.dbg.region.end(metadata) nounwind readnone
|
2009-09-03-mdnode2.ll | 14 call void @llvm.dbg.region.end(metadata !0) 22 declare void @llvm.dbg.region.end(metadata) nounwind readnone
|
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/ |
LVPSA_Init.c | 88 InstAlloc_Init( &Instance , pMemoryTable->Region[LVPSA_MEMREGION_INSTANCE].pBaseAddress); 89 InstAlloc_Init( &Scratch , pMemoryTable->Region[LVPSA_MEMREGION_SCRATCH].pBaseAddress); 90 InstAlloc_Init( &Data , pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_DATA].pBaseAddress); 91 InstAlloc_Init( &Coef , pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_COEF].pBaseAddress); 105 if (pMemoryTable->Region[ii].Size!=0) 107 if (pMemoryTable->Region[ii].pBaseAddress==LVM_NULL) 111 pLVPSA_Inst->MemoryTable.Region[ii] = pMemoryTable->Region[ii];
|
/frameworks/base/tests/TileBenchmark/res/values/ |
colors.xml | 23 <!-- Invalidated region overlay in playback - start color --> 25 <!-- Invalidated region overlay in playback - stop color-->
|
/frameworks/compile/libbcc/include/bcinfo/Wrap/ |
wrapper_output.h | 17 // Defines a generic interface to a file/memory region that 29 // The following is a generic interface to a file/memory region
|
/hardware/qcom/display/libcopybit/ |
copybit.h | 158 /* Region */ 160 int (*next)(struct copybit_region_t const *region, struct copybit_rect_t *rect); 206 * @param region the clip region 213 struct copybit_region_t const *region); 223 * @param region the clip region 232 struct copybit_region_t const *region);
|
/packages/apps/Mms/src/com/android/mms/layout/ |
LayoutParameters.java | 41 * Get the width of the image region of current layout. 45 * Get the height of the text region of current layout.
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/ |
HashList.cs | 53 #region Helper classes 70 #region Constructors 92 #region IDictionaryEnumerator Members 132 #region IEnumerator Members 188 #region Constructors 245 #region ICollection Members 269 #region IEnumerable Members 283 #region Constructors 316 #region ICollection Members 340 #region IEnumerable Member [all...] |
/frameworks/av/media/libeffects/lvm/lib/Eq/lib/ |
LVEQNB.h | 96 #define LVEQNB_MEMREGION_INSTANCE 0 /* Offset to the instance memory region */ 97 #define LVEQNB_MEMREGION_PERSISTENT_DATA 1 /* Offset to persistent data memory region */ 98 #define LVEQNB_MEMREGION_PERSISTENT_COEF 2 /* Offset to persistent coefficient region */ 99 #define LVEQNB_MEMREGION_SCRATCH 3 /* Offset to data scratch memory region */ 225 /* Memory region definition */ 228 LVM_UINT32 Size; /* Region size in bytes */ 229 LVM_UINT16 Alignment; /* Region alignment in bytes */ 230 LVEQNB_MemoryTypes_en Type; /* Region type */ 231 void *pBaseAddress; /* Pointer to the region base address */ 235 /* Memory table containing the region definitions * [all...] |
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/ |
LVREV_GetInstanceHandle.c | 74 if (pMemoryTable->Region[i].Size!=0) 76 if (pMemoryTable->Region[i].pBaseAddress==LVM_NULL) 103 InstAlloc_Init(&SlowData, pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress); 104 InstAlloc_Init(&FastData, pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress); 105 InstAlloc_Init(&FastCoef, pMemoryTable->Region[LVM_PERSISTENT_FAST_COEF].pBaseAddress); 106 InstAlloc_Init(&Temporary, pMemoryTable->Region[LVM_TEMPORARY_FAST].pBaseAddress); 111 LoadConst_16(0, (LVM_INT16 *)pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].pBaseAddress, (LVM_INT16)((pMemoryTable->Region[LVM_PERSISTENT_SLOW_DATA].Size)/sizeof(LVM_INT16))); 112 LoadConst_16(0, (LVM_INT16 *)pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].pBaseAddress, (LVM_INT16)((pMemoryTable->Region[LVM_PERSISTENT_FAST_DATA].Size)/sizeof(LVM_INT16))) [all...] |
/external/qemu/android/skin/ |
region.c | 12 #include "android/skin/region.h" 53 /* this implementation of regions encodes the the region's spans with the 56 region ::= yband+ YSENTINEL 73 typedef SkinRegion Region; 84 region_isEmpty( Region* r ) 90 region_isRect( Region* r ) 96 region_isComplex( Region* r ) 176 region_edit( Region* r ) 369 /* empty region */ 765 Region result[1] [all...] |
/dalvik/vm/ |
LinearAlloc.h | 30 * allocated region, but that would prevent us from sharing the rest of 37 char* mapAddr; /* start of mmap()ed region */ 38 int mapLength; /* length of region */ 46 * Create a new alloc region. 51 * Destroy a region.
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
Clipping.java | 75 canvas.clipRect(30, 30, 70, 70, Region.Op.DIFFERENCE); 84 canvas.clipPath(mPath, Region.Op.REPLACE); 91 canvas.clipRect(40, 40, 100, 100, Region.Op.UNION); 98 canvas.clipRect(40, 40, 100, 100, Region.Op.XOR); 105 canvas.clipRect(40, 40, 100, 100, Region.Op.REVERSE_DIFFERENCE);
|
/external/llvm/include/llvm/Support/ |
FileOutputBuffer.h | 49 return (uint8_t*)Region->data(); 54 return (uint8_t*)Region->data() + Region->size(); 59 return Region->size(); 86 OwningPtr<llvm::sys::fs::mapped_file_region> Region;
|
/external/webkit/Source/JavaScriptCore/wtf/ |
OSAllocator.h | 46 // releaseDecommitted should be called on a region of VM allocated by a single reservation, 51 // These methods are symmetric; they commit or decommit a region of VM (uncommitted VM should 58 // decommitAndRelease should be called on a region of VM allocated by a single reservation, 64 // committing/decommitting the entire region additional parameters allow a subregion to be 82 // implicitly decommit any physical memory in the region. This is not true on WINCE.
|