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

1234567891011>>

/external/iproute2/ip/
H A DAndroid.mk27 -Wno-sign-compare \
/external/iptables/libxtables/
H A DAndroid.mk19 LOCAL_CFLAGS += -Wno-sign-compare -Wno-pointer-arith -Wno-type-limits -Wno-missing-field-initializers -Wno-unused-parameter -Wno-clobbered
/external/libvpx/libvpx/vp9/common/
H A Dvp9_entropymv.h83 vp9_prob sign; member in struct:__anon24905
111 unsigned int sign[2]; member in struct:__anon24907
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodemv.c35 const int sign = comp < 0; local
36 const int mag = sign ? -comp : comp;
45 vp9_write(w, sign, mvcomp->sign);
83 sign_cost[0] = vp9_cost_zero(mvcomp->sign);
84 sign_cost[1] = vp9_cost_one(mvcomp->sign);
175 update_mv(w, comp_counts->sign, &comp->sign, MV_UPDATE_PROB);
/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/chromium_org/v8/test/mjsunit/
H A Dsin-cos.js88 var sign = 1;
92 terms.push(sign * x / factorial[i]);
94 sign *= -1;
100 var sign = -1;
105 terms.push(sign * x / factorial[i]);
107 sign *= -1;
/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/boringssl/src/crypto/bn/
H A Dgcd.c233 int sign; local
275 sign = -1;
279 * -sign*X*a == B (mod |n|),
280 * sign*Y*a == A (mod |n|).
293 * (1) -sign*X*a == B (mod |n|),
294 * (2) sign*Y*a == A (mod |n|) */
348 * (1) -sign*X*a == B (mod |n|),
349 * (2) sign*Y*a == A (mod |n|),
353 /* -sign*(X + Y)*a == B - A (mod |n|) */
363 /* sign*(
550 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/cc/quads/
H A Ddraw_polygon.cc102 float sign = 0.0f; local
108 sign = gfx::DotProduct(a.points_[0] - b.points_[0], b.normal_);
110 if (sign < -compare_threshold) {
114 if (sign > compare_threshold) {
118 // No it wasn't, so the sign of the dot product of the normals
137 sign = gfx::DotProduct(a.points_[i] - b.points_[0], b.normal_);
140 if (sign < -compare_threshold) {
142 } else if (sign > compare_threshold) {
/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) {

Completed in 597 milliseconds

1234567891011>>