/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/ |
intel_tex_subimage.c | 67 if (intelImage->mt->region->tiling == I915_TILING_Y) 79 if (!drm_intel_bo_busy(intelImage->mt->region->bo)) 129 unsigned int dst_pitch = intelImage->mt->region->pitch * 139 intelImage->mt->region->bo, 0, 140 intelImage->mt->region->tiling,
|
intel_tex_image.c | 170 dst_buffer = intelImage->mt->region->bo; 184 dst_stride = intelImage->mt->region->pitch; 191 intelImage->mt->region->tiling, 230 * Binds a region to a texture image, like it was uploaded by glTexImage2D(). 237 struct intel_region *region, 249 region->width, region->height, 1, 256 region); 261 intel_image->base.RowStride = region->pitch; 293 /* If the region isn't set, then intel_update_renderbuffers was unabl [all...] |
intel_tex_validate.c | 150 intel_image->base.ImageOffsets[i] = x + y * mt->region->pitch; 155 intel_image->base.Map = intel_region_map(intel, mt->region, mode); 161 __FUNCTION__, face, level, x, y, mt->region->pitch * mt->cpp); 163 intel_image->base.Map = intel_region_map(intel, mt->region, mode) + 164 (x + y * mt->region->pitch) * mt->cpp; 167 intel_image->base.RowStride = mt->region->pitch; 175 intel_region_unmap(intel, intel_image->mt->region);
|
/external/chromium_org/third_party/webrtc/modules/desktop_capture/ |
differ.cc | 38 DesktopRegion* region) { 44 MergeBlocks(region); 135 void Differ::MergeBlocks(DesktopRegion* region) { 136 region->Clear(); 198 region->AddRect(DesktopRect::MakeXYWH(left, top, width, height));
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_tex_subimage.c | 67 if (intelImage->mt->region->tiling == I915_TILING_Y) 79 if (!drm_intel_bo_busy(intelImage->mt->region->bo)) 129 unsigned int dst_pitch = intelImage->mt->region->pitch * 139 intelImage->mt->region->bo, 0, 140 intelImage->mt->region->tiling,
|
intel_tex_image.c | 170 dst_buffer = intelImage->mt->region->bo; 184 dst_stride = intelImage->mt->region->pitch; 191 intelImage->mt->region->tiling, 230 * Binds a region to a texture image, like it was uploaded by glTexImage2D(). 237 struct intel_region *region, 249 region->width, region->height, 1, 256 region); 261 intel_image->base.RowStride = region->pitch; 293 /* If the region isn't set, then intel_update_renderbuffers was unabl [all...] |
intel_tex_validate.c | 150 intel_image->base.ImageOffsets[i] = x + y * mt->region->pitch; 155 intel_image->base.Map = intel_region_map(intel, mt->region, mode); 161 __FUNCTION__, face, level, x, y, mt->region->pitch * mt->cpp); 163 intel_image->base.Map = intel_region_map(intel, mt->region, mode) + 164 (x + y * mt->region->pitch) * mt->cpp; 167 intel_image->base.RowStride = mt->region->pitch; 175 intel_region_unmap(intel, intel_image->mt->region);
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_allocator.h | 302 // Region: a part of Space dedicated to a single size class. 308 // A Region looks like this: 344 RegionInfo *region = GetRegionInfo(class_id); local 345 Batch *b = region->free_list.Pop(); 347 b = PopulateFreeList(stat, c, class_id, region); 348 region->n_allocated += b->count; 353 RegionInfo *region = GetRegionInfo(class_id); local 355 region->free_list.Push(b); 356 region->n_freed += b->count; 376 RegionInfo *region = GetRegionInfo(class_id) 414 RegionInfo *region = GetRegionInfo(class_id); local 423 RegionInfo *region = GetRegionInfo(class_id); local 452 RegionInfo *region = GetRegionInfo(class_id); local [all...] |
/frameworks/compile/mclinker/lib/LD/ |
ELFObjectReader.cpp | 72 llvm::StringRef region = pInput.memArea()->request(pInput.fileOffset(), 75 const char* ELF_hdr = region.begin(); 102 llvm::StringRef region = pInput.memArea()->request(pInput.fileOffset(), 104 const char* ELF_hdr = region.begin(); 141 llvm::StringRef region = pInput.memArea()->request( local 144 reinterpret_cast<const llvm::ELF::Elf32_Word*>(region.begin()); 146 size_t size = region.size() / sizeof(llvm::ELF::Elf32_Word); 324 llvm::StringRef region = mem->request(offset, size); local 328 if (!m_pELFReader->readRela(pInput, **rs, region)) { 334 if (!m_pELFReader->readRel(pInput, **rs, region)) { [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_misc_state.c | 290 intel_region_get_tile_masks(depth_irb->mt->region, 297 hiz_region = depth_irb->mt->hiz_mt->region; 332 intel_region_get_tile_masks(stencil_mt->region, 445 struct intel_region *region = depth_irb->mt->region; local 451 assert(intel->gen < 6 || region->tiling == I915_TILING_Y); 452 assert(!hiz_region || region->tiling == I915_TILING_Y); 477 offset = intel_region_get_aligned_offset(region, 483 OUT_BATCH(((region->pitch * region->cpp) - 1) 543 struct intel_region *region = stencil_mt->region; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_misc_state.c | 290 intel_region_get_tile_masks(depth_irb->mt->region, 297 hiz_region = depth_irb->mt->hiz_mt->region; 332 intel_region_get_tile_masks(stencil_mt->region, 445 struct intel_region *region = depth_irb->mt->region; local 451 assert(intel->gen < 6 || region->tiling == I915_TILING_Y); 452 assert(!hiz_region || region->tiling == I915_TILING_Y); 477 offset = intel_region_get_aligned_offset(region, 483 OUT_BATCH(((region->pitch * region->cpp) - 1) 543 struct intel_region *region = stencil_mt->region; local [all...] |
/external/chromium_org/content/renderer/gpu/ |
compositor_software_output_device.cc | 162 // Find the smallest damage region that needs 164 SkRegion region; local 166 current->FindDamageDifferenceFrom(previous, ®ion) || 167 previous->FindDamageDifferenceFrom(current, ®ion); 169 region = SkRegion(RectToSkIRect(gfx::Rect(viewport_pixel_size_))); 170 region.op(RectToSkIRect(damage_rect), SkRegion::kDifference_Op); 172 // Copy over the damage region. 173 if (!region.isEmpty()) { 179 for (SkRegion::Iterator it(region); !it.done(); it.next()) {
|
/art/runtime/ |
memory_region.h | 30 // of the region. 59 // Load a single bit in the region. The bit at offset 0 is the least 79 // Compute a sub memory region based on an existing one. 86 // Compute an extended memory region based on an existing one. 87 void Extend(const MemoryRegion& region, uintptr_t extra) { 88 pointer_ = region.pointer(); 89 size_ = (region.size() + extra);
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreeIterator.cs | 71 #region IEnumerator<object> Members 80 #region IDisposable Members 87 #region IEnumerator Members
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
ITreeAdaptor.cs | 51 #region Construction 255 #region Content 300 #region Navigation / Tree Parsing
|
TreeIterator.cs | 76 #region IEnumerator<object> Members 86 #region IDisposable Members 94 #region IEnumerator Members
|
/external/chromium_org/ash/wm/ |
video_detector.cc | 31 bool RecordUpdateAndCheckForVideo(const gfx::Rect& region, 33 if (region.width() < kMinUpdateWidth || region.height() < kMinUpdateHeight)
|
/external/chromium_org/chrome/browser/extensions/api/cast_streaming/ |
cast_streaming_apitest.cc | 208 // letterboxed content region of mostly a solid color plus a small piece of 211 const gfx::Rect region = FindLetterboxedContentRegion(video_frame.get()); variable 214 region, 218 gfx::ScaleToEnclosedRect(region, 0.5f), 222 gfx::ScaleToEnclosedRect(region, 0.5f), 243 // Return the region that excludes the black letterboxing borders surrounding 290 static uint8 ComputeMedianIntensityInRegionInPlane(const gfx::Rect& region, 293 if (region.IsEmpty()) 295 const size_t num_values = region.size().GetArea(); 297 for (int y = 0; y < region.height(); ++y) [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ |
live_regions.js | 33 * Time in milliseconds after initial page load to ignore live region 57 * Maximum time interval in which to discard duplicate live region announcement. 64 * Maximum time interval in which to discard duplicate live region announcement 83 * @param {Date} pageLoadTime The time the page was loaded. Live region 85 * @param {number} queueMode Interrupt or flush. Polite live region 146 * See if any mutations pertain to a live region, and speak them if so. 153 * A callback function that handles each live region description found. 154 * The function is passed a boolean indicating if the live region is 228 * a live region, and if that fails see if there's a live region within i [all...] |
/external/chromium_org/courgette/ |
streams.h | 8 // region of memory. 23 #include "courgette/region.h" 34 // A SourceStream allows a region of memory to be scanned by a sequence of Read 49 // Initializes the SourceStream to yield the bytes in |region|. The caller 50 // still owns the memory at |region| and should free the memory only after 52 void Init(const Region& region) { Init(region.start(), region.length()); }
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/ |
PatternScanner.java | 52 matcher.region(mOffset, mInput.length()); 86 matcher.region(mOffset, mInput.length()); 94 matcher.region(mOffset, mInput.length());
|
/hardware/qcom/display/msm8084/libcopybit/ |
copybit.h | 157 /* Region */ 159 int (*next)(struct copybit_region_t const *region, struct copybit_rect_t *rect); 205 * @param region the clip region 212 struct copybit_region_t const *region); 234 * @param region the clip region 243 struct copybit_region_t const *region);
|
/hardware/qcom/display/msm8226/libcopybit/ |
copybit.h | 157 /* Region */ 159 int (*next)(struct copybit_region_t const *region, struct copybit_rect_t *rect); 205 * @param region the clip region 212 struct copybit_region_t const *region); 234 * @param region the clip region 243 struct copybit_region_t const *region);
|
/packages/apps/ContactsCommon/libs/ |
geocoder-2.9.jar | |
/external/chromium_org/base/debug/ |
stack_trace_posix.cc | 561 const MappedMemoryRegion& region = *it; local 562 if (region.start <= pc && pc < region.end) { 563 start_address = region.start; 575 base_address = (is_first ? 0U : start_address) - region.offset; 577 strncpy(file_path, region.path.c_str(), file_path_size); 581 return instance->GetFileDescriptor(region.path.c_str()); 620 const MappedMemoryRegion& region = *it; local 622 if ((region.permissions & MappedMemoryRegion::READ) == 624 (region.permissions & MappedMemoryRegion::WRITE) == 0 & [all...] |