Searched refs:ptrs (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/
H A DsunFont.c227 jint* ptrs = local
231 if (ptrs) {
233 if (ptrs[i] != 0) {
234 GlyphInfo *ginfo = (GlyphInfo *)ptrs[i];
243 (*env)->ReleasePrimitiveArrayCritical(env, jmemArray, ptrs, JNI_ABORT);
259 jlong* ptrs = local
263 if (ptrs) {
265 if (ptrs[i] != 0L) {
266 GlyphInfo *ginfo = (GlyphInfo *) jlong_to_ptr(ptrs[i]);
274 (*env)->ReleasePrimitiveArrayCritical(env, jmemArray, ptrs, JNI_ABOR
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DRenderer.java67 int ptrs[] = this.edgePtrs;
72 int ecur = ptrs[i];
74 ptrs[newCount++] = ecur;
79 ptrs = Helpers.widenArray(ptrs, count, bucketcount >> 1);
81 ptrs[count++] = ecur;
84 this.edgePtrs = ptrs;
91 this.crossings = xings = new int[ptrs.length];
94 int ecur = ptrs[i];
108 ptrs[
[all...]
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_proc.c224 static int split_n_str(char * str, int n, char ** ptrs, char delim, char new_delim) argument
227 for(i = 0; i < n; i++) ptrs[i] = NULL;
236 ptrs[i++] = str;
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCStrike.java281 long[] ptrs = new long[1];
285 getGlyphImagePtrs(codes, ptrs, 1);
287 ptr = ptrs[0];
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java604 ArrayList ptrs = revptrs.get(oop);
605 if (ptrs == null) {
609 while (ptrs.size() == 1) {
610 LivenessPathElement e = (LivenessPathElement)ptrs.get(0);
614 ptrs = revptrs.get(e.getObj());
617 for (int i = 0; i < ptrs.size(); i++) {
618 LivenessPathElement e = (LivenessPathElement)ptrs.get(i);

Completed in 664 milliseconds