Searched refs:region (Results 1 - 25 of 370) sorted by relevance

1234567891011>>

/external/clang/test/Lexer/
H A Dpragma-region.c1 /* Test pragma region directive from
6 // #pragma region optional name
11 #pragma region
15 #pragma region long name
22 __pragma(region) // no sense, but ignored
23 _Pragma("region")// ditto
27 #pragma region one
28 #pragma region inner
33 // {{unclosed pragma region}} - region mismatche
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_regions.c112 intel_region_map(struct intel_context *intel, struct intel_region *region, argument
115 /* We have the region->map_refcount controlling mapping of the BO because
127 if (drm_intel_bo_busy(region->bo)) {
132 _DBG("%s %p\n", __FUNCTION__, region);
133 if (!region->map_refcount) {
136 if (region->tiling != I915_TILING_NONE)
137 drm_intel_gem_bo_map_gtt(region->bo);
139 drm_intel_bo_map(region->bo, true);
141 region->map = region
152 intel_region_unmap(struct intel_context *intel, struct intel_region *region) argument
173 struct intel_region *region; local
201 struct intel_region *region; local
223 intel_region_flink(struct intel_region *region, uint32_t *name) argument
244 struct intel_region *region, *dummy; local
306 struct intel_region *region = *region_handle; local
406 intel_region_get_tile_masks(struct intel_region *region, uint32_t *mask_x, uint32_t *mask_y, bool map_stencil_as_y_tiled) argument
439 intel_region_get_aligned_offset(struct intel_region *region, uint32_t x, uint32_t y, bool map_stencil_as_y_tiled) argument
[all...]
H A Dintel_tex_copy.c56 struct intel_region *region; local
69 region = irb->mt->region;
70 assert(region);
108 if (intelImage->mt->region->tiling == I915_TILING_Y) {
115 src_pitch = -region->pitch;
118 src_pitch = region->pitch;
125 region->bo,
127 region->tiling,
128 intelImage->mt->region
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_regions.c112 intel_region_map(struct intel_context *intel, struct intel_region *region, argument
115 /* We have the region->map_refcount controlling mapping of the BO because
127 if (drm_intel_bo_busy(region->bo)) {
132 _DBG("%s %p\n", __FUNCTION__, region);
133 if (!region->map_refcount) {
136 if (region->tiling != I915_TILING_NONE)
137 drm_intel_gem_bo_map_gtt(region->bo);
139 drm_intel_bo_map(region->bo, true);
141 region->map = region
152 intel_region_unmap(struct intel_context *intel, struct intel_region *region) argument
173 struct intel_region *region; local
201 struct intel_region *region; local
223 intel_region_flink(struct intel_region *region, uint32_t *name) argument
244 struct intel_region *region, *dummy; local
306 struct intel_region *region = *region_handle; local
406 intel_region_get_tile_masks(struct intel_region *region, uint32_t *mask_x, uint32_t *mask_y, bool map_stencil_as_y_tiled) argument
439 intel_region_get_aligned_offset(struct intel_region *region, uint32_t x, uint32_t y, bool map_stencil_as_y_tiled) argument
[all...]
H A Dgen7_misc_state.c71 intel_region_get_tile_masks(depth_mt->region,
76 intel_region_get_tile_masks(hiz_mt->region,
156 struct intel_region *region = depth_mt->region; local
182 offset = intel_region_get_aligned_offset(region,
187 assert(region->tiling == I915_TILING_Y);
192 OUT_BATCH(((region->pitch * region->cpp) - 1) |
198 OUT_RELOC(region->bo,
217 intel_region_get_aligned_offset(hiz_mt->region,
[all...]
H A Dintel_tex_copy.c56 struct intel_region *region; local
69 region = irb->mt->region;
70 assert(region);
108 if (intelImage->mt->region->tiling == I915_TILING_Y) {
115 src_pitch = -region->pitch;
118 src_pitch = region->pitch;
125 region->bo,
127 region->tiling,
128 intelImage->mt->region
[all...]
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_regions.c112 intel_region_map(struct intel_context *intel, struct intel_region *region, argument
115 /* We have the region->map_refcount controlling mapping of the BO because
127 if (drm_intel_bo_busy(region->bo)) {
132 _DBG("%s %p\n", __FUNCTION__, region);
133 if (!region->map_refcount) {
136 if (region->tiling != I915_TILING_NONE)
137 drm_intel_gem_bo_map_gtt(region->bo);
139 drm_intel_bo_map(region->bo, true);
141 region->map = region
152 intel_region_unmap(struct intel_context *intel, struct intel_region *region) argument
173 struct intel_region *region; local
201 struct intel_region *region; local
223 intel_region_flink(struct intel_region *region, uint32_t *name) argument
244 struct intel_region *region, *dummy; local
306 struct intel_region *region = *region_handle; local
406 intel_region_get_tile_masks(struct intel_region *region, uint32_t *mask_x, uint32_t *mask_y, bool map_stencil_as_y_tiled) argument
439 intel_region_get_aligned_offset(struct intel_region *region, uint32_t x, uint32_t y, bool map_stencil_as_y_tiled) argument
[all...]
H A Dintel_tex_copy.c56 struct intel_region *region; local
69 region = irb->mt->region;
70 assert(region);
108 if (intelImage->mt->region->tiling == I915_TILING_Y) {
115 src_pitch = -region->pitch;
118 src_pitch = region->pitch;
125 region->bo,
127 region->tiling,
128 intelImage->mt->region
[all...]
/external/openfst/src/lib/
H A Dmapped-file.cc30 MappedFile::MappedFile(const MemoryRegion &region) : region_(region) { } argument
37 LOG(ERROR) << "failed to unmap region: "<< strerror(errno);
46 MemoryRegion region; local
47 region.data = size == 0 ? NULL : operator new(size);
48 region.mmap = NULL;
49 region.size = size;
50 return new MappedFile(region);
54 MemoryRegion region; local
55 region
75 MemoryRegion region; local
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DXYSeriesFormatter.java32 public void addRegion(RectRegion region, XYRegionFormatterType regionFormatter) { argument
33 regions.addToBottom(region, regionFormatter);
36 public void removeRegion(RectRegion region) { argument
37 regions.remove(region);
49 * @param region
52 public XYRegionFormatterType getRegionFormatter(RectRegion region) { argument
53 return regions.get(region);
H A DXYSeriesRenderer.java43 for (RectRegion region : regionIndexer.elements()) {
44 XYRegionFormatter f = xyf.getRegionFormatter(region);
45 found.put(f, region.getLabel());
/external/clang/tools/clang-format/
H A Dclang-format-sublime.py36 for region in self.view.sel():
37 regions.append(region)
38 region_offset = min(region.a, region.b)
39 region_length = abs(region.b - region.a)
54 for region in regions:
55 self.view.sel().add(region)
/external/e2fsprogs/e2fsck/
H A Dregion.c2 * region.c --- code which manages allocations within a region.
36 region_t region; local
38 region = malloc(sizeof(struct region_struct));
39 if (!region)
41 memset(region, 0, sizeof(struct region_struct));
42 region->min = min;
43 region->max = max;
44 return region;
47 void region_free(region_t region) argument
59 region_allocate(region_t region, region_addr_t start, int n) argument
156 region_print(region_t region, FILE *f) argument
[all...]
/external/vboot_reference/firmware/lib/
H A Dregion-init.c12 #include "region.h"
21 enum vb_firmware_region region, uint32_t offset,
25 if (region == VB_REGION_GBB && cparams->gbb_data) {
34 ret = VbExRegionRead(cparams, region, offset, size, buf);
20 VbRegionReadData(VbCommonParams *cparams, enum vb_firmware_region region, uint32_t offset, uint32_t size, void *buf) argument
/external/skia/include/effects/
H A DSkAlphaThresholdFilter.h17 * Creates an image filter that samples a region. If the sample is inside the
18 * region the alpha of the image is boosted up to a threshold value. If it is
19 * outside the region then the alpha is decreased to the threshold value.
20 * The 0,0 point of the region corresponds to the upper left corner of the
23 static SkImageFilter* Create(const SkRegion& region, SkScalar innerThreshold,
/external/vboot_reference/firmware/stub/
H A Dvboot_api_stub_region.c5 * Stub implementations of region API function.
17 enum vb_firmware_region region, uint32_t offset,
16 VbExRegionRead(VbCommonParams *cparams, enum vb_firmware_region region, uint32_t offset, uint32_t size, void *buf) argument
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DDotZLib.cs17 #region Internal types
27 #region ZStream structure
57 #region Public enums
82 #region Exception classes
109 #region Interfaces
212 #region Classes
218 #region DLL imports
226 #region Private stuff
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCurrencyMetaInfo.java80 * The region to filter on. If null, accepts any region.
83 public final String region; field in class:CurrencyMetaInfo.CurrencyFilter
111 private CurrencyFilter(String region, String currency, long from, long to, boolean tenderOnly) { argument
112 this.region = region;
143 * Returns a filter that accepts all currencies ever used in the given region.
144 * @param region the region code
149 public static CurrencyFilter onRegion(String region) { argument
229 withRegion(String region) argument
414 public final String region; field in class:CurrencyMetaInfo.CurrencyInfo
454 CurrencyInfo(String region, String code, long from, long to, int priority) argument
465 CurrencyInfo(String region, String code, long from, long to, int priority, boolean tender) argument
[all...]
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_screen_ioctl.c258 struct vmw_region *region; local
266 region = CALLOC_STRUCT(vmw_region);
267 if (!region)
282 region->ptr.gmrId = rep->cur_gmr_id;
283 region->ptr.offset = rep->cur_gmr_offset;
284 region->data = NULL;
285 region->handle = rep->handle;
286 region->map_handle = rep->map_handle;
287 region->map_count = 0;
288 region
302 vmw_ioctl_region_destroy(struct vmw_region *region) argument
322 vmw_ioctl_region_ptr(struct vmw_region *region) argument
328 vmw_ioctl_region_map(struct vmw_region *region) argument
352 vmw_ioctl_region_unmap(struct vmw_region *region) argument
[all...]
H A Dvmw_context.c88 } region; member in struct:vmw_svga_winsys_context
142 for(i = 0; i < vswc->region.used; ++i) {
143 struct vmw_region_relocation *reloc = &vswc->region.relocs[i];
178 for(i = 0; i < vswc->region.used + vswc->region.staged; ++i) {
179 pb_reference(&vswc->region.relocs[i].buffer, NULL);
182 vswc->region.used = 0;
183 vswc->region.reserved = 0;
222 vswc->region.used + nr_relocs > vswc->region
[all...]
/external/icu/icu4c/source/tools/tzcode/
H A Dtzselect.ksh78 region=
199 # If there's more than one region, ask the user which one.
204 select region in $regions
206 case $region in
211 case $region in
215 region=$regions
218 # Determine TZ from country and region.
221 -v region="$region" \
233 $1 == cc && $4 == region { prin
[all...]
/external/lzma/CS/7zip/Compress/LzmaAlone/Properties/
H A DAssemblyInfo.cs0 #region Using directives
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRFileStream.cs54 #region Constructors
93 #region Public API
130 #region Data Members
138 #region Private Members
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DITreeNodeStream.cs116 #region REWRITING TREES (used by tree parser)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DITreeNodeStream.cs123 #region REWRITING TREES (used by tree parser)

Completed in 5458 milliseconds

1234567891011>>