/external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/ |
cli.py | 236 operation = 'sign' 253 return rsa.sign(indata, priv_key, hash_method) 375 sign = SignOperation() variable
|
/external/deqp/framework/common/ |
tcuFloat.hpp | 73 * \param sign Sign. Must be +1/-1 88 static inline Float construct (int sign, int exponent, StorageType mantissa); 92 * \param sign Sign. Must be +1/-1 99 * The sign is turned into a sign bit and the exponent bias is added. 103 static Float constructBits (int sign, int exponent, StorageType mantissaBits); 113 inline int sign (void) const { return signBit() ? -1 : 1; } function in class:tcu::Float 122 static Float zero (int sign); [all...] |
tcuVectorUtil.hpp | 67 inline float sign (float f) { return (f < 0.0f) ? -1.0f : ((f > 0.0f) ? +1.0f : 0.0f); } function in namespace:tcu 86 inline float normalize (float f) { return sign(f); } 450 TCU_DECLARE_VECTOR_UNARY_FUNC(sign, deFloatSign)
|
/external/eigen/test/ |
cholesky.cpp | 136 int sign = internal::random<int>()%2 ? 1 : -1; local 138 if(sign == -1) 181 if(sign == -1) 282 int sign = internal::random<int>()%2 ? 1 : -1; local 284 if(sign == -1)
|
/external/freetype/src/cff/ |
cffparse.c | 136 FT_Int sign = 0, exponent_sign = 0, have_overflow = 0; local 173 sign = 1; 377 if ( sign )
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
CollationThaiTest.java | 113 int sign(int i ) { method in class:CollationThaiTest
|
/external/icu/icu4c/source/test/intltest/ |
thcoll.cpp | 280 if (sign(result) != sign(expect)) 310 if (sign(result) != sign(expect)) { 324 int8_t CollationThaiTest::sign(int32_t i) { function in class:CollationThaiTest
|
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
CollationThaiTest.java | 109 int sign(int i ) { method in class:CollationThaiTest
|
/external/libcxx/test/std/experimental/string.view/string.view.ops/ |
compare.size_size_sv_size_size.pass.cpp | 21 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function 30 assert ( sign( sv1.compare(pos1, n1, sv2, pos2, n2)) == sign(expected)); [all...] |
/external/libcxx/test/std/strings/basic.string/string.ops/string_compare/ |
size_size_string_size_size.pass.cpp | 22 int sign(int x) function 38 assert(sign(s.compare(pos1, n1, str, pos2, n2)) == sign(x)); 55 assert(sign(s.compare(pos1, n1, str, pos2)) == sign(x)); [all...] |
/external/libjpeg-turbo/ |
jdarith.c | 248 int blkn, ci, tbl, sign; local 277 /* Figure F.22: Decoding the sign of v */ 278 sign = arith_decode(cinfo, st + 1); 279 st += 2; st += sign; 296 entropy->dc_context[ci] = 12 + (sign * 4); /* large diff category */ 298 entropy->dc_context[ci] = 4 + (sign * 4); /* small diff category */ 304 v += 1; if (sign) v = -v; 327 int tbl, sign, k; local 358 /* Figure F.22: Decoding the sign of v */ 359 sign = arith_decode(cinfo, entropy->fixed_bin) 504 int blkn, ci, tbl, sign, k; local [all...] |
/external/libmpeg2/decoder/ |
impeg2d_vld.c | 1047 WORD16 sign; local 1162 WORD16 sign; local [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_entropymv.h | 86 vpx_prob sign; member in struct:__anon17176 112 unsigned int sign[2]; member in struct:__anon17178
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_encodemv.c | 36 const int sign = comp < 0; local 37 const int mag = sign ? -comp : comp; 45 // Sign 46 vpx_write(w, sign, mvcomp->sign); 84 sign_cost[0] = vp9_cost_zero(mvcomp->sign); 85 sign_cost[1] = vp9_cost_one(mvcomp->sign); 176 update_mv(w, comp_counts->sign, &comp->sign, MV_UPDATE_PROB);
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_avg_intrin_sse2.c | 289 __m128i sign = _mm_srai_epi16(sum, 15); local 290 __m128i val = _mm_xor_si128(sum, sign); 291 sum = _mm_sub_epi16(val, sign); 296 sign = _mm_srai_epi16(src_line, 15); 297 val = _mm_xor_si128(src_line, sign); 298 val = _mm_sub_epi16(val, sign);
|
/external/llvm/unittests/ADT/ |
APFloatTest.cpp | 479 // Test for correct zero sign when answer is exactly zero. 489 // Test for correct zero sign when answer is exactly zero and rounding towards 500 // Test for correct (in this case -ve) sign when adding like signed zeros. 510 // Test -ve sign preservation when small negative results underflow. 1401 const bool sign; member in struct:__anon18798::__anon18799 [all...] |
/external/ltrace/sysdeps/linux-gnu/arm/ |
trace.c | 475 const int sign = SBITS(inst1, 10, 10); local 481 int32_t offset = (sign << 20)
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_setup_line.c | 261 static INLINE boolean sign(float x){ function 358 else if (sign(x1diff) == sign(-dx)) { 361 else if (sign(-y1diff) != sign(dy)) { 377 else if (sign(x2diff) != sign(-dx)) { 380 else if (sign(-y2diff) == sign(dy)) { 391 will_draw_start = sign(-x1diff) != sign(dx) [all...] |
/external/mesa3d/src/mesa/main/ |
imports.c | 336 /* sign bit */ 423 /* sign bit */ 436 float sign = s ? -1.0f : 1.0f; local 437 return sign * mantissa * half_denorm;
|
/external/oauth/core/src/main/java/net/oauth/signature/ |
OAuthSignatureMethod.java | 50 public void sign(OAuthMessage message) method in class:OAuthSignatureMethod
|
/external/opencv3/3rdparty/libjpeg/ |
jdarith.c | 247 int blkn, ci, tbl, sign; local 276 /* Figure F.22: Decoding the sign of v */ 277 sign = arith_decode(cinfo, st + 1); 278 st += 2; st += sign; 295 entropy->dc_context[ci] = 12 + (sign * 4); /* large diff category */ 297 entropy->dc_context[ci] = 4 + (sign * 4); /* small diff category */ 303 v += 1; if (sign) v = -v; 326 int tbl, sign, k; local 363 /* Figure F.22: Decoding the sign of v */ 364 sign = arith_decode(cinfo, entropy->fixed_bin) 515 int blkn, ci, tbl, sign, k; local [all...] |
/external/pdfium/fpdfsdk/src/javascript/ |
util.cpp | 518 int sign; /* if '-', then negative, otherwise positive */ local 525 sign = c; /* save sign indication */ 527 c = (int)(unsigned char)*nptr++; /* skip sign */ 536 return sign == '-' ? -total : total;
|
/external/pdfium/third_party/freetype/src/cff/ |
cffparse.c | 136 FT_Int sign = 0, exponent_sign = 0, have_overflow = 0; local 173 sign = 1; 377 if ( sign )
|
/external/skia/gm/ |
dashing.cpp | 449 int sign; // used to toggle the direction of the lines variable 455 sign = (x % 20) ? 1 : -1; 457 SkIntToScalar(x), -sign * SkIntToScalar(10003), 459 SkIntToScalar(x), sign * SkIntToScalar(10003)); 466 sign = (y % 20) ? 1 : -1; 468 -sign * SkIntToScalar(10003), SkIntToScalar(y), 470 sign * SkIntToScalar(10003), SkIntToScalar(y));
|
/external/skia/src/pathops/ |
SkPathOpsQuad.cpp | 30 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp; local 31 if (approximately_zero(sign)) { 38 if (test * sign > 0 && !precisely_zero(test)) { 102 // the sign of B -- and further suggesting that the greatest loss of precision
|