Searched defs:iptr (Results 1 - 25 of 28) sorted by relevance

12

/external/clang/test/Sema/
H A Dattr-malloc.c14 typedef int * iptr; typedef
15 iptr returns_iptr (void) __attribute((malloc)); // no-warning
H A Dnullability.c81 int * _Nonnull iptr; local
82 float *fptr = iptr; // expected-warning{{incompatible pointer types initializing 'float *' with an expression of type 'int * _Nonnull'}}
/external/fdlibm/
H A Ds_modf.c15 * ieee_modf(double x, double *iptr)
16 * return fraction part of x, and return x's integral part in *iptr.
33 double ieee_modf(double x, double *iptr) argument
35 double ieee_modf(x, iptr)
36 double x,*iptr;
46 __HIp(iptr) = i0&0x80000000;
47 __LOp(iptr) = 0; /* *iptr = +-0 */
52 *iptr = x;
57 __HIp(iptr)
[all...]
/external/clang/test/CodeGen/
H A DPR8880.c3 void pr8880_cg_1(int *iptr) { argument
16 *iptr = 7;
33 void pr8880_cg_2(int *iptr) { argument
46 *iptr = 7;
63 void pr8880_cg_3(int *iptr) { argument
80 *iptr = 7;
94 void pr8880_cg_4(int *iptr) { argument
111 *iptr = 7;
125 void pr8880_cg_5(int x, int *iptr) { argument
139 *iptr
150 pr8880_cg_6(int x, int *iptr) argument
[all...]
/external/clang/test/CodeGenCXX/
H A Dfunction-template-specialization.cpp14 void test(int *iptr, float *fptr, int diff) { argument
16 iptr = next(iptr, diff);
25 void test2(int *iptr, double *dptr, int diff) { argument
26 iptr = next(iptr, diff);
/external/pcre/dist/
H A Dpcre16_utf16_utils.c93 const pcre_uchar *iptr = (const pcre_uchar *)input; local
99 length = STRLEN_UC(iptr) + 1;
100 end = iptr + length;
102 while (iptr < end)
104 c = *iptr++;
H A Dpcre32_utf32_utils.c105 const pcre_uchar *iptr = (const pcre_uchar *)input; local
111 end = iptr + STRLEN_UC(iptr) + 1;
113 end = iptr + length;
115 while (iptr < end)
117 c = *iptr++;
H A Dpcre_jit_test.c985 unsigned char *iptr = (unsigned char*)input; local
992 while (*iptr && max_length > 1) {
995 *offsetmap++ = (int)(iptr - (unsigned char*)input);
997 if (*iptr < 0xc0)
998 c = *iptr++;
999 else if (!(*iptr & 0x20)) {
1000 c = ((iptr[0] & 0x1f) << 6) | (iptr[1] & 0x3f);
1001 iptr += 2;
1002 } else if (!(*iptr
1033 unsigned char *iptr = (unsigned char*)input; local
1057 unsigned char *iptr = (unsigned char*)input; local
1093 unsigned char *iptr = (unsigned char*)input; local
[all...]
/external/libvncserver/libvncserver/
H A Dtabletranstemplate.c57 char *iptr, char *optr,
61 IN_T *ip = (IN_T *)iptr;
88 char *iptr, char *optr,
92 IN_T *ip = (IN_T *)iptr;
55 rfbTranslateWithSingleTableINtoOUT(char *table, rfbPixelFormat *in, rfbPixelFormat *out, char *iptr, char *optr, int bytesBetweenInputLines, int width, int height) argument
86 rfbTranslateWithRGBTablesINtoOUT(char *table, rfbPixelFormat *in, rfbPixelFormat *out, char *iptr, char *optr, int bytesBetweenInputLines, int width, int height) argument
H A Dtabletrans24template.c52 char *iptr, char *optr,
56 uint8_t *ip = (uint8_t *)iptr;
91 char *iptr, char *optr,
95 uint8_t *ip = (uint8_t *)iptr;
143 char *iptr, char *optr,
147 uint8_t *ip = (uint8_t *)iptr;
176 char *iptr, char *optr,
180 uint8_t *ip = (uint8_t *)iptr;
213 char *iptr, char *optr,
217 IN_T *ip = (IN_T *)iptr;
50 rfbTranslateWithSingleTable24to24(char *table, rfbPixelFormat *in, rfbPixelFormat *out, char *iptr, char *optr, int bytesBetweenInputLines, int width, int height) argument
89 rfbTranslateWithRGBTables24to24(char *table, rfbPixelFormat *in, rfbPixelFormat *out, char *iptr, char *optr, int bytesBetweenInputLines, int width, int height) argument
141 rfbTranslateWithSingleTable24toOUT(char *table, rfbPixelFormat *in, rfbPixelFormat *out, char *iptr, char *optr, int bytesBetweenInputLines, int width, int height) argument
174 rfbTranslateWithRGBTables24toOUT(char *table, rfbPixelFormat *in, rfbPixelFormat *out, char *iptr, char *optr, int bytesBetweenInputLines, int width, int height) argument
211 rfbTranslateWithSingleTableINto24(char *table, rfbPixelFormat *in, rfbPixelFormat *out, char *iptr, char *optr, int bytesBetweenInputLines, int width, int height) argument
243 rfbTranslateWithRGBTablesINto24(char *table, rfbPixelFormat *in, rfbPixelFormat *out, char *iptr, char *optr, int bytesBetweenInputLines, int width, int height) argument
[all...]
H A Dtranslate.c226 char *iptr, char *optr, int bytesBetweenInputLines,
232 memcpy(optr, iptr, bytesPerOutputLine);
233 iptr += bytesBetweenInputLines;
225 rfbTranslateNone(char *table, rfbPixelFormat *in, rfbPixelFormat *out, char *iptr, char *optr, int bytesBetweenInputLines, int width, int height) argument
/external/clang/test/SemaCXX/
H A Dwarn-bad-memaccess.cpp115 int i, *iptr; local
120 memset(&iptr, 0, sizeof iptr);
/external/opencv3/3rdparty/openexr/Imath/
H A DImathMath.h106 static T modf (T x, T *iptr) argument
110 *iptr = ival;
/external/speex/libspeex/
H A Dfftwrap.c209 float *iptr = t->in; local
213 iptr[i]=in[i] * m;
227 float *iptr = t->in; local
230 iptr[0] = in[0];
231 iptr[1] = 0.0f;
233 iptr[i+1] = in[i];
234 iptr[N+1] = 0.0f;
H A Dresample.c349 const spx_word16_t *iptr = & in[last_sample]; local
355 accum[0] += sinc[j]*iptr[j];
356 accum[1] += sinc[j+1]*iptr[j+1];
357 accum[2] += sinc[j+2]*iptr[j+2];
358 accum[3] += sinc[j+3]*iptr[j+3];
363 sum = inner_product_single(sinc, iptr, N);
401 const spx_word16_t *iptr = & in[last_sample]; local
407 accum[0] += sinc[j]*iptr[j];
408 accum[1] += sinc[j+1]*iptr[j+1];
409 accum[2] += sinc[j+2]*iptr[
448 const spx_word16_t *iptr = & in[last_sample]; local
511 const spx_word16_t *iptr = & in[last_sample]; local
[all...]
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
H A Dp1.cpp98 int* iptr = &i; member in namespace:bad_args
99 X0<iptr> x0b; // expected-error{{non-type template argument for template parameter of pointer type 'int *' must have its address taken}}
/external/curl/tests/server/
H A Dutil.c71 char *iptr = data; local
78 *optr++ = *iptr++;
80 snprintf(optr, 4, "%%%02x", *iptr++);
/external/opencv3/3rdparty/libpng/
H A Dpngread.c1279 png_uint_32 iptr; local
1283 for (iptr=0; iptr<info_ptr->height; iptr++)
1284 info_ptr->row_pointers[iptr] = NULL;
/external/ppp/pppd/plugins/radius/
H A Dconfig.c65 int *iptr; local
72 if ((iptr = (int *) malloc(sizeof(iptr))) == NULL) {
77 *iptr = atoi(p);
78 option->val = (void *) iptr;
135 int *iptr; local
142 if ((iptr = (int *) malloc(sizeof(iptr))) == NULL) {
147 *iptr = 0;
151 *iptr
[all...]
/external/vboot_reference/utility/
H A Dbmpblk_util.c393 ImageInfo *iptr = local
395 if (iptr->tag == TAG_HWID) {
398 RENDER_HWID, iptr->tag, iptr->format, iptr->compression,
399 iptr->compressed_size, iptr->original_size);
400 } else if (iptr->tag == TAG_HWID_RTOL) {
403 RENDER_HWID_RTOL, iptr->tag,
404 iptr
[all...]
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU_SupernodalMatrix.h281 Index iptr = istart + nsupc; local
284 irow = rowIndex()[iptr];
287 iptr++;
/external/curl/lib/
H A Dtransfer.c1458 const unsigned char *iptr; local
1460 for(iptr = (unsigned char *)url; /* read from here */
1461 *iptr; /* until zero byte */
1462 iptr++) {
1463 switch(*iptr) {
1468 if(*iptr >= 0x80) {
1469 snprintf(optr, 4, "%%%02x", *iptr);
1473 *optr++=*iptr;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_resize.c494 uint8_t *iptr = img; local
496 for (i = 0; i < len; ++i, iptr += stride) {
497 *aptr++ = *iptr;
503 uint8_t *iptr = img; local
505 for (i = 0; i < len; ++i, iptr += stride) {
506 *iptr = *aptr++;
788 uint16_t *iptr = img; local
790 for (i = 0; i < len; ++i, iptr += stride) {
791 *aptr++ = *iptr;
798 uint16_t *iptr local
[all...]
/external/libpng/
H A Dpngread.c1200 png_uint_32 iptr; local
1205 for (iptr=0; iptr<info_ptr->height; iptr++)
1206 info_ptr->row_pointers[iptr] = NULL;
1210 for (iptr = 0; iptr < info_ptr->height; iptr++)
1211 info_ptr->row_pointers[iptr] = png_voidcast(png_bytep,
/external/pdfium/third_party/lpng_v163/
H A Dpngread.c1091 png_uint_32 iptr; local
1095 for (iptr=0; iptr<info_ptr->height; iptr++)
1096 info_ptr->row_pointers[iptr] = NULL;

Completed in 932 milliseconds

12