HomeSort by relevance Sort by last modified time
    Searched refs:iptr (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/clang/test/CodeGen/
PR8880.c 3 void pr8880_cg_1(int *iptr) {
16 *iptr = 7;
33 void pr8880_cg_2(int *iptr) {
46 *iptr = 7;
63 void pr8880_cg_3(int *iptr) {
80 *iptr = 7;
94 void pr8880_cg_4(int *iptr) {
111 *iptr = 7;
125 void pr8880_cg_5(int x, int *iptr) {
139 *iptr = 7
    [all...]
  /external/fdlibm/
s_modf.c 15 * 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)
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) = i0&(~i)
    [all...]
  /external/clang/test/CodeGenCXX/
function-template-specialization.cpp 10 void test(int *iptr, float *fptr, int diff) {
12 iptr = next(iptr, diff);
21 void test2(int *iptr, double *dptr, int diff) {
22 iptr = next(iptr, diff);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_modf.c 18 * modf(double x, double *iptr)
19 * return fraction part of x, and return x's integral part in *iptr.
33 modf(double x, double *iptr)
41 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */
47 *iptr = x;
52 INSERT_WORDS(*iptr,i0&(~i),0);
53 return x - *iptr;
59 *iptr = x;
62 *iptr = x*one
    [all...]
s_modff.c 25 modff(float x, float *iptr)
33 SET_FLOAT_WORD(*iptr,i0&0x80000000); /* *iptr = +-0 */
39 *iptr = x;
44 SET_FLOAT_WORD(*iptr,i0&(~i));
45 return x - *iptr;
50 *iptr = x*one;
s_modfl.c 58 modfl(long double x, long double *iptr)
67 *iptr = zero[ux.bits.sign];
72 *iptr = x;
79 *iptr = ux.e;
84 *iptr = x;
91 *iptr = x;
97 *iptr = ux.e;
  /external/pcre/dist/
pcre32_utf32_utils.c 105 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++;
pcre16_utf16_utils.c 93 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++;
pcre_jit_test.c 976 unsigned char *iptr = (unsigned char*)input; local
1024 unsigned char *iptr = (unsigned char*)input; local
1048 unsigned char *iptr = (unsigned char*)input; local
1084 unsigned char *iptr = (unsigned char*)input; local
    [all...]
  /external/clang/test/Sema/
attr-malloc.c 14 typedef int * iptr; typedef
15 iptr returns_iptr (void) __attribute((malloc)); // no-warning
  /external/ppp/pppd/plugins/radius/
config.c 65 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 = AUTH_LOCAL_FST
    [all...]
  /external/clang/test/SemaCXX/
warn-bad-memaccess.cpp 111 int i, *iptr; local
116 memset(&iptr, 0, sizeof iptr);
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1.cpp 95 int* iptr = &i; member in namespace:bad_args
96 X0<iptr> x0b; // expected-error{{non-type template argument for template parameter of pointer type 'int *' must have its address taken}}
  /external/speex/libspeex/
fftwrap.c 209 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;
resample.c 349 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[j+2]
448 const spx_word16_t *iptr = & in[last_sample]; local
511 const spx_word16_t *iptr = & in[last_sample]; local
    [all...]
  /external/chromium_org/third_party/speex/libspeex/
resample.c 345 const spx_word16_t *iptr = & in[last_sample]; local
351 accum[0] += sinc[j]*iptr[j];
352 accum[1] += sinc[j+1]*iptr[j+1];
353 accum[2] += sinc[j+2]*iptr[j+2];
354 accum[3] += sinc[j+3]*iptr[j+3];
358 sum = inner_product_single(sinc, iptr, N);
396 const spx_word16_t *iptr = & in[last_sample]; local
402 accum[0] += sinc[j]*iptr[j];
403 accum[1] += sinc[j+1]*iptr[j+1];
404 accum[2] += sinc[j+2]*iptr[j+2]
443 const spx_word16_t *iptr = & in[last_sample]; local
505 const spx_word16_t *iptr = & in[last_sample]; local
    [all...]
  /external/eigen/Eigen/src/SparseLU/
SparseLU_SupernodalMatrix.h 281 Index iptr = istart + nsupc; local
284 irow = rowIndex()[iptr];
287 iptr++;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_resize.c 490 uint8_t *iptr = img; local
492 for (i = 0; i < len; ++i, iptr += stride) {
493 *aptr++ = *iptr;
499 uint8_t *iptr = img; local
501 for (i = 0; i < len; ++i, iptr += stride) {
502 *iptr = *aptr++;
  /external/libvpx/libvpx/vp9/encoder/
vp9_resize.c 490 uint8_t *iptr = img; local
492 for (i = 0; i < len; ++i, iptr += stride) {
493 *aptr++ = *iptr;
499 uint8_t *iptr = img; local
501 for (i = 0; i < len; ++i, iptr += stride) {
502 *iptr = *aptr++;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_resize.c 490 uint8_t *iptr = img; local
492 for (i = 0; i < len; ++i, iptr += stride) {
493 *aptr++ = *iptr;
499 uint8_t *iptr = img; local
501 for (i = 0; i < len; ++i, iptr += stride) {
502 *iptr = *aptr++;
  /external/bison/darwin-lib/
math.h     [all...]
  /external/bison/lib/
math.in.h     [all...]
  /external/bison/linux-lib/
math.h     [all...]
  /external/openssl/crypto/asn1/
asn1.h 381 * ASN1_ITEM_EXP *iptr;
391 * const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr);
405 #define ASN1_ITEM_ptr(iptr) (iptr)
408 #define ASN1_ITEM_ref(iptr) (&(iptr##_it))
425 #define ASN1_ITEM_ptr(iptr) (iptr())
428 #define ASN1_ITEM_ref(iptr) (iptr##_it
    [all...]
  /external/openssl/include/openssl/
asn1.h 381 * ASN1_ITEM_EXP *iptr;
391 * const ASN1_ITEM *it = ASN1_ITEM_ptr(somevar.iptr);
405 #define ASN1_ITEM_ptr(iptr) (iptr)
408 #define ASN1_ITEM_ref(iptr) (&(iptr##_it))
425 #define ASN1_ITEM_ptr(iptr) (iptr())
428 #define ASN1_ITEM_ref(iptr) (iptr##_it
    [all...]

Completed in 4121 milliseconds

1 2 3