/third_party/libphonenumber/resources/geocoding/en/ |
D | 996.txt | 17 9963120|Bishkek, Chuy region 18 9963121|Bishkek, Chuy region 19 9963122|Bishkek, Chuy region 20 9963123|Bishkek, Chuy region 21 9963124|Bishkek, Chuy region 22 99631250|Bishkek, Chuy region 23 99631251|Bishkek, Chuy region 24 99631252|Bishkek, Chuy region 25 99631253|Bishkek, Chuy region 26 99631254|Bishkek, Chuy region [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/siren/ |
D | huffman.c | 62 int region, i; in compute_region_powers() local 64 for (region = 0; region < number_of_regions; region++) { in compute_region_powers() 68 coefs[(region * region_size) + i] * coefs[(region * region_size) + i]; in compute_region_powers() 82 absolute_region_power_index[region] = min_idx - 24; in compute_region_powers() 86 for (region = number_of_regions - 2; region >= 0; region--) { in compute_region_powers() 87 if (absolute_region_power_index[region] < in compute_region_powers() 88 absolute_region_power_index[region + 1] - 11) in compute_region_powers() 89 absolute_region_power_index[region] = in compute_region_powers() 90 absolute_region_power_index[region + 1] - 11; in compute_region_powers() 103 for (region = 1; region < number_of_regions; region++) { in compute_region_powers() [all …]
|
D | common.c | 104 int region, delta, i, temp; in categorize_regions() local 131 for (region = 0; region < number_of_regions; region++) { in categorize_regions() 132 i = (delta + offset - absolute_region_power_index[region]) >> 1; in categorize_regions() 138 power_categories[region] = i; in categorize_regions() 147 for (region = 0; region < number_of_regions; region++) { in categorize_regions() 148 i = (offset - absolute_region_power_index[region]) >> 1; in categorize_regions() 153 max_rate_categories[region] = min_rate_categories[region] = in categorize_regions() 154 power_categories[region] = i; in categorize_regions() 165 for (region = number_of_regions - 1; region >= 0; region--) { in categorize_regions() 166 if (min_rate_categories[region] < 7) { in categorize_regions() [all …]
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
D | nine_memory_helper.c | 150 …struct nine_memfd_file_region *region; /* Corresponding file memory region. Max 1 allocation per r… member 227 struct nine_memfd_file_region *region; in debug_dump_memfd_state() local 232 LIST_FOR_EACH_ENTRY(region, &memfd_file->free_regions, list) { in debug_dump_memfd_state() 234 region->offset, region->size, region->map, in debug_dump_memfd_state() 235 region->num_locks, region->num_weak_unlocks, (int)region->zero_filled); in debug_dump_memfd_state() 237 LIST_FOR_EACH_ENTRY(region, &memfd_file->unmapped_allocated_regions, list) { in debug_dump_memfd_state() 239 region->offset, region->size, region->map, in debug_dump_memfd_state() 240 region->num_locks, region->num_weak_unlocks, (int)region->zero_filled); in debug_dump_memfd_state() 242 LIST_FOR_EACH_ENTRY(region, &memfd_file->locked_mapped_allocated_regions, list) { in debug_dump_memfd_state() 244 region->offset, region->size, region->map, in debug_dump_memfd_state() [all …]
|
/third_party/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_regions.c | 61 struct intel_region *region; in intel_region_alloc_internal() local 63 region = calloc(sizeof(*region), 1); in intel_region_alloc_internal() 64 if (region == NULL) in intel_region_alloc_internal() 65 return region; in intel_region_alloc_internal() 67 region->cpp = cpp; in intel_region_alloc_internal() 68 region->width = width; in intel_region_alloc_internal() 69 region->height = height; in intel_region_alloc_internal() 70 region->pitch = pitch; in intel_region_alloc_internal() 71 region->refcount = 1; in intel_region_alloc_internal() 72 region->bo = buffer; in intel_region_alloc_internal() [all …]
|
/third_party/pixman/pixman/ |
D | pixman-region.c | 119 pixman_break (region_type_t *region); 218 #define RECTALLOC_BAIL(region, n, bail) \ argument 221 if (!(region)->data || \ 222 (((region)->data->numRects + (n)) > (region)->data->size)) \ 224 if (!pixman_rect_alloc (region, n)) \ 229 #define RECTALLOC(region, n) \ argument 232 if (!(region)->data || \ 233 (((region)->data->numRects + (n)) > (region)->data->size)) \ 235 if (!pixman_rect_alloc (region, n)) { \ 252 #define NEWRECT(region, next_rect, nx1, ny1, nx2, ny2) \ argument [all …]
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
D | zink_blit.c | 63 VkImageResolve region = {0}; in blit_resolve() local 65 region.srcSubresource.aspectMask = src->aspect; in blit_resolve() 66 region.srcSubresource.mipLevel = info->src.level; in blit_resolve() 67 region.srcOffset.x = info->src.box.x; in blit_resolve() 68 region.srcOffset.y = info->src.box.y; in blit_resolve() 71 region.srcOffset.z = 0; in blit_resolve() 72 region.srcSubresource.baseArrayLayer = info->src.box.z; in blit_resolve() 73 region.srcSubresource.layerCount = info->src.box.depth; in blit_resolve() 76 region.srcOffset.z = info->src.box.z; in blit_resolve() 77 region.srcSubresource.baseArrayLayer = 0; in blit_resolve() [all …]
|
/third_party/e2fsprogs/e2fsck/ |
D | region.c | 38 region_t region; in region_create() local 41 retval = ext2fs_get_memzero(sizeof(struct region_struct), ®ion); in region_create() 45 region->min = min; in region_create() 46 region->max = max; in region_create() 47 region->last = NULL; in region_create() 48 return region; in region_create() 51 void region_free(region_t region) in region_free() argument 55 for (r = region->allocated; r; r = next) { in region_free() 59 memset(region, 0, sizeof(struct region_struct)); in region_free() 60 ext2fs_free_mem(®ion); in region_free() [all …]
|
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_meta_copy.c | 128 const VkBufferImageCopy2KHR *region) in copy_buffer_to_image() argument 162 const VkOffset3D img_offset_el = meta_region_offset_el(image, ®ion->imageOffset); in copy_buffer_to_image() 164 .width = region->bufferRowLength ? region->bufferRowLength : region->imageExtent.width, in copy_buffer_to_image() 165 .height = region->bufferImageHeight ? region->bufferImageHeight : region->imageExtent.height, in copy_buffer_to_image() 170 const VkExtent3D img_extent_el = meta_region_extent_el(image, image->type, ®ion->imageExtent); in copy_buffer_to_image() 178 image, layout, ®ion->imageSubresource, region->imageSubresource.aspectMask); in copy_buffer_to_image() 184 radv_layout_dcc_compressed(cmd_buffer->device, image, region->imageSubresource.mipLevel, in copy_buffer_to_image() 189 .aspectMask = region->imageSubresource.aspectMask, in copy_buffer_to_image() 190 .baseMipLevel = region->imageSubresource.mipLevel, in copy_buffer_to_image() 192 .baseArrayLayer = region->imageSubresource.baseArrayLayer, in copy_buffer_to_image() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
D | LSR.java | 21 public final String region; field in LSR 26 public LSR(String language, String script, String region, int flags) { in LSR() argument 29 this.region = region; in LSR() 30 regionIndex = indexForRegion(region); in LSR() 39 public static final int indexForRegion(String region) { in indexForRegion() argument 40 if (region.length() == 2) { in indexForRegion() 41 int a = region.charAt(0) - 'A'; in indexForRegion() 43 int b = region.charAt(1) - 'A'; in indexForRegion() 46 } else if (region.length() == 3) { in indexForRegion() 47 int a = region.charAt(0) - '0'; in indexForRegion() [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/ |
D | LSR.java | 25 public final String region; field in LSR 30 public LSR(String language, String script, String region, int flags) { in LSR() argument 33 this.region = region; in LSR() 34 regionIndex = indexForRegion(region); in LSR() 43 public static final int indexForRegion(String region) { in indexForRegion() argument 44 if (region.length() == 2) { in indexForRegion() 45 int a = region.charAt(0) - 'A'; in indexForRegion() 47 int b = region.charAt(1) - 'A'; in indexForRegion() 50 } else if (region.length() == 3) { in indexForRegion() 51 int a = region.charAt(0) - '0'; in indexForRegion() [all …]
|
/third_party/boost/libs/interprocess/test/ |
D | shared_memory_mapping_test.cpp | 49 mapped_region region (mapping in main() local 62 unsigned char *filler = static_cast<unsigned char*>(region.get_address()); in main() 75 if(!region.flush(0, 0, false)){ in main() 88 mapped_region region(mapping, read_write, 0, FileSize/2, 0); in main() local 91 unsigned char *checker = static_cast<unsigned char*>(region.get_address()); in main() 120 mapped_region region (mapping, read_only); in main() local 123 unsigned char *pattern = static_cast<unsigned char*>(region.get_address()); in main() 132 const std::size_t original_region_size = region.get_size(); in main() 133 … if(!region.shrink_by(region.get_size()/2, false) || region.get_size() != original_region_size/2){ in main() 136 const std::size_t shrunk_region_size = region.get_size(); in main() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | siren.c | 452 int region, delta, i, temp; in categorize_regions() local 466 for (region = 0; region < number_of_regions; region++) { in categorize_regions() 468 absolute_region_power_index[region]) >> 1; in categorize_regions() 470 power_categories[region] = i; in categorize_regions() 479 for (region = 0; region < number_of_regions; region++) { in categorize_regions() 480 i = (offset - absolute_region_power_index[region]) >> 1; in categorize_regions() 482 max_rate_categories[region] = min_rate_categories[region] = in categorize_regions() 483 power_categories[region] = i; in categorize_regions() 493 for (region = number_of_regions - 1; region >= 0; region--) { in categorize_regions() 494 if (min_rate_categories[region] < 7) { in categorize_regions() [all …]
|
D | dvbsubdec.c | 175 static void delete_region_display_list(DVBSubContext *ctx, DVBSubRegion *region) in delete_region_display_list() argument 180 while (region->display_list) { in delete_region_display_list() 181 display = region->display_list; in delete_region_display_list() 214 region->display_list = display->region_list_next; in delete_region_display_list() 246 DVBSubRegion *region = ctx->region_list; in delete_regions() local 248 ctx->region_list = region->next; in delete_regions() 250 delete_region_display_list(ctx, region); in delete_regions() 252 av_freep(®ion->pbuf); in delete_regions() 253 av_freep(®ion); in delete_regions() 725 DVBSubRegion *region; in save_subtitle_set() local [all …]
|
/third_party/gstreamer/gstplugins_bad/ext/ttml/ |
D | subtitle.c | 225 _gst_subtitle_region_free (GstSubtitleRegion * region) in _gst_subtitle_region_free() argument 227 g_return_if_fail (region != NULL); in _gst_subtitle_region_free() 228 gst_subtitle_style_set_unref (region->style_set); in _gst_subtitle_region_free() 229 g_ptr_array_unref (region->blocks); in _gst_subtitle_region_free() 230 g_slice_free (GstSubtitleRegion, region); in _gst_subtitle_region_free() 249 GstSubtitleRegion *region; in gst_subtitle_region_new() local 253 region = g_slice_new0 (GstSubtitleRegion); in gst_subtitle_region_new() 254 gst_mini_object_init (GST_MINI_OBJECT_CAST (region), 0, in gst_subtitle_region_new() 258 region->style_set = style_set; in gst_subtitle_region_new() 259 region->blocks = g_ptr_array_new_with_free_func ( in gst_subtitle_region_new() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst/dvbsuboverlay/ |
D | dvb-sub.c | 224 delete_region_display_list (DvbSub * dvb_sub, DVBSubRegion * region) in delete_region_display_list() argument 230 while (region->display_list) { in delete_region_display_list() 231 display = region->display_list; in delete_region_display_list() 264 region->display_list = display->region_list_next; in delete_region_display_list() 273 DVBSubRegion *region; in delete_state() local 276 region = dvb_sub->region_list; in delete_state() 278 dvb_sub->region_list = region->next; in delete_state() 280 delete_region_display_list (dvb_sub, region); in delete_state() 281 g_free (region->pbuf); in delete_state() 283 g_slice_free (DVBSubRegion, region); in delete_state() [all …]
|
/third_party/mesa3d/src/gallium/frontends/clover/api/ |
D | transfer.cpp | 45 pitch(const vector_t ®ion, vector_t pitch) { in pitch() argument 47 map(multiplies(), region, pitch))) { in pitch() 61 size(const vector_t &pitch, const vector_t ®ion) { in size() argument 62 if (any_of(is_zero(), region)) in size() 65 return dot(pitch, region - vector_t{ 0, 1, 1 }); in size() 85 const vector_t &pitch, const vector_t ®ion) { in validate_object() argument 90 if (any_of(greater(), map(multiplies(), pitch, region), tail(pitch))) in validate_object() 94 if (dot(pitch, origin) + size(pitch, region) > mem.size()) in validate_object() 97 if (any_of(is_zero(), region)) in validate_object() 106 const vector_t &orig, const vector_t ®ion) { in validate_object() argument [all …]
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | lsr.cpp | 19 language(nullptr), script(nullptr), region(r), in LSR() 20 regionIndex(indexForRegion(region)), flags(f) { in LSR() 35 language(other.language), script(other.script), region(other.region), owned(other.owned), in LSR() 53 region = other.region; in operator =() 72 (regionIndex > 0 || uprv_strcmp(region, other.region) == 0); in isEquivalentTo() 81 (regionIndex > 0 || uprv_strcmp(region, other.region) == 0) && in operator ==() 85 int32_t LSR::indexForRegion(const char *region) { in indexForRegion() argument 86 int32_t c = region[0]; in indexForRegion() 89 int32_t b = region[1] - '0'; in indexForRegion() 91 c = region[2] - '0'; in indexForRegion() [all …]
|
/third_party/node/deps/icu-small/source/common/ |
D | lsr.cpp | 19 language(nullptr), script(nullptr), region(r), in LSR() 20 regionIndex(indexForRegion(region)), flags(f) { in LSR() 35 language(other.language), script(other.script), region(other.region), owned(other.owned), in LSR() 53 region = other.region; in operator =() 72 (regionIndex > 0 || uprv_strcmp(region, other.region) == 0); in isEquivalentTo() 81 (regionIndex > 0 || uprv_strcmp(region, other.region) == 0) && in operator ==() 85 int32_t LSR::indexForRegion(const char *region) { in indexForRegion() argument 86 int32_t c = region[0]; in indexForRegion() 89 int32_t b = region[1] - '0'; in indexForRegion() 91 c = region[2] - '0'; in indexForRegion() [all …]
|
/third_party/icu/icu4c/source/common/ |
D | lsr.cpp | 19 language(nullptr), script(nullptr), region(r), in LSR() 20 regionIndex(indexForRegion(region)), flags(f) { in LSR() 35 language(other.language), script(other.script), region(other.region), owned(other.owned), in LSR() 53 region = other.region; in operator =() 72 (regionIndex > 0 || uprv_strcmp(region, other.region) == 0); in isEquivalentTo() 81 (regionIndex > 0 || uprv_strcmp(region, other.region) == 0) && in operator ==() 85 int32_t LSR::indexForRegion(const char *region) { in indexForRegion() argument 86 int32_t c = region[0]; in indexForRegion() 89 int32_t b = region[1] - '0'; in indexForRegion() 91 c = region[2] - '0'; in indexForRegion() [all …]
|
/third_party/pixman/test/ |
D | region-contains-test.c | 6 make_random_region (pixman_region32_t *region) in make_random_region() argument 10 pixman_region32_init (region); in make_random_region() 23 pixman_region32_union_rect (region, region, x, y, w, h); in make_random_region() 34 random_coord (pixman_region32_t *region, pixman_bool_t x) in random_coord() argument 42 bb = pixman_region32_rectangles (region, &n_boxes); in random_coord() 50 b = pixman_region32_extents (region); in random_coord() 111 pixman_region32_t region; in test_region_contains_rectangle() local 116 make_random_region (®ion); in test_region_contains_rectangle() 118 box.x1 = random_coord (®ion, TRUE); in test_region_contains_rectangle() 120 box.y1 = random_coord (®ion, FALSE); in test_region_contains_rectangle() [all …]
|
/third_party/skia/third_party/externals/icu/patches/ |
D | locale_google.patch | 1418 diff --git a/source/data/region/af.txt b/source/data/region/af.txt 1420 --- a/source/data/region/af.txt 1421 +++ b/source/data/region/af.txt 1475 diff --git a/source/data/region/am.txt b/source/data/region/am.txt 1477 --- a/source/data/region/am.txt 1478 +++ b/source/data/region/am.txt 1533 diff --git a/source/data/region/ar.txt b/source/data/region/ar.txt 1535 --- a/source/data/region/ar.txt 1536 +++ b/source/data/region/ar.txt 1591 diff --git a/source/data/region/ar_SA.txt b/source/data/region/ar_SA.txt [all …]
|
/third_party/flutter/skia/third_party/externals/icu/patches/ |
D | locale_google.patch | 203 diff --git a/source/data/region/af.txt b/source/data/region/af.txt 205 --- a/source/data/region/af.txt 206 +++ b/source/data/region/af.txt 267 diff --git a/source/data/region/am.txt b/source/data/region/am.txt 269 --- a/source/data/region/am.txt 270 +++ b/source/data/region/am.txt 331 diff --git a/source/data/region/ar.txt b/source/data/region/ar.txt 333 --- a/source/data/region/ar.txt 334 +++ b/source/data/region/ar.txt 395 diff --git a/source/data/region/ar_SA.txt b/source/data/region/ar_SA.txt [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | CurrencyMetaInfo.java | 84 public final String region; field in CurrencyMetaInfo.CurrencyFilter 109 … private CurrencyFilter(String region, String currency, long from, long to, boolean tenderOnly) { in CurrencyFilter() argument 110 this.region = region; in CurrencyFilter() 144 public static CurrencyFilter onRegion(String region) { in onRegion() argument 145 return ALL.withRegion(region); in onRegion() 217 public CurrencyFilter withRegion(String region) { in withRegion() argument 218 return new CurrencyFilter(region, this.currency, this.from, this.to, this.tenderOnly); in withRegion() 229 return new CurrencyFilter(this.region, currency, this.from, this.to, this.tenderOnly); in withCurrency() 239 …return new CurrencyFilter(this.region, this.currency, date.getTime(), date.getTime(), this.tenderO… in withDate() 252 … return new CurrencyFilter(this.region, this.currency, fromLong, toLong, this.tenderOnly); in withDateRange() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | CurrencyMetaInfo.java | 86 public final String region; field in CurrencyMetaInfo.CurrencyFilter 114 … private CurrencyFilter(String region, String currency, long from, long to, boolean tenderOnly) { in CurrencyFilter() argument 115 this.region = region; in CurrencyFilter() 152 public static CurrencyFilter onRegion(String region) { in onRegion() argument 153 return ALL.withRegion(region); in onRegion() 232 public CurrencyFilter withRegion(String region) { in withRegion() argument 233 return new CurrencyFilter(region, this.currency, this.from, this.to, this.tenderOnly); in withRegion() 245 return new CurrencyFilter(this.region, currency, this.from, this.to, this.tenderOnly); in withCurrency() 256 …return new CurrencyFilter(this.region, this.currency, date.getTime(), date.getTime(), this.tenderO… in withDate() 270 … return new CurrencyFilter(this.region, this.currency, fromLong, toLong, this.tenderOnly); in withDateRange() [all …]
|