Home
last modified time | relevance | path

Searched refs:hy (Results 1 – 25 of 210) sorted by relevance

123456789

/external/fdlibm/
De_fmod.c35 int n,hx,hy,hz,ix,iy,sx,i; local
40 hy = __HI(y); /* high word of y */
44 hy &= 0x7fffffff; /* |y| */
47 if((hy|ly)==0||(hx>=0x7ff00000)|| /* y=0,or x not finite */
48 ((hy|((ly|-ly)>>31))>0x7ff00000)) /* or y is NaN */
50 if(hx<=hy) {
51 if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */
66 if(hy<0x00100000) { /* subnormal y */
67 if(hy==0) {
70 for (iy = -1022,i=(hy<<11); i>0; i<<=1) iy -=1;
[all …]
Ds_nextafter.c30 int hx,hy,ix,iy; local
35 hy = __HI(y); /* high word of y */
38 iy = hy&0x7fffffff; /* |y| */
45 __HI(x) = hy&0x80000000; /* return +-minsubnormal */
51 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */
59 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */
67 hy = hx&0x7ff00000;
68 if(hy>=0x7ff00000) return x+x; /* overflow */
69 if(hy<0x00100000) { /* underflow */
De_pow.c110 int hx,hy,ix,iy; local
115 hy = __HI(y); ly = __LO(y);
116 ix = hx&0x7fffffff; iy = hy&0x7fffffff;
152 return (hy>=0)? y: zero;
154 return (hy<0)?-y: zero;
157 if(hy<0) return one/x; else return x;
159 if(hy==0x40000000) return x*x; /* y is 2 */
160 if(hy==0x3fe00000) { /* y is 0.5 */
171 if(hy<0) z = one/z; /* z = (1/|x|) */
193 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
[all …]
De_atan2.c64 int k,m,hx,hy,ix,iy; local
69 hy = __HI(y); iy = hy&0x7fffffff;
75 m = ((hy>>31)&1)|((hx>>30)&2); /* 2*sign(x)+sign(y) */
87 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
108 if(iy==0x7ff00000) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
Dplurals.txt1100 hy 0 օր
1101 hy 0 օր
1102 hy 0 օր
1103 hy 0 օր
1104 hy 0.001 օր
1105 hy 0.002 օր
1106 hy 0.003 օր
1107 hy 0.01 օր
1108 hy 0.01 օր
1109 hy 0.011 օր
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
Dplurals.txt1100 hy 0 օր
1101 hy 0 օր
1102 hy 0 օր
1103 hy 0 օր
1104 hy 0.001 օր
1105 hy 0.002 օր
1106 hy 0.003 օր
1107 hy 0.01 օր
1108 hy 0.01 օր
1109 hy 0.011 օր
[all …]
/external/vulkan-validation-layers/libs/glm/gtc/
Dulp.inl99 glm::detail::int32 hx, hy, ix, iy; local
102 GLM_GET_FLOAT_WORD(hy, y);
104 iy = hy&0x7fffffff; // |y|
111 GLM_SET_FLOAT_WORD(x,(hy&0x80000000)|1);// return +-minsubnormal
116 if(hx>hy) { // x > y, x -= ulp
122 if(hy>=0||hx>hy){ // x < y, x -= ulp
128 hy = hx&0x7f800000;
129 if(hy>=0x7f800000) return x+x; // overflow
130 if(hy<0x00800000) { // underflow
144 glm::detail::int32 hx, hy, ix, iy; local
[all …]
/external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/
DPolygonShape.java84 public void setAsBox (float hx, float hy) { in setAsBox() argument
85 jniSetAsBox(addr, hx, hy); in setAsBox()
88 private native void jniSetAsBox (long addr, float hx, float hy); /* in jniSetAsBox() argument
98 public void setAsBox (float hx, float hy, Vector2 center, float angle) { in setAsBox() argument
99 jniSetAsBox(addr, hx, hy, center.x, center.y, angle); in setAsBox()
102 …private native void jniSetAsBox (long addr, float hx, float hy, float centerX, float centerY, floa… in jniSetAsBox() argument
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/Shapes/
Db2PolygonShape.cpp30 void b2PolygonShape::SetAsBox(float32 hx, float32 hy) in SetAsBox() argument
33 m_vertices[0].Set(-hx, -hy); in SetAsBox()
34 m_vertices[1].Set( hx, -hy); in SetAsBox()
35 m_vertices[2].Set( hx, hy); in SetAsBox()
36 m_vertices[3].Set(-hx, hy); in SetAsBox()
44 void b2PolygonShape::SetAsBox(float32 hx, float32 hy, const b2Vec2& center, float32 angle) in SetAsBox() argument
47 m_vertices[0].Set(-hx, -hy); in SetAsBox()
48 m_vertices[1].Set( hx, -hy); in SetAsBox()
49 m_vertices[2].Set( hx, hy); in SetAsBox()
50 m_vertices[3].Set(-hx, hy); in SetAsBox()
Db2PolygonShape.h49 void SetAsBox(float32 hx, float32 hy);
56 void SetAsBox(float32 hx, float32 hy, const b2Vec2& center, float32 angle);
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/
Dcom.badlogic.gdx.physics.box2d.PolygonShape.cpp36 …ox2d_PolygonShape_jniSetAsBox__JFF(JNIEnv* env, jobject object, jlong addr, jfloat hx, jfloat hy) { in Java_com_badlogic_gdx_physics_box2d_PolygonShape_jniSetAsBox__JFF() argument
42 poly->SetAsBox(hx, hy); in Java_com_badlogic_gdx_physics_box2d_PolygonShape_jniSetAsBox__JFF()
47 …etAsBox__JFFFFF(JNIEnv* env, jobject object, jlong addr, jfloat hx, jfloat hy, jfloat centerX, jfl… in Java_com_badlogic_gdx_physics_box2d_PolygonShape_jniSetAsBox__JFFFFF() argument
53 poly->SetAsBox( hx, hy, b2Vec2( centerX, centerY ), angle ); in Java_com_badlogic_gdx_physics_box2d_PolygonShape_jniSetAsBox__JFFFFF()
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
DPolygonShape.java72 public void setAsBox (float hx, float hy) { in setAsBox() argument
73 shape.setAsBox(hx, hy); in setAsBox()
83 public void setAsBox (float hx, float hy, Vector2 center, float angle) { in setAsBox() argument
85 shape.setAsBox(hx, hy, tmp, angle); in setAsBox()
/external/icu/icu4c/source/data/coll/
Dhy.txt6 // * Source File: <path>/common/collation/hy.xml
9 hy{
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/shapes/
DPolygonShape.java244 public final void setAsBox(final float hx, final float hy) { in setAsBox() argument
246 m_vertices[0].set(-hx, -hy); in setAsBox()
247 m_vertices[1].set(hx, -hy); in setAsBox()
248 m_vertices[2].set(hx, hy); in setAsBox()
249 m_vertices[3].set(-hx, hy); in setAsBox()
265 public final void setAsBox(final float hx, final float hy, final Vec2 center, final float angle) { in setAsBox() argument
267 m_vertices[0].set(-hx, -hy); in setAsBox()
268 m_vertices[1].set(hx, -hy); in setAsBox()
269 m_vertices[2].set(hx, hy); in setAsBox()
270 m_vertices[3].set(-hx, hy); in setAsBox()
/external/libvorbis/lib/
Dfloor1.c657 int hy=post_Y(fit_valueA,fit_valueB,hn); in floor1_fit() local
659 if(ly==-1 || hy==-1){ in floor1_fit()
663 if(inspect_error(lx,hx,ly,hy,logmask,logmdct,info)){ in floor1_fit()
678 hy1=hy; in floor1_fit()
946 int hy=post[current]&0x7fff; in floor1_encode() local
947 if(hy==post[current]){ in floor1_encode()
949 hy*=info->mult; in floor1_encode()
952 render_line0(n,lx,hx,ly,hy,ilogmask); in floor1_encode()
955 ly=hy; in floor1_encode()
1071 int hy=fit_value[current]&0x7fff; in floor1_inverse2() local
[all …]
/external/skia/tests/
DPathOpsSimplifyQuadralateralsThreadedTest.cpp38 int hy = h >> 2; in testSimplifyQuadralateralsMain() local
49 path.lineTo(SkIntToScalar(hx), SkIntToScalar(hy)); in testSimplifyQuadralateralsMain()
62 str += sprintf(str, " path.lineTo(%d, %d);\n", hx, hy); in testSimplifyQuadralateralsMain()
DPathOpsSimplifyQuadThreadedTest.cpp38 int hy = h >> 2; in testSimplifyQuadsMain() local
49 SkIntToScalar(hx), SkIntToScalar(hy)); in testSimplifyQuadsMain()
63 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", gx, gy, hx, hy); in testSimplifyQuadsMain()
/external/libvncserver/libvncserver/
Drre.c178 int hx=0,hy,vx=0,vy; \
197 hy = y-1; \
207 if ((hyflag > 0) && (i >= hx)) {hy += 1;} else {hyflag = 0;} \
215 hh = hy-y+1; \
Dcorre.c211 int hx=0,hy,vx=0,vy; \
230 hy = y-1; \
240 if ((hyflag > 0) && (i >= hx)) {hy += 1;} else {hyflag = 0;} \
248 hh = hy-y+1; \
Dhextile.c202 int hx=0,hy,vx=0,vy; \
221 hy = y-1; \
232 hy += 1; \
243 hh = hy-y+1; \
/external/hyphenation-patterns/
DAndroid.mk40 hy/hy \
/external/tremolo/Tremolo/
Dfloor1.c390 int hy=fit_value[current]&0x7fff; in floor1_inverse2() local
391 if(hy==fit_value[current]){ in floor1_inverse2()
393 hy*=info->mult; in floor1_inverse2()
396 render_line(n,lx,hx,ly,hy,out); in floor1_inverse2()
399 ly=hy; in floor1_inverse2()
/external/icu/icu4c/source/data/translit/
DKatakana_Latin_BGN.txt73 ヒョウ → hyō ; # KATAKANA LETTER HI + SMALL YO + U
74 ヒュウ → hyū ; # KATAKANA LETTER HI + SMALL YU + U
84 ミョウ → hyō ; # KATAKANA LETTER MI + SMALL YO + U
85 ミュウ → hyū ; # KATAKANA LETTER MI + SMALL YU + U
220 ひょう → hyō ; # HIRAGANA LETTER HI + SMALL YO + U
221 ひゅう → hyū ; # HIRAGANA LETTER HI + SMALL YU + U
231 みょう → hyō ; # HIRAGANA LETTER MI + SMALL YO + U
232 みゅう → hyū ; # HIRAGANA LETTER MI + SMALL YU + U
/external/icu/icu4c/source/data/rbnf/
Dhy.txt6 // * Source File: <path>/common/rbnf/hy.xml
9 hy{
/external/icu/icu4c/source/data/lang/
Dhy.txt6 // * Source File: <path>/common/main/hy.xml
9 hy{
134 hy{"հայերեն"}

123456789