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

1 2 3 4

  /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...]
  /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/clang/test/CodeGenCXX/
function-template-specialization.cpp 14 void test(int *iptr, float *fptr, int diff) {
16 iptr = next(iptr, diff);
25 void test2(int *iptr, double *dptr, int diff) {
26 iptr = next(iptr, diff);
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
s_modf.c 19 * modf(double x, double *iptr)
20 * return fraction part of x, and return x's integral part in *iptr.
34 modf(double x, double *iptr)
42 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */
48 *iptr = x;
53 INSERT_WORDS(*iptr,i0&(~i),0);
54 return x - *iptr;
59 *iptr = x*one;
67 *iptr = x;
    [all...]
  /external/clang/test/Sema/
attr-malloc.c 14 typedef int * iptr; typedef
15 iptr returns_iptr (void) __attribute((malloc)); // no-warning
nullability.c 93 int * _Nonnull iptr; local
94 float *fptr = iptr; // expected-warning{{incompatible pointer types initializing 'float *' with an expression of type 'int * _Nonnull'}}
  /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...]
  /frameworks/rs/driver/runtime/
rs_f16_math.c 82 extern half __attribute__((overloadable)) modf(half x, half *iptr) {
89 SET_HALF_WORD(*iptr, i0 & 0x8000); // *iptr = +/- 0
95 *iptr = x;
100 SET_HALF_WORD(*iptr, i0 & ~i); // zero out fractional parts
101 return x - *iptr;
107 *iptr = x;
  /external/libvncserver/libvncserver/
tabletranstemplate.c 57 char *iptr, char *optr,
61 IN_T *ip = (IN_T *)iptr;
88 char *iptr, char *optr,
92 IN_T *ip = (IN_T *)iptr;
tabletrans24template.c 52 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;
    [all...]
  /external/vboot_reference/utility/
bmpblk_util.c 393 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->format, iptr->compression
    [all...]
  /external/autotest/client/deps/glbench/src/
utils.cc 230 GLushort *iptr = *indices = new GLushort[2 * 3 * (width * height)];
244 *iptr++ = first;
245 *iptr++ = flag ? second : third;
246 *iptr++ = flag ? third : second;
248 *iptr++ = fourth;
249 *iptr++ = flag ? third : second;
250 *iptr++ = flag ? second : third;
254 *size = (iptr - *indices) * sizeof(GLushort);
256 return iptr - *indices;
  /external/clang/test/SemaCXX/
warn-bad-memaccess.cpp 115 int i, *iptr; local
120 memset(&iptr, 0, sizeof iptr);
  /external/ltp/lib/
self_exec.c 76 int *iptr, i, j; local
106 iptr = va_arg(ap, int *);
113 *iptr = i;
  /external/pcre/dist2/src/
pcre2_jit_test.c 954 PCRE2_SPTR8 iptr = input; local
1002 PCRE2_SPTR8 iptr = input; local
1026 PCRE2_SPTR8 iptr = input; local
1062 PCRE2_SPTR8 iptr = input; local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
inode.c 582 struct ext2_inode_large *iptr = (struct ext2_inode_large *)inode; local
650 retval = ext2fs_get_mem(length, &iptr);
673 memset(iptr, 0, length);
675 (struct ext2_inode_large *) iptr,
679 memcpy(iptr, scan->temp_buffer, length);
693 memset(iptr, 0, length);
695 (struct ext2_inode_large *) iptr,
699 memcpy(iptr, scan->ptr, length);
713 if (iptr != (struct ext2_inode_large *)inode) {
714 memcpy(inode, iptr, bufsize)
741 struct ext2_inode_large *iptr; local
    [all...]
  /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 348 const spx_word16_t *iptr = & in[last_sample]; local
354 accum[0] += sinc[j]*iptr[j];
355 accum[1] += sinc[j+1]*iptr[j+1];
356 accum[2] += sinc[j+2]*iptr[j+2];
357 accum[3] += sinc[j+3]*iptr[j+3];
362 sum = inner_product_single(sinc, iptr, N);
400 const spx_word16_t *iptr = & in[last_sample]; local
406 accum[0] += sinc[j]*iptr[j];
407 accum[1] += sinc[j+1]*iptr[j+1];
408 accum[2] += sinc[j+2]*iptr[j+2]
447 const spx_word16_t *iptr = & in[last_sample]; local
510 const spx_word16_t *iptr = & in[last_sample]; local
    [all...]
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1.cpp 180 int* iptr = &i; member in namespace:bad_args
185 X0<iptr> x0b;
190 // expected-note@-5 {{read of non-constexpr variable 'iptr' is not allowed in a constant expression}}
  /toolchain/binutils/binutils-2.27/opcodes/
pj-dis.c 30 get_int (bfd_vma memaddr, int *iptr, struct disassemble_info *info)
35 *iptr = (ival[0] << 24)
  /external/curl/tests/server/
util.c 81 char *iptr = data; local
88 *optr++ = *iptr++;
90 snprintf(optr, 4, "%%%02x", *iptr++);
  /external/eigen/Eigen/src/SparseLU/
SparseLU_SupernodalMatrix.h 284 Index iptr = istart + nsupc; local
287 irow = rowIndex()[iptr];
290 iptr++;

Completed in 601 milliseconds

1 2 3 4