Searched refs:sign (Results 126 - 150 of 3241) sorted by relevance

1234567891011>>

/external/openssl/crypto/evp/
H A Dp_sign.c131 if (ctx->digest->sign == NULL)
136 return(ctx->digest->sign(ctx->digest->type,m,m_len,sigret,siglen,
/external/replicaisland/src/com/replica/replicaisland/
H A DAttackAtDistanceComponent.java58 (Utils.sign(player.getPosition().x - parentObject.getPosition().x)
59 == Utils.sign(parentObject.facingDirection.x));
H A DPatrolComponent.java112 final int targetFacingDirection = Utils.sign(horizontalDelta);
120 != Utils.sign(parentObject.facingDirection.x)) {
128 != Utils.sign(parentObject.facingDirection.x)) {
194 if (Utils.sign(parentObject.getTargetVelocity().x) != Utils.sign(parentObject.getVelocity().x)) {
221 if (Utils.sign(player.getPosition().x - parentObject.getPosition().x)
222 == Utils.sign(parentObject.facingDirection.x)) {
251 mMaxSpeed * Utils.sign(parentObject.facingDirection.x);
/external/skia/experimental/Intersection/
H A DCubicReduceOrder.cpp118 sameSide1 = sign(cubic[0].x - cubic[1].x) + sign(cubic[3].x - cubic[1].x);
119 sameSide2 = sign(cubic[0].x - cubic[2].x) + sign(cubic[3].x - cubic[2].x);
121 sameSide1 = sign(cubic[0].y - cubic[1].y) + sign(cubic[3].y - cubic[1].y);
122 sameSide2 = sign(cubic[0].y - cubic[2].y) + sign(cubic[3].y - cubic[2].y);
/external/valgrind/main/memcheck/tests/
H A Dvcpu_fbench.c404 int sign; local
407 x = (((sign= (x < 0.0)) != 0) ? -x: x);
414 sign = !sign;
435 return sign ? -r : r;
496 int sign, l, y; local
499 x = (((sign = (x < 0.0)) != 0) ? -x : x);
527 return sign ? -a : a;
/external/valgrind/main/perf/
H A Dfbench.c400 int sign; local
403 x = (((sign= (x < 0.0)) != 0) ? -x: x);
410 sign = !sign;
431 return sign ? -r : r;
492 int sign, l, y; local
495 x = (((sign = (x < 0.0)) != 0) ? -x : x);
523 return sign ? -a : a;
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dlpc_masking_model_neon.S145 vcls.s32 d1, d0 @ Count leading extra sign bits.
146 vmov.32 r2, d1[1] @ Store # of sign bits of only the 32 MSBs.
148 vshl.s64 d0, d3 @ d3 contains # of sign bits of the 32 MSBs.
150 vcls.s32 d1, d0 @ Count again the leading extra sign bits.
151 vmov.s32 r1, d1[1] @ Store # of sign bits of only the 32 MSBs.
153 vshl.s64 d0, d3 @ d3 contains # of sign bits of the 32 MSBs.
/external/lldb/utils/vim-lldb/python-vim-lldb/
H A Dvim_ui.py58 """ Place the PC sign on the PC location of each thread's selected frame """
62 the PC sign should be placed for a thread.
80 for sign in self.pcSigns:
81 sign.hide()
82 del_list.append(sign)
83 for sign in del_list:
84 self.pcSigns.remove(sign)
85 del sign
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_arit.c126 if (type.width == 8 && !type.sign) {
129 else if (type.width == 16 && type.sign) {
133 if (type.width == 8 && type.sign) {
136 if (type.width == 16 && !type.sign) {
139 if (type.width == 32 && !type.sign) {
142 if (type.width == 32 && type.sign) {
216 if (type.width == 8 && !type.sign) {
220 else if (type.width == 16 && type.sign) {
224 if (type.width == 8 && type.sign) {
227 if (type.width == 16 && !type.sign) {
1177 LLVMValueRef sign; local
1216 lp_build_set_sign(struct lp_build_context *bld, LLVMValueRef a, LLVMValueRef sign) argument
1640 LLVMValueRef sign; local
1689 LLVMValueRef sign; local
1752 LLVMValueRef sign; local
[all...]
H A Dlp_bld_const.c66 if(type.sign)
87 return type.sign ? type.width - 1 : type.width;
134 if(!type.sign)
194 if(type.sign)
267 else if(type.sign)
276 if(type.sign)
352 elems[i] = LLVMConstInt(elem_type, val, type.sign ? 1 : 0);
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_arit.c126 if (type.width == 8 && !type.sign) {
129 else if (type.width == 16 && type.sign) {
133 if (type.width == 8 && type.sign) {
136 if (type.width == 16 && !type.sign) {
139 if (type.width == 32 && !type.sign) {
142 if (type.width == 32 && type.sign) {
216 if (type.width == 8 && !type.sign) {
220 else if (type.width == 16 && type.sign) {
224 if (type.width == 8 && type.sign) {
227 if (type.width == 16 && !type.sign) {
1177 LLVMValueRef sign; local
1216 lp_build_set_sign(struct lp_build_context *bld, LLVMValueRef a, LLVMValueRef sign) argument
1640 LLVMValueRef sign; local
1689 LLVMValueRef sign; local
1752 LLVMValueRef sign; local
[all...]
H A Dlp_bld_const.c66 if(type.sign)
87 return type.sign ? type.width - 1 : type.width;
134 if(!type.sign)
194 if(type.sign)
267 else if(type.sign)
276 if(type.sign)
352 elems[i] = LLVMConstInt(elem_type, val, type.sign ? 1 : 0);
/external/chromium_org/third_party/openssl/openssl/crypto/bn/
H A Dbn_gcd.c214 int sign; local
249 sign = -1;
253 * -sign*X*a == B (mod |n|),
254 * sign*Y*a == A (mod |n|).
270 * (1) -sign*X*a == B (mod |n|),
271 * (2) sign*Y*a == A (mod |n|)
320 * (1) -sign*X*a == B (mod |n|),
321 * (2) sign*Y*a == A (mod |n|),
327 /* -sign*(X + Y)*a == B - A (mod |n|) */
335 /* sign*(
514 int sign; local
[all...]
/external/chromium_org/v8/src/
H A Dconversions.cc129 int sign; local
136 &sign, &length, &decimal_point);
138 if (sign) builder.AddCharacter('-');
220 int sign; local
228 &sign, &decimal_rep_length, &decimal_point);
312 int sign; local
326 &sign, &decimal_rep_length, &decimal_point);
331 &sign, &decimal_rep_length, &decimal_point);
358 int sign; local
366 &sign,
[all...]
/external/openssl/crypto/bn/
H A Dbn_gcd.c214 int sign; local
249 sign = -1;
253 * -sign*X*a == B (mod |n|),
254 * sign*Y*a == A (mod |n|).
270 * (1) -sign*X*a == B (mod |n|),
271 * (2) sign*Y*a == A (mod |n|)
320 * (1) -sign*X*a == B (mod |n|),
321 * (2) sign*Y*a == A (mod |n|),
327 /* -sign*(X + Y)*a == B - A (mod |n|) */
335 /* sign*(
514 int sign; local
[all...]
/external/llvm/lib/Support/
H A DAPFloat.cpp115 appropriate sign. */
598 sign = rhs.sign;
621 sign = Negative;
694 sign = rhs.sign;
774 sign != rhs.sign)
794 sign = 0;
805 sign
[all...]
/external/opencv/cvaux/src/
H A Dcvscanlines.cpp1299 int sign[4], i; local
1309 sign[0] = Sgn( epiline[2] );
1310 sign[1] = Sgn( epiline[0] * width + epiline[2] );
1311 sign[2] = Sgn( epiline[1] * height + epiline[2] );
1312 sign[3] = Sgn( epiline[0] * width + epiline[1] * height + epiline[2] );
1316 if( sign[0] * sign[1] < 0 )
1324 if( sign[0] * sign[2] < 0 )
1332 if( sign[
1908 int sign[4], i; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_test_main.c51 type.sign ? (type.floating || type.fixed ? "" : "s") : "u",
79 if(type.sign) {
126 if(!type.sign && value < 0.0)
147 if(type.sign) {
205 else if (type.sign)
212 if(!type.sign)
306 if(type.sign && !type.norm) {
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_main.c51 type.sign ? (type.floating || type.fixed ? "" : "s") : "u",
79 if(type.sign) {
126 if(!type.sign && value < 0.0)
147 if(type.sign) {
205 else if (type.sign)
212 if(!type.sign)
306 if(type.sign && !type.norm) {
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member in struct:__anon32855
391 * and sign to positive */
394 a->sign = MP_ZPOS;
418 a->sign = MP_ZPOS;
428 /* get sign of both inputs */
429 sa = a->sign;
430 sb = b->sign;
435 /* add their magnitudes, copy the sign */
436 c->sign = sa;
442 /* the sign o
[all...]
/external/wpa_supplicant_8/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member in struct:__anon33108
391 * and sign to positive */
394 a->sign = MP_ZPOS;
418 a->sign = MP_ZPOS;
428 /* get sign of both inputs */
429 sa = a->sign;
430 sb = b->sign;
435 /* add their magnitudes, copy the sign */
436 c->sign = sa;
442 /* the sign o
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member in struct:__anon33359
391 * and sign to positive */
394 a->sign = MP_ZPOS;
418 a->sign = MP_ZPOS;
428 /* get sign of both inputs */
429 sa = a->sign;
430 sb = b->sign;
435 /* add their magnitudes, copy the sign */
436 c->sign = sa;
442 /* the sign o
[all...]
/external/eigen/Eigen/src/Cholesky/
H A DLDLT.h259 static bool unblocked(MatrixType& mat, TranspositionType& transpositions, Workspace& temp, SignMatrix& sign) argument
271 if (numext::real(mat.coeff(0,0)) > 0) sign = PositiveSemiDef;
272 else if (numext::real(mat.coeff(0,0)) < 0) sign = NegativeSemiDef;
273 else sign = ZeroSign;
328 if (sign == PositiveSemiDef) {
329 if (realAkk < 0) sign = Indefinite;
330 } else if (sign == NegativeSemiDef) {
331 if (realAkk > 0) sign = Indefinite;
332 } else if (sign == ZeroSign) {
333 if (realAkk > 0) sign
400 unblocked(MatrixType& mat, TranspositionType& transpositions, Workspace& temp, SignMatrix& sign) argument
[all...]
/external/fdlibm/
H A De_jn.c79 sgn = (n&1)&(hx>>31); /* even n -- 0, odd n -- sign(x) */
222 int sign; local
232 sign = 1;
235 sign = 1 - ((n&1)<<1);
238 if(n==1) return(sign*__ieee754_y1(x));
271 if(sign>0) return b; else return -b;
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fbmatrox.c127 Uint32 sign; local
158 /* Set up the blit direction (sign) flags */
159 sign = 0;
161 sign |= 1;
164 sign |= 4;
206 mga_out32(MGAREG_SGN, sign);

Completed in 4942 milliseconds

1234567891011>>