/external/libvpx/libvpx/vp8/common/x86/ |
D | copy_sse3.asm | 19 %define end_ptr rcx 42 %define end_ptr r10 52 %define end_ptr r9 67 %define end_ptr 99 lea end_ptr, [src_ptr+src_stride*2] 105 movdqu xmm4, XMMWORD PTR [end_ptr] 106 movdqu xmm5, XMMWORD PTR [end_ptr + 16] 107 movdqu xmm6, XMMWORD PTR [end_ptr + src_stride] 108 movdqu xmm7, XMMWORD PTR [end_ptr + src_stride + 16] 112 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 | 411 const char **end_ptr, /* May be NULL */ in hb_buffer_deserialize_glyphs() argument 416 if (!end_ptr) in hb_buffer_deserialize_glyphs() 417 end_ptr = &end; in hb_buffer_deserialize_glyphs() 418 *end_ptr = buf; in hb_buffer_deserialize_glyphs() 428 *end_ptr = buf; in hb_buffer_deserialize_glyphs() 441 buf, buf_len, end_ptr, in hb_buffer_deserialize_glyphs() 446 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-buffer.h | 450 const char **end_ptr,
|
/external/e2fsprogs/util/ |
D | subst.c | 120 char *ptr, *name_ptr, *end_ptr; in substitute_line() local 141 end_ptr = strchr(name_ptr, '@'); in substitute_line() 142 if (!end_ptr) in substitute_line() 144 len = end_ptr - name_ptr; in substitute_line() 154 ptr = end_ptr + 1; in substitute_line() 162 replace_string(ptr, end_ptr, ent->value); in substitute_line() 183 end_ptr = strchr(name_ptr, '}'); in substitute_line() 184 if (!end_ptr) in substitute_line() 186 len = end_ptr - name_ptr; in substitute_line() 194 ptr = end_ptr + 1; in substitute_line() [all …]
|
/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/libpng/contrib/libtests/ |
D | pngunknown.c | 390 png_infop info_ptr, end_ptr; member 409 d->info_ptr = d->end_ptr = NULL; in init_display() 419 png_destroy_read_struct(&d->png_ptr, &d->info_ptr, &d->end_ptr); in clean_display() 422 if (d->png_ptr != NULL || d->info_ptr != NULL || d->end_ptr != NULL) in clean_display() 676 d->end_ptr = png_create_info_struct(d->png_ptr); in check() 677 if (d->info_ptr == NULL || d->end_ptr == NULL) in check() 851 png_read_end(d->png_ptr, d->end_ptr); in check() 860 flags[2] = get_valid(d, d->end_ptr); in check() 861 flags[3] = get_unknown(d, d->end_ptr, 1/*after IDAT*/); in check()
|
/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/android-clat/ |
D | clatd.c | 428 char *end_ptr; in parse_unsigned() local 429 *out = strtoul(str, &end_ptr, 0); in parse_unsigned() 430 return *str && !*end_ptr; in parse_unsigned()
|
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/ |
D | neteq_rtpplay.cc | 59 char* end_ptr; in ParseSsrc() local 60 unsigned long value = strtoul(str.c_str(), &end_ptr, base); in ParseSsrc() 65 if (end_ptr - str.c_str() < static_cast<ptrdiff_t>(str.length())) in ParseSsrc()
|
/external/libpng/ |
D | pngrutil.c | 3063 png_bytep end_ptr = 0; in png_combine_row() local 3095 end_ptr = dp + PNG_ROWBYTES(pixel_depth, row_width) - 1; in png_combine_row() 3096 end_byte = *end_ptr; in png_combine_row() 3535 if (end_ptr != NULL) in png_combine_row() 3536 *end_ptr = (png_byte)((end_byte & end_mask) | (*end_ptr & ~end_mask)); in png_combine_row()
|
D | CHANGES | 660 and to write the iTXt chunk after IDAT if it appears in the end_ptr.
|
/external/pdfium/third_party/lpng_v163/ |
D | pngrutil.c | 3003 png_bytep end_ptr = 0; in png_combine_row() local 3035 end_ptr = dp + PNG_ROWBYTES(pixel_depth, row_width) - 1; in png_combine_row() 3036 end_byte = *end_ptr; in png_combine_row() 3473 if (end_ptr != NULL) in png_combine_row() 3474 *end_ptr = (png_byte)((end_byte & end_mask) | (*end_ptr & ~end_mask)); in png_combine_row()
|
/external/opencv3/3rdparty/libpng/ |
D | pngrutil.c | 2791 png_bytep end_ptr = 0; in png_combine_row() local 2823 end_ptr = dp + PNG_ROWBYTES(pixel_depth, row_width) - 1; in png_combine_row() 2824 end_byte = *end_ptr; in png_combine_row() 3259 if (end_ptr != NULL) in png_combine_row() 3260 *end_ptr = (png_byte)((end_byte & end_mask) | (*end_ptr & ~end_mask)); in png_combine_row()
|
D | CHANGES | 652 and to write the iTXt chunk after IDAT if it appears in the end_ptr.
|
/external/pdfium/core/src/fxcrt/ |
D | fx_basic_bstring.cpp | 773 const FX_CHAR* end_ptr = str1 + len1 - len2; in FX_strstr() local 774 while (str1 <= end_ptr) { in FX_strstr()
|
/external/curl/lib/ |
D | http.c | 2945 k->end_ptr = memchr(k->str_start, 0x0a, *nread); in Curl_http_readwrite_headers() 2947 if(!k->end_ptr) { in Curl_http_readwrite_headers() 2968 rest_length = (k->end_ptr - k->str)+1; in Curl_http_readwrite_headers() 2971 k->str = k->end_ptr + 1; /* move past new line */ in Curl_http_readwrite_headers() 2979 k->end_ptr = k->hbufp; in Curl_http_readwrite_headers()
|
D | urldata.h | 645 char *end_ptr; /* within buf */ member
|
/external/bison/lib/ |
D | stdlib.in.h | 82 int32_t *end_ptr; /* Pointer behind state table. */
|
/external/bison/darwin-lib/ |
D | stdlib.h | 83 int32_t *end_ptr; /* Pointer behind state table. */
|
/external/bison/linux-lib/ |
D | stdlib.h | 83 int32_t *end_ptr; /* Pointer behind state table. */
|
/external/valgrind/perf/ |
D | test_input_for_tinycc.c | 573 int32_t *end_ptr; member
|