Home
last modified time | relevance | path

Searched refs:bufptr (Results 1 – 22 of 22) sorted by relevance

/external/libvpx/libvpx/vp8/decoder/
Ddboolhuff.c41 const unsigned char *bufptr = br->user_buffer; in vp8dx_bool_decoder_fill() local
45 size_t bytes_left = br->user_buffer_end - bufptr; in vp8dx_bool_decoder_fill()
53 br->decrypt_cb(br->decrypt_state, bufptr, decrypted, (int)n); in vp8dx_bool_decoder_fill()
54 bufptr = decrypted; in vp8dx_bool_decoder_fill()
68 value |= (VP8_BD_VALUE)*bufptr << shift; in vp8dx_bool_decoder_fill()
69 ++bufptr; in vp8dx_bool_decoder_fill()
/external/llvm/test/CodeGen/X86/
D2008-09-29-ReMatBug.ll32 %bufptr.0.lcssa = phi i8* [ null, %bb6 ], [ null, %bb37 ] ; <i8*> [#uses=2]
42 %8 = getelementptr i8, i8* %bufptr.0.lcssa, i32 %totalLength.0.ph ; <i8*> [#uses=1]
62 %bufptr.1.ph = phi i8* [ null, %bb4 ], [ %bufptr.0.lcssa, %bb35 ] ; <i8*> [#uses=2]
71 %12 = icmp eq i8* null, %bufptr.1.ph ; <i1> [#uses=1]
75 call void @quux(i8* %bufptr.1.ph) nounwind nounwind
/external/llvm/test/CodeGen/Thumb2/
Dsetjmp_longjmp.ll46 %bufptr = bitcast [5 x i8*]* %buf to i8*
55 %setjmpres = call i32 @llvm.eh.sjlj.setjmp(i8* %bufptr)
65 call void @llvm.eh.sjlj.longjmp(i8* %bufptr)
74 %setjmpres2 = call i32 @llvm.eh.sjlj.setjmp(i8* %bufptr)
84 call void @llvm.eh.sjlj.longjmp(i8* %bufptr)
/external/opencv3/3rdparty/include/ffmpeg_/libavutil/
Dfile.h43 int av_file_map(const char *filename, uint8_t **bufptr, size_t *size,
52 void av_file_unmap(uint8_t *bufptr, size_t size);
/external/clang/test/CodeGen/
Dglobalinit.c24 static char *bufptr = buf; in test() local
26 return c ? buf : bufptr; in test()
/external/opencv3/3rdparty/libjasper/
Djas_stream.c520 char *bufptr; in jas_stream_read() local
522 bufptr = buf; in jas_stream_read()
529 *bufptr++ = c; in jas_stream_read()
539 const char *bufptr; in jas_stream_write() local
541 bufptr = buf; in jas_stream_write()
545 if (jas_stream_putc(stream, *bufptr) == EOF) { in jas_stream_write()
548 ++bufptr; in jas_stream_write()
585 char *bufptr; in jas_stream_gets() local
588 bufptr = buf; in jas_stream_gets()
593 *bufptr++ = c; in jas_stream_gets()
[all …]
Djas_cm.c90 static int jas_cmputint(long **bufptr, int sgnd, int prec, long val);
91 static int jas_cmgetint(long **bufptr, int sgnd, int prec, long *val);
486 jas_cmreal_t *bufptr; in jas_cmxform_apply() local
533 bufptr = &inbuf[i]; in jas_cmxform_apply()
537 *bufptr = (v - bias) / scale; in jas_cmxform_apply()
538 bufptr += xform->numinchans; in jas_cmxform_apply()
560 bufptr = &outbuf[i]; in jas_cmxform_apply()
563 v = (*bufptr) * scale + bias; in jas_cmxform_apply()
564 bufptr += xform->numoutchans; in jas_cmxform_apply()
1225 static int jas_cmgetint(long **bufptr, int sgnd, int prec, long *val) in jas_cmgetint() argument
[all …]
Djas_image.c974 long *bufptr; in jas_image_readcmpt2() local
984 bufptr = buf; in jas_image_readcmpt2()
992 *bufptr++ = v; in jas_image_readcmpt2()
1009 long *bufptr; in jas_image_writecmpt2() local
1019 bufptr = buf; in jas_image_writecmpt2()
1025 v = *bufptr++; in jas_image_writecmpt2()
Djas_icc.c1662 char *bufptr; in jas_iccsigtostr() local
1663 bufptr = buf; in jas_iccsigtostr()
1667 *bufptr++ = c; in jas_iccsigtostr()
1671 *bufptr = '\0'; in jas_iccsigtostr()
/external/mksh/src/
Dmain.c110 } *bufptr; in rndsetup() local
113 cp = alloc(sizeof(*bufptr) - ALLOC_SIZE, APERM); in rndsetup()
116 memset(cp, 0, sizeof(*bufptr) - ALLOC_SIZE); in rndsetup()
119 bufptr = (void *)(cp - ALLOC_SIZE); in rndsetup()
121 bufptr->dataptr = &rndsetupstate; in rndsetup()
123 bufptr->stkptr = &bufptr; in rndsetup()
125 bufptr->mallocptr = bufptr; in rndsetup()
128 sigsetjmp(bufptr->jbuf, 1); in rndsetup()
131 mksh_TIME(bufptr->tv); in rndsetup()
133 h = chvt_rndsetup(bufptr, sizeof(*bufptr)); in rndsetup()
/external/vboot_reference/cgpt/
Dcgpt_find.c23 uint8_t *bufptr = params->comparebuf; in FillBuffer() local
30 ssize_t bytes_read = read(fd, bufptr, count); in FillBuffer()
35 bufptr += bytes_read; in FillBuffer()
/external/google-breakpad/src/client/linux/minidump_writer/
Dminidump_writer.cc1142 for (Buffers* bufptr = buffers;;) { in WriteFile() local
1145 r = sys_read(fd, &bufptr->data[bufptr->len], kBufSize - bufptr->len); in WriteFile()
1152 bufptr->len += r; in WriteFile()
1153 if (bufptr->len == kBufSize) { in WriteFile()
1154 bufptr->next = reinterpret_cast<Buffers*>(Alloc(sizeof(Buffers))); in WriteFile()
1155 bufptr = bufptr->next; in WriteFile()
1156 bufptr->next = NULL; in WriteFile()
1157 bufptr->len = 0; in WriteFile()
/external/llvm/test/CodeGen/ARM/
Dsetjmp_longjmp.ll35 %bufptr = bitcast i8** %arraydecay to i8*
38 %setjmpres = call i32 @llvm.eh.sjlj.setjmp(i8* %bufptr)
48 call void @llvm.eh.sjlj.longjmp(i8* %bufptr)
/external/clang/test/Analysis/
Dmisc-ps-64.m19 unsigned char buf[10], *bufptr = buf;
22 shazam(x, &bufptr);
/external/libpcap/
Dpcap-linux.c1080 char * bufptr; local
1101 if ((bufptr = strstr(buffer, if_name)) &&
1102 (bufptr == buffer || *(bufptr-1) == ' ') &&
1103 *(bufptr + if_name_sz) == ':')
1105 bufptr = bufptr + if_name_sz + 1;
1108 while( --field_to_convert && *bufptr != '\0')
1110 while (*bufptr != '\0' && *(bufptr++) == ' ');
1111 while (*bufptr != '\0' && *(bufptr++) != ' ');
1115 while (*bufptr != '\0' && *bufptr == ' ') bufptr++;
1117 if (*bufptr != '\0')
[all …]
/external/protobuf/src/google/protobuf/stubs/
Dstrutil.cc1268 char* bufptr = buf + 16; in ToHex() local
1271 *--bufptr = kHexChars[num & 0xf]; in ToHex()
1275 return string(bufptr, buf + 16 - bufptr); in ToHex()
/external/opencv3/3rdparty/libtiff/
Dtif_jpeg.c1258 JSAMPROW bufptr = (JSAMPROW)buf; in JPEGDecode() local
1260 if (TIFFjpeg_read_scanlines(sp, &bufptr, 1) != 1) in JPEGDecode()
1771 JSAMPROW bufptr[1]; in JPEGEncode() local
1802 bufptr[0] = (JSAMPROW) line16; in JPEGEncode()
1816 bufptr[0] = (JSAMPROW) buf; in JPEGEncode()
1818 if (TIFFjpeg_write_scanlines(sp, bufptr, 1) != 1) in JPEGEncode()
/external/pdfium/third_party/libtiff/
Dtif_jpeg.c1226 JSAMPROW bufptr = (JSAMPROW)buf; in JPEGDecode() local
1228 if (TIFFjpeg_read_scanlines(sp, &bufptr, 1) != 1) in JPEGDecode()
1886 JSAMPROW bufptr[1]; in JPEGEncode() local
1924 bufptr[0] = (JSAMPROW) line16; in JPEGEncode()
1938 bufptr[0] = (JSAMPROW) buf; in JPEGEncode()
1940 if (TIFFjpeg_write_scanlines(sp, bufptr, 1) != 1) in JPEGEncode()
/external/netperf/src/
Dnetlib.c1596 char *bufptr = temp_link->buffer_ptr; in allocate_buffer_ring() local
1599 if (((bytes_read = (int)fread(bufptr, in allocate_buffer_ring()
1606 bufptr += bytes_read; in allocate_buffer_ring()
1614 char *bufptr = temp_link->buffer_ptr; in allocate_buffer_ring() local
1616 bufptr[j] = default_fill[fill_cursor]; in allocate_buffer_ring()
/external/opencv3/modules/core/src/
Dstat.cpp3601 int* bufptr = buf; in operator ()() local
3606 K > 0 ? (uchar*)bufptr : dist->ptr(i), mask->data ? mask->ptr(i) : 0); in operator ()()
3619 int d = bufptr[j]; in operator ()()
/external/opencv3/modules/imgproc/src/
Dfilter.cpp1487 uchar* bufptr = alignPtr((uchar*)buf, 32); in ippiOperator() local
1493 … ippBorderRepl, borderValue[0], bufptr) < 0) || in ippiOperator()
1495 … ippBorderRepl, borderValue, bufptr) < 0)) in ippiOperator()
Dimgwarp.cpp2814 uchar* bufptr = alignPtr((uchar*)buf, 32); in operator ()() local
2816 …nt)src.step[0], pDst, (int)dst.step[0], dstOffset, dstSize, ippBorderRepl, 0, pSpec, bufptr ) < 0 ) in operator ()()