Home
last modified time | relevance | path

Searched refs:end_ptr (Results 1 – 25 of 25) sorted by relevance

/external/libvpx/libvpx/vp8/common/x86/
Dcopy_sse3.asm19 %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/
Dhb-buffer-deserialize-text.hh322 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 …]
Dhb-buffer-deserialize-json.hh445 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()
Dhb-buffer-serialize.cc411 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()
Dhb-buffer-deserialize-text.rl48 *end_ptr = p;
97 const char **end_ptr,
109 *end_ptr = ++p;
121 *end_ptr = p;
Dhb-buffer-deserialize-json.rl48 *end_ptr = p;
103 const char **end_ptr,
115 *end_ptr = ++p;
127 *end_ptr = p;
Dhb-buffer.h450 const char **end_ptr,
/external/e2fsprogs/util/
Dsubst.c120 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/
Djson.cc52 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/
Dpngunknown.c390 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/
Dsad_sse3.asm19 %define end_ptr rcx
41 %define end_ptr r10
50 %define end_ptr r9
64 %define end_ptr
/external/android-clat/
Dclatd.c428 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/
Dneteq_rtpplay.cc59 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/
Dpngrutil.c3063 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()
DCHANGES660 and to write the iTXt chunk after IDAT if it appears in the end_ptr.
/external/pdfium/third_party/lpng_v163/
Dpngrutil.c3003 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/
Dpngrutil.c2791 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()
DCHANGES652 and to write the iTXt chunk after IDAT if it appears in the end_ptr.
/external/pdfium/core/src/fxcrt/
Dfx_basic_bstring.cpp773 const FX_CHAR* end_ptr = str1 + len1 - len2; in FX_strstr() local
774 while (str1 <= end_ptr) { in FX_strstr()
/external/curl/lib/
Dhttp.c2945 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()
Durldata.h645 char *end_ptr; /* within buf */ member
/external/bison/lib/
Dstdlib.in.h82 int32_t *end_ptr; /* Pointer behind state table. */
/external/bison/darwin-lib/
Dstdlib.h83 int32_t *end_ptr; /* Pointer behind state table. */
/external/bison/linux-lib/
Dstdlib.h83 int32_t *end_ptr; /* Pointer behind state table. */
/external/valgrind/perf/
Dtest_input_for_tinycc.c573 int32_t *end_ptr; member