/external/libvpx/libvpx/vp8/encoder/x86/ |
D | copy_sse3.asm | 19 %define end_ptr rcx 42 %define end_ptr r10 52 %define end_ptr r9 67 %define end_ptr 100 lea end_ptr, [src_ptr+src_stride*2] 106 movdqu xmm4, XMMWORD PTR [end_ptr] 107 movdqu xmm5, XMMWORD PTR [end_ptr + 16] 108 movdqu xmm6, XMMWORD PTR [end_ptr + src_stride] 109 movdqu xmm7, XMMWORD PTR [end_ptr + src_stride + 16] 113 lea end_ptr, [ref_ptr+ref_stride*2] [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-buffer-deserialize-text.hh | 322 const char **end_ptr, in _hb_buffer_deserialize_glyphs_text() argument 334 *end_ptr = ++p; in _hb_buffer_deserialize_glyphs_text() 428 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() 440 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() 452 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() 464 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() 476 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() 505 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() 517 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() 529 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() [all …]
|
D | hb-buffer-deserialize-json.hh | 445 const char **end_ptr, in _hb_buffer_deserialize_glyphs_json() argument 457 *end_ptr = ++p; in _hb_buffer_deserialize_glyphs_json() 509 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json() 560 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json() 572 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json() 584 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json() 596 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json() 608 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json() 620 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json() 638 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
|
D | hb-buffer-serialize.cc | 428 const char **end_ptr, /* May be NULL */ in hb_buffer_deserialize_glyphs() argument 433 if (!end_ptr) in hb_buffer_deserialize_glyphs() 434 end_ptr = &end; in hb_buffer_deserialize_glyphs() 435 *end_ptr = buf; in hb_buffer_deserialize_glyphs() 445 *end_ptr = buf; in hb_buffer_deserialize_glyphs() 458 buf, buf_len, end_ptr, in hb_buffer_deserialize_glyphs() 463 buf, buf_len, end_ptr, in hb_buffer_deserialize_glyphs()
|
D | hb-buffer-deserialize-text.rl | 48 *end_ptr = p; 97 const char **end_ptr, 109 *end_ptr = ++p; 121 *end_ptr = p;
|
D | hb-buffer-deserialize-json.rl | 48 *end_ptr = p; 103 const char **end_ptr, 115 *end_ptr = ++p; 127 *end_ptr = p;
|
D | hb-number-parser.hh | 123 strtod_rl (const char *buf, char **end_ptr) in strtod_rl() argument 219 *end_ptr = (char *) p; in strtod_rl()
|
D | hb-number-parser.rl | 96 strtod_rl (const char *buf, char **end_ptr) 118 *end_ptr = (char *) p;
|
/external/skqp/third_party/harfbuzz/ |
D | hb-buffer-deserialize-text.hh | 322 const char **end_ptr, in _hb_buffer_deserialize_glyphs_text() argument 334 *end_ptr = ++p; in _hb_buffer_deserialize_glyphs_text() 428 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() 440 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() 452 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() 464 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() 476 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() 505 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() 517 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() 529 *end_ptr = p; in _hb_buffer_deserialize_glyphs_text() [all …]
|
D | hb-buffer-deserialize-json.hh | 445 const char **end_ptr, in _hb_buffer_deserialize_glyphs_json() argument 457 *end_ptr = ++p; in _hb_buffer_deserialize_glyphs_json() 509 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json() 560 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json() 572 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json() 584 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json() 596 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json() 608 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json() 620 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json() 638 *end_ptr = p; in _hb_buffer_deserialize_glyphs_json()
|
/external/android-clat/ |
D | clatd.h | 57 char *end_ptr; in parse_int() local 58 *out = strtol(str, &end_ptr, 0); in parse_int() 59 return *str && !*end_ptr; in parse_int() 68 char *end_ptr; in parse_unsigned() local 69 *out = strtoul(str, &end_ptr, 0); in parse_unsigned() 70 return *str && !*end_ptr; in parse_unsigned()
|
/external/webrtc/webrtc/base/ |
D | json.cc | 52 char* end_ptr; in GetIntFromJson() local 54 val = strtol(c_str, &end_ptr, 10); // NOLINT in GetIntFromJson() 55 ret = (end_ptr != c_str && *end_ptr == '\0' && !errno && in GetIntFromJson() 72 char* end_ptr; in GetUIntFromJson() local 74 val = strtoul(c_str, &end_ptr, 10); // NOLINT in GetUIntFromJson() 75 ret = (end_ptr != c_str && *end_ptr == '\0' && !errno && in GetUIntFromJson() 113 char* end_ptr; in GetDoubleFromJson() local 115 val = strtod(c_str, &end_ptr); in GetDoubleFromJson() 116 ret = (end_ptr != c_str && *end_ptr == '\0' && !errno); in GetDoubleFromJson()
|
/external/e2fsprogs/util/ |
D | subst.c | 137 char *ptr, *name_ptr, *end_ptr; in substitute_line() local 158 end_ptr = strchr(name_ptr, '@'); in substitute_line() 159 if (!end_ptr) in substitute_line() 161 len = end_ptr - name_ptr; in substitute_line() 171 ptr = end_ptr + 1; in substitute_line() 179 replace_string(ptr, end_ptr, ent->value); in substitute_line() 200 end_ptr = strchr(name_ptr, '}'); in substitute_line() 201 if (!end_ptr) in substitute_line() 203 len = end_ptr - name_ptr; in substitute_line() 211 ptr = end_ptr + 1; in substitute_line() [all …]
|
/external/curl/lib/ |
D | altsvc.c | 444 char *end_ptr; in Curl_altsvc_parse() local 462 num = strtoul(semip, &end_ptr, 10); in Curl_altsvc_parse() 463 if((end_ptr != semip) && num && (num < ULONG_MAX)) { in Curl_altsvc_parse() 468 if(quoted && (*end_ptr == '\"')) in Curl_altsvc_parse() 469 end_ptr++; in Curl_altsvc_parse() 471 semip = end_ptr; in Curl_altsvc_parse() 505 char *end_ptr; in Curl_altsvc_parse() local 506 unsigned long port = strtoul(++p, &end_ptr, 10); in Curl_altsvc_parse() 507 if(port > USHRT_MAX || end_ptr == p || *end_ptr != '\"') { in Curl_altsvc_parse() 511 p = end_ptr; in Curl_altsvc_parse()
|
D | hostip.c | 880 char *end_ptr; in Curl_loadhostpairs() local 894 tmp_port = strtoul(port_ptr, &end_ptr, 10); in Curl_loadhostpairs() 895 if(tmp_port > USHRT_MAX || end_ptr == port_ptr || *end_ptr != ':') in Curl_loadhostpairs() 900 addresses = end_ptr + 1; in Curl_loadhostpairs() 903 while(*end_ptr) { in Curl_loadhostpairs() 907 addr_begin = end_ptr + 1; in Curl_loadhostpairs() 911 end_ptr = addr_end; in Curl_loadhostpairs()
|
/external/u-boot/board/freescale/mx31pdk/ |
D | mx31pdk.c | 31 ulong *start_ptr, *end_ptr, *link_ptr, *run_ptr, *dst; in board_init_f() local 33 asm volatile ("ldr %0, =_end" : "=r"(end_ptr)); in board_init_f() 36 for (dst = start_ptr; dst < end_ptr; dst++) in board_init_f()
|
/external/jemalloc_new/src/ |
D | android_je_iterate.c | 28 uintptr_t end_ptr = ptr + size; in je_malloc_iterate() local 29 while (ptr < end_ptr) { in je_malloc_iterate() 59 if (allocated_ptr >= end_ptr) { in je_malloc_iterate()
|
/external/pdfium/third_party/base/allocator/partition_allocator/ |
D | partition_alloc.cc | 522 char* end_ptr = begin_ptr + (slot_size * truncated_slots); in PartitionPurgePage() local 527 end_ptr = reinterpret_cast<char*>( in PartitionPurgePage() 528 RoundUpToSystemPage(reinterpret_cast<size_t>(end_ptr))); in PartitionPurgePage() 529 DCHECK(end_ptr <= ptr + bucket->get_bytes_per_span()); in PartitionPurgePage() 530 if (begin_ptr < end_ptr) { in PartitionPurgePage() 531 unprovisioned_bytes = end_ptr - begin_ptr; in PartitionPurgePage() 581 char* end_ptr = begin_ptr + slot_size; in PartitionPurgePage() local 590 end_ptr = reinterpret_cast<char*>( in PartitionPurgePage() 591 RoundDownToSystemPage(reinterpret_cast<size_t>(end_ptr))); in PartitionPurgePage() 592 if (begin_ptr < end_ptr) { in PartitionPurgePage() [all …]
|
/external/libpng/contrib/libtests/ |
D | pngunknown.c | 398 png_infop info_ptr, end_ptr; member 417 d->info_ptr = d->end_ptr = NULL; in init_display() 427 png_destroy_read_struct(&d->png_ptr, &d->info_ptr, &d->end_ptr); in clean_display() 430 if (d->png_ptr != NULL || d->info_ptr != NULL || d->end_ptr != NULL) in clean_display() 684 d->end_ptr = png_create_info_struct(d->png_ptr); in check() 685 if (d->info_ptr == NULL || d->end_ptr == NULL) in check() 859 png_read_end(d->png_ptr, d->end_ptr); in check() 868 flags[2] = get_valid(d, d->end_ptr); in check() 869 flags[3] = get_unknown(d, d->end_ptr, 1/*after IDAT*/); in check()
|
/external/angle/third_party/glslang/src/StandAlone/ |
D | spirv-remap.cpp | 218 char* end_ptr = 0; in parseCmdLine() local 219 int verb = ::strtol(argv[a], &end_ptr, 10); in parseCmdLine() 223 if (*end_ptr == '\0' && end_ptr != argv[a]) { in parseCmdLine()
|
/external/deqp-deps/glslang/StandAlone/ |
D | spirv-remap.cpp | 218 char* end_ptr = 0; in parseCmdLine() local 219 int verb = ::strtol(argv[a], &end_ptr, 10); in parseCmdLine() 223 if (*end_ptr == '\0' && end_ptr != argv[a]) { in parseCmdLine()
|
/external/igt-gpu-tools/assembler/ |
D | main.c | 298 char *dec_ptr, *end_ptr; in main() local 304 decimal = strtoul(++dec_ptr, &end_ptr, 10); in main() 305 if (end_ptr != dec_ptr && *end_ptr == '\0') { in main()
|
/external/u-boot/board/armadeus/apf27/ |
D | apf27.c | 244 ulong *start_ptr, *end_ptr, *link_ptr, *run_ptr, *dst; in board_init_f() local 246 asm volatile ("ldr %0, =_end" : "=r"(end_ptr)); in board_init_f() 249 for (dst = start_ptr; dst < end_ptr; dst++) in board_init_f()
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | sad_sse3.asm | 19 %define end_ptr rcx 41 %define end_ptr r10 50 %define end_ptr r9 64 %define end_ptr
|
/external/libchrome/base/memory/ |
D | shared_memory_region_unittest.cc | 22 const char* end_ptr = start_ptr + size; in IsMemoryFilledWithByte() local 23 for (const char* ptr = start_ptr; ptr < end_ptr; ++ptr) { in IsMemoryFilledWithByte()
|