Searched refs:jfloat (Results 1 - 25 of 165) sorted by relevance

1234567

/openjdk7/jdk/src/share/back/
H A Dstream.h29 jfloat stream_encodeFloat(jfloat theFloat);
H A Dstream.c29 jfloat
30 stream_encodeFloat(jfloat theFloat)
33 jfloat f;
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DPathConsumer2D.h51 jfloat x0, jfloat y0);
54 jfloat x1, jfloat y1);
57 jfloat xm, jfloat ym,
58 jfloat x1, jfloat y1);
61 jfloat xm0, jfloat ym
[all...]
H A DShapeSpanIterator.c76 jfloat curx; /* current path point X coordinate */
77 jfloat cury; /* current path point Y coordinate */
78 jfloat movx; /* last moveto X coordinate */
79 jfloat movy; /* last moveto Y coordinate */
81 jfloat adjx; /* last X coordinate adjustment */
82 jfloat adjy; /* last Y coordinate adjustment */
84 jfloat pathlox; /* lowest X coordinate in path */
85 jfloat pathloy; /* lowest Y coordinate in path */
86 jfloat pathhix; /* highest X coordinate in path */
87 jfloat pathhi
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DRenderer.h63 jfloat fx11, jfloat fy11,
64 jfloat dx21, jfloat dy21,
65 jfloat dx12, jfloat dy12);
69 jfloat fx11, jfloat fy11,
70 jfloat dx21, jfloat dy2
[all...]
H A DD3DPaints.h109 jfloat p0, jfloat p1, jfloat p3,
117 jfloat m00, jfloat m01, jfloat m02,
118 jfloat m10, jfloat m11, jfloat m12,
119 jfloat focus
[all...]
H A DD3DRenderer.cpp119 jfloat fx11, jfloat fy11,
120 jfloat dx21, jfloat dy21,
121 jfloat dx12, jfloat dy12)
140 jfloat fx11, jfloat fy11,
141 jfloat dx21, jfloat dy2
[all...]
H A DD3DMaskBlit.cpp45 jfloat dx1, dy1, dx2, dy2;
46 jfloat tx1, ty1, tx2, ty2;
91 dx1 = (jfloat)dstx;
92 dy1 = (jfloat)dsty;
98 tx2 = ((jfloat)width) / D3DC_BLIT_TILE_SIZE;
99 ty2 = ((jfloat)height) / D3DC_BLIT_TILE_SIZE;
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderer.h50 jfloat fx11, jfloat fy11,
51 jfloat dx21, jfloat dy21,
52 jfloat dx12, jfloat dy12,
53 jfloat lw21, jfloat lw12);
55 jfloat fx11, jfloat fy1
[all...]
H A DOGLVertexCache.h81 jfloat tx1, jfloat ty1,
82 jfloat tx2, jfloat ty2,
83 jfloat dx1, jfloat dy1,
84 jfloat dx2, jfloat dy2);
H A DOGLPaints.h46 jfloat p0, jfloat p1, jfloat p3,
52 jfloat m00, jfloat m01, jfloat m02,
53 jfloat m10, jfloat m11, jfloat m12,
54 jfloat focus
[all...]
H A DOGLRenderer.c340 jfloat fx11, jfloat fy11,
341 jfloat dx21, jfloat dy21,
342 jfloat dx12, jfloat dy12)
362 jfloat fx11, jfloat fy11,
363 jfloat dx21, jfloat dy2
[all...]
H A DOGLVertexCache.c37 jfloat tx, ty;
39 jfloat dx, dy;
85 sizeof(J2DVertex), ((jfloat *)vertexCache) + 2);
87 sizeof(J2DVertex), ((jfloat *)vertexCache) + 3);
220 jfloat tx1, ty1, tx2, ty2;
221 jfloat dx1, dy1, dx2, dy2;
249 tx1 = ((jfloat)texx) / OGLVC_MASK_CACHE_WIDTH_IN_TEXELS;
250 ty1 = ((jfloat)texy) / OGLVC_MASK_CACHE_HEIGHT_IN_TEXELS;
255 tx1 = ((jfloat)OGLVC_MASK_CACHE_SPECIAL_TILE_X) /
257 ty1 = ((jfloat)OGLVC_MASK_CACHE_SPECIAL_TILE_
[all...]
H A DOGLTextRenderer.h54 jfloat glyphListOrigX, jfloat glyphListOrigY,
/openjdk7/jdk/src/share/native/java/lang/
H A DFloat.c34 JNIEXPORT jfloat JNICALL
42 return (jfloat)u.f;
49 Java_java_lang_Float_floatToRawIntBits(JNIEnv *env, jclass unused, jfloat v)
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DbytecodeInterpreter_sparc.inline.hpp30 inline jfloat BytecodeInterpreter::VMfloatAdd(jfloat op1, jfloat op2) { return op1 + op2; }
31 inline jfloat BytecodeInterpreter::VMfloatSub(jfloat op1, jfloat op2) { return op1 - op2; }
32 inline jfloat BytecodeInterpreter::VMfloatMul(jfloat op1, jfloat op2) { return op1 * op2; }
33 inline jfloat BytecodeInterprete
[all...]
H A DjniTypes_sparc.hpp77 static inline void put_float(jfloat from, intptr_t *to) { *(jfloat *)(to + 0 ) = from; }
78 static inline void put_float(jfloat from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = from; }
79 static inline void put_float(jfloat *from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = *from; }
105 static inline jfloat get_float(intptr_t *from) { return *(jfloat *)from; }
/openjdk7/hotspot/src/cpu/x86/vm/
H A DbytecodeInterpreter_x86.inline.hpp30 inline jfloat BytecodeInterpreter::VMfloatAdd(jfloat op1, jfloat op2) { return op1 + op2; }
31 inline jfloat BytecodeInterpreter::VMfloatSub(jfloat op1, jfloat op2) { return op1 - op2; }
32 inline jfloat BytecodeInterpreter::VMfloatMul(jfloat op1, jfloat op2) { return op1 * op2; }
33 inline jfloat BytecodeInterprete
[all...]
H A DjniTypes_x86.hpp90 static inline void put_float(jfloat from, intptr_t *to) { *(jfloat *)(to + 0 ) = from; }
91 static inline void put_float(jfloat from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = from; }
92 static inline void put_float(jfloat *from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = *from; }
128 static inline jfloat get_float (intptr_t *from) { return *(jfloat *) from; }
/openjdk7/hotspot/src/cpu/zero/vm/
H A DbytecodeInterpreter_zero.inline.hpp31 inline jfloat BytecodeInterpreter::VMfloatAdd(jfloat op1, jfloat op2) {
35 inline jfloat BytecodeInterpreter::VMfloatSub(jfloat op1, jfloat op2) {
39 inline jfloat BytecodeInterpreter::VMfloatMul(jfloat op1, jfloat op2) {
43 inline jfloat BytecodeInterprete
[all...]
H A DjniTypes_zero.hpp77 static inline void put_float(jfloat from, intptr_t *to) { *(jfloat *)(to + 0 ) = from; }
78 static inline void put_float(jfloat from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = from; }
79 static inline void put_float(jfloat *from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = *from; }
105 static inline jfloat get_float(intptr_t *from) { return *(jfloat *)from; }
/openjdk7/jdk/src/share/native/sun/font/
H A DAccelGlyphCache.h67 jfloat tx1;
68 jfloat ty1;
69 jfloat tx2;
70 jfloat ty2;
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.hpp163 jfloat f;
319 static jfloat VMlong2Float(jlong val);
338 static jfloat VMfloatAdd(jfloat op1, jfloat op2);
339 static jfloat VMfloatSub(jfloat op1, jfloat op2);
340 static jfloat VMfloatMul(jfloat op
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DorderAccess.hpp262 static jfloat load_acquire(volatile jfloat* p);
277 static void release_store(volatile jfloat* p, jfloat v);
291 static void store_fence(jfloat* p, jfloat v);
305 static void release_store_fence(volatile jfloat* p, jfloat v);
H A DstackValueCollection.hpp49 jfloat float_at(int slot) const;
56 void set_float_at(int slot, jfloat value);

Completed in 118 milliseconds

1234567