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

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Ds_modf.c28 * modf(double x, double *iptr)
29 * return fraction part of x, and return x's integral part in *iptr.
46 double modf(double x, double *iptr) argument
48 double modf(x, iptr)
49 double x,*iptr;
59 __HIp(iptr) = i0&0x80000000;
60 __LOp(iptr) = 0; /* *iptr = +-0 */
65 *iptr = x;
70 __HIp(iptr)
[all...]
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngread.c1456 png_uint_32 iptr; local
1460 for (iptr=0; iptr<info_ptr->height; iptr++)
1461 info_ptr->row_pointers[iptr] = NULL;
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c352 static int instruction_length(unsigned char *iptr, unsigned char *end);
1626 static int instruction_length(unsigned char *iptr, unsigned char *end) argument
1629 int instruction = *iptr;
1632 int *lpc = (int *)UCALIGN(iptr + 1);
1641 return (unsigned char *)(&lpc[index + 4]) - iptr;
1646 int *lpc = (int *) UCALIGN(iptr + 1);
1657 return (unsigned char *)(&lpc[2 * (npairs + 1)]) - iptr;
1661 if (iptr + 1 >= end)
1663 switch(iptr[1]) {

Completed in 44 milliseconds