Searched refs:region (Results 1 - 25 of 710) 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/skia/fuzz/oss_fuzz/
H A DFuzzRegionDeserialize.cpp15 SkRegion region; local
16 if (!region.readFromMemory(bytes->data(), bytes->size())) {
19 region.computeRegionComplexity();
20 region.isComplex();
22 if (region == r2) {
23 region.contains(0,0);
25 region.contains(1,1);
32 s->getCanvas()->drawRegion(region, SkPaint());
33 SkDEBUGCODE(region.validate());
/external/skqp/fuzz/oss_fuzz/
H A DFuzzRegionDeserialize.cpp15 SkRegion region; local
16 if (!region.readFromMemory(bytes->data(), bytes->size())) {
19 region.computeRegionComplexity();
20 region.isComplex();
22 if (region == r2) {
23 region.contains(0,0);
25 region.contains(1,1);
32 s->getCanvas()->drawRegion(region, SkPaint());
33 SkDEBUGCODE(region.validate());
/external/libtextclassifier/util/i18n/
H A Dlocale.cc59 bool CheckRegion(StringPiece region) { argument
60 if (region.size() == 2) {
61 return std::isupper(region[0]) && std::isupper(region[1]);
62 } else if (region.size() == 3) {
63 return std::isdigit(region[0]) && std::isdigit(region[1]) &&
64 std::isdigit(region[2]);
95 StringPiece region; local
97 region
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_regions.c113 struct intel_region *region; local
115 region = calloc(sizeof(*region), 1);
116 if (region == NULL)
117 return region;
119 region->cpp = cpp;
120 region->width = width;
121 region->height = height;
122 region->pitch = pitch;
123 region
140 struct intel_region *region; local
162 intel_region_flink(struct intel_region *region, uint32_t *name) argument
180 struct intel_region *region; local
215 struct intel_region *region; local
260 struct intel_region *region = *region_handle; local
286 intel_region_get_tile_masks(struct intel_region *region, uint32_t *mask_x, uint32_t *mask_y, bool map_stencil_as_y_tiled) argument
319 intel_region_get_aligned_offset(struct intel_region *region, uint32_t x, uint32_t y, bool map_stencil_as_y_tiled) argument
[all...]
/external/libchrome/base/trace_event/
H A Dprocess_memory_maps.cc45 for (const auto& region : vm_regions_) {
48 value->SetString("sa", StringPrintf(kHexFmt, region.start_address));
49 value->SetString("sz", StringPrintf(kHexFmt, region.size_in_bytes));
50 value->SetInteger("pf", region.protection_flags);
51 value->SetString("mf", region.mapped_file);
55 "pss", StringPrintf(kHexFmt, region.byte_stats_proportional_resident));
57 "pd", StringPrintf(kHexFmt, region.byte_stats_private_dirty_resident));
59 "pc", StringPrintf(kHexFmt, region.byte_stats_private_clean_resident));
61 "sd", StringPrintf(kHexFmt, region.byte_stats_shared_dirty_resident));
63 "sc", StringPrintf(kHexFmt, region
[all...]
/external/webrtc/webrtc/modules/desktop_capture/
H A Dscreen_capturer_helper_unittest.cc24 DesktopRegion region(DesktopRect::MakeXYWH(1, 2, 3, 4));
25 capturer_helper_.InvalidateRegion(region);
27 capturer_helper_.TakeInvalidRegion(&region);
28 EXPECT_TRUE(region.is_empty());
32 DesktopRegion region; local
33 capturer_helper_.TakeInvalidRegion(&region);
34 EXPECT_TRUE(region.is_empty());
36 region.SetRect(DesktopRect::MakeXYWH(1, 2, 3, 4));
37 capturer_helper_.InvalidateRegion(region);
38 capturer_helper_.TakeInvalidRegion(&region);
50 DesktopRegion region; local
66 DesktopRegion region; local
107 TestExpandRegionToGrid(const DesktopRegion& region, int log_grid_size, const DesktopRegion& expanded_region_expected) argument
158 DesktopRegion 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);
/external/protobuf/csharp/src/Google.Protobuf/
H A DICustomDiagnosticMessage.cs0 #region Copyright notice and license
H A DIDeepCloneable.cs0 #region Copyright notice and license
H A DInvalidJsonException.cs0 #region Copyright notice and license
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DIDescriptor.cs0 #region Copyright notice and license
H A DPartialClasses.cs0 #region Copyright notice and license
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DWrappersPartial.cs0 #region Copyright notice and license
/external/protobuf/csharp/src/Google.Protobuf.Test/
H A DSampleEnum.cs0 #region Copyright notice and license
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
H A DForeignMessagePartial.cs0 #region Copyright notice and license
/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.
37 region_t region; local
39 region = malloc(sizeof(struct region_struct));
40 if (!region)
42 memset(region, 0, sizeof(struct region_struct));
43 region->min = min;
44 region->max = max;
45 return region;
48 void region_free(region_t region) argument
60 region_allocate(region_t region, region_addr_t start, int n) argument
157 region_print(region_t region, FILE *f) argument
[all...]
/external/libchrome/base/posix/
H A Dglobal_descriptors.cc15 : key(key), fd(fd), region(base::MemoryMappedFile::Region::kWholeFile) {
20 base::MemoryMappedFile::Region region)
21 : key(key), fd(fd), region(region) {
52 base::MemoryMappedFile::Region* region) {
57 *region = i->region;
72 base::MemoryMappedFile::Region region) {
76 i.region = region;
18 Descriptor(Key key, int fd, base::MemoryMappedFile::Region region) argument
50 TakeFD( Key key, base::MemoryMappedFile::Region* region) argument
70 Set(Key key, int fd, base::MemoryMappedFile::Region region) 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/ImageMagick/MagickCore/
H A Ddistribute-cache.c553 region;
570 length=sizeof(region.width)+sizeof(region.height)+sizeof(region.x)+
571 sizeof(region.y)+sizeof(length);
576 (void) memcpy(&region.width,q,sizeof(region.width));
577 q+=sizeof(region.width);
578 (void) memcpy(&region.height,q,sizeof(region
548 region; local
605 region; local
667 region; local
725 region; local
1220 ReadDistributePixelCacheMetacontent( DistributeCacheInfo *server_info,const RectangleInfo *region, const MagickSizeType length,unsigned char *metacontent) argument
1295 ReadDistributePixelCachePixels( DistributeCacheInfo *server_info,const RectangleInfo *region, const MagickSizeType length,unsigned char *magick_restrict pixels) argument
1431 WriteDistributePixelCacheMetacontent( DistributeCacheInfo *server_info,const RectangleInfo *region, const MagickSizeType length,const unsigned char *metacontent) argument
1507 WriteDistributePixelCachePixels( DistributeCacheInfo *server_info,const RectangleInfo *region, const MagickSizeType length,const unsigned char *magick_restrict pixels) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/clover/api/
H A Dtransfer.cpp40 pitch(const vector_t &region, vector_t pitch) { argument
42 map(multiplies(), region, pitch))) {
53 /// Size of a region in bytes.
56 size(const vector_t &pitch, const vector_t &region) { argument
57 if (any_of(is_zero(), region))
60 return dot(pitch, region - vector_t{ 0, 1, 1 });
80 const vector_t &pitch, const vector_t &region) {
84 // The region must fit within the specified pitch,
85 if (any_of(greater(), map(multiplies(), pitch, region), tail(pitch)))
89 if (dot(pitch, origin) + size(pitch, region) > me
79 validate_object(command_queue &q, buffer &mem, const vector_t &origin, const vector_t &pitch, const vector_t &region) argument
100 validate_object(command_queue &q, image &img, const vector_t &orig, const vector_t &region) argument
121 validate_object(command_queue &q, const void *ptr, const vector_t &orig, const vector_t &pitch, const vector_t &region) argument
135 validate_copy(command_queue &q, buffer &dst_mem, const vector_t &dst_orig, const vector_t &dst_pitch, buffer &src_mem, const vector_t &src_orig, const vector_t &src_pitch, const vector_t &region) argument
155 validate_copy(command_queue &q, image &dst_img, const vector_t &dst_orig, image &src_img, const vector_t &src_orig, const vector_t &region) argument
237 soft_copy_op(command_queue &q, T dst_obj, const vector_t &dst_orig, const vector_t &dst_pitch, S src_obj, const vector_t &src_orig, const vector_t &src_pitch, const vector_t &region) argument
255 src_pitch[0] * region[0]); local
266 hard_copy_op(command_queue &q, T dst_obj, const vector_t &dst_orig, S src_obj, const vector_t &src_orig, const vector_t &region) argument
[all...]
/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/libchrome/base/files/
H A Dmemory_mapped_file_posix.cc24 const MemoryMappedFile::Region& region,
32 if (region == MemoryMappedFile::Region::kWholeFile) {
41 // The region can be arbitrarily aligned. mmap, instead, requires both the
43 // outer region [|aligned_start|, |aligned_start| + |size|] which contains
44 // |region| and then add up the |data_offset| displacement.
47 CalculateVMAlignedBoundaries(region.offset,
48 region.size,
58 static_cast<uint64_t>(region.size) >
66 length_ = static_cast<size_t>(region.size);
86 file_.SetLength(std::max(file_len, region
23 MapFileRegionToMemory( const MemoryMappedFile::Region& region, Access access) argument
[all...]
/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

Completed in 617 milliseconds

1234567891011>>