Searched refs:buf_end (Results 1 - 21 of 21) sorted by relevance

/external/libunwind/src/
H A Dos-linux.h38 char *buf_end; member in struct:map_iterator
93 mi->buf = mi->buf_end = cp + mi->buf_size;
218 ssize_t bytes_left = mi->buf_end - mi->buf;
235 memmove (mi->buf_end - mi->buf_size, mi->buf, bytes_left);
237 mi->buf = mi->buf_end - mi->buf_size;
246 mi->buf and mi->buf_end are valid. */
247 memmove (mi->buf_end - nread - bytes_left, mi->buf,
249 mi->buf = mi->buf_end - nread - bytes_left;
311 munmap (mi->buf_end - mi->buf_size, mi->buf_size);
312 mi->buf = mi->buf_end
[all...]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decoder.h37 int buf_start, buf_end; // pbi->tile_buffers to decode, inclusive member in struct:TileWorkerData
H A Dvp9_decodeframe.c1521 } while (!tile_data->xd.corrupted && ++n <= tile_data->buf_end);
1640 tile_data->buf_end = buf_start + count - 1;
1646 assert(tile_data->buf_end == tile_cols - 1);
/external/syslinux/gpxe/src/net/infiniband/
H A Dib_srp.c82 char *buf_end; local
97 *bytes = strtoul ( buf, &buf_end, 16 );
98 if ( buf_end != &buf[2] )
/external/wpa_supplicant_8/hs20/client/
H A Dest.c535 char *pos, *end, *buf_end; local
547 buf_end = pos + ptr->length;
550 while (pos < buf_end && *pos != '\n')
552 if (pos == buf_end) {
559 while (end < buf_end && *end != '-')
/external/webp/src/dec/
H A Dvp8_dec.c202 const uint8_t* buf_end = buf + size; local
225 return (part_start < buf_end) ? VP8_STATUS_OK :
/external/opencv/cv/include/
H A Dcv.hpp122 the method initializes ring buffer (buf_end, buf_head, buf_tail, buf_count, rows),
146 uchar *buf_start, *buf_end, *buf_head, *buf_tail; member in class:CvBaseImageFilter
/external/opencv/cv/src/
H A Dcvmorph.cpp315 buf_end -= buf_step;
334 uchar* trow = is_separable ? buf_end : buf_tail;
369 if( buf_tail >= buf_end )
H A Dcvfilter.cpp226 buf_end = buf_start + buf_max_count*buf_step;
232 uchar* trow = buf_end;
233 const_row = buf_end + (is_separable ? 1 : 0)*tr_step;
351 uchar* trow = is_separable ? buf_end : buf_tail;
404 if( buf_tail >= buf_end )
556 if( bptr >= buf_end )
583 if( buf_head >= buf_end )
H A Dcvsmooth.cpp178 buf_end -= buf_step;
181 s = sum = buf_end + cvAlign((width + ksize.width - 1)*CV_ELEM_SIZE(src_type), ALIGN);
/external/pcre/dist2/src/sljit/
H A DsljitNativeSPARC_common.c281 sljit_ins *buf_end; local
304 buf_end = buf_ptr + (buf->used_size >> 2);
333 } while (buf_ptr < buf_end);
H A DsljitNativeARM_32.c562 sljit_uw *buf_end; local
618 buf_end = buf_ptr + (buf->used_size >> 2);
698 } while (buf_ptr < buf_end);
715 buf_end = buf_ptr + compiler->cpool_fill;
717 while (buf_ptr < buf_end) {
H A DsljitNativeARM_64.c212 sljit_ins *buf_end; local
237 buf_end = buf_ptr + (buf->used_size >> 2);
260 } while (buf_ptr < buf_end);
H A DsljitNativeARM_T2_32.c348 sljit_u16 *buf_end; local
371 buf_end = buf_ptr + (buf->used_size >> 1);
394 } while (buf_ptr < buf_end);
H A DsljitNativeX86_common.c477 sljit_u8 *buf_end; local
499 buf_end = buf_ptr + buf->used_size;
540 } while (buf_ptr < buf_end);
541 SLJIT_ASSERT(buf_ptr == buf_end);
H A DsljitNativeMIPS_common.c365 sljit_ins *buf_end; local
388 buf_end = buf_ptr + (buf->used_size >> 2);
417 } while (buf_ptr < buf_end);
H A DsljitNativePPC_common.c327 sljit_ins *buf_end; local
357 buf_end = buf_ptr + (buf->used_size >> 2);
417 } while (buf_ptr < buf_end);
H A DsljitNativeTILEGX_64.c1002 sljit_ins *buf_end; local
1025 buf_end = buf_ptr + (buf->used_size >> 3);
1057 } while (buf_ptr < buf_end);
/external/python/cpython2/Objects/
H A Dfloatobject.c1096 char *buf, *buf_end, shortbuf[100], *mybuf=shortbuf; local
1166 buf = _Py_dg_dtoa(x, 3, ndigits+halfway_case, &decpt, &sign, &buf_end);
1172 buflen = buf_end - buf;
1195 /* Get new buffer if shortbuf is too small. Space needed <= buf_end -
/external/python/cpython3/Objects/
H A Dfloatobject.c919 char *buf, *buf_end, shortbuf[100], *mybuf=shortbuf; local
926 buf = _Py_dg_dtoa(x, 3, ndigits, &decpt, &sign, &buf_end);
933 /* Get new buffer if shortbuf is too small. Space needed <= buf_end -
935 buflen = buf_end - buf;
/external/valgrind/perf/
H A Dtinycc.c2266 uint8_t *buf_end;
7517 bf->buf_end = bf->buffer;
7539 if (bf->buf_ptr >= bf->buf_end) {
7554 bf->buf_end = bf->buffer + len;
7555 *bf->buf_end = CH_EOB;
7557 if (bf->buf_ptr < bf->buf_end) {
7560 bf->buf_ptr = bf->buf_end;
7608 if (p >= file->buf_end) {
9177 if (p >= file->buf_end) {
9181 if (p >= file->buf_end)
2264 uint8_t *buf_end; member in struct:BufferedFile
[all...]

Completed in 437 milliseconds