HomeSort by relevance Sort by last modified time
    Searched defs:sign (Results 1 - 25 of 904) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/strings/basic.string/string.ops/string_compare/
pointer.pass.cpp 19 int sign(int x) function
32 assert(sign(s.compare(str)) == sign(x));
string.pass.cpp 19 int sign(int x) function
32 assert(sign(s.compare(str)) == sign(x));
string_view.pass.cpp 19 int sign(int x) function
32 assert(sign(s.compare(sv)) == sign(x));
size_size_pointer.pass.cpp 22 int sign(int x) function
37 assert(sign(s.compare(pos1, n1, str)) == sign(x));
size_size_string.pass.cpp 22 int sign(int x) function
37 assert(sign(s.compare(pos1, n1, str)) == sign(x));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.ops/string_compare/
pointer.pass.cpp 19 int sign(int x) function
32 assert(sign(s.compare(str)) == sign(x));
string.pass.cpp 19 int sign(int x) function
32 assert(sign(s.compare(str)) == sign(x));
size_size_pointer.pass.cpp 22 int sign(int x) function
37 assert(sign(s.compare(pos1, n1, str)) == sign(x));
size_size_string.pass.cpp 22 int sign(int x) function
37 assert(sign(s.compare(pos1, n1, str)) == sign(x));
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/sign/
package-info.java 19 The {@code sign} package provides extensions for the {@code zip} package that allow:
26 Because the {@code zip} package is completely independent of the {@code sign} package, the
27 actual coordination between the two is complex. The {@code sign} package works by registering
31 The {@link com.android.apkzlib.sign.ManifestGenerationExtension} extension will
33 The {@link com.android.apkzlib.sign.SigningExtension} extension will
39 operating the extensions is not done sequentially, as we don't want to build a zip and then sign it.
153 package com.android.apkzlib.sign;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
atof.c 26 int sign = 1; local
33 sign = -1;
39 e += i*sign;
  /external/libcxx/test/std/strings/string.view/string.view.ops/
compare.pointer.pass.cpp 20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
24 assert ( sign( sv1.compare(s)) == sign(expected));
compare.sv.pass.cpp 20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
25 assert ( sign( sv1.compare(sv2)) == sign(expected));
  /external/python/cpython2/Demo/curses/
tclock.py 12 def sign(_x): function
34 sx = sign(dx)
35 sy = sign(dy)
  /external/python/cpython2/Python/
atof.c 26 int sign = 1; local
33 sign = -1;
39 e += i*sign;
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVM_Polynomial.c 49 LVM_FLOAT Y,A,XTemp,Temp,sign; local
57 sign = Temp;
60 Y += ((*pCoefficients) * sign);
62 sign *= Temp;
90 LVM_INT32 Y,A,XTemp,Temp,sign; local
98 sign=Temp;
101 Y+=((*pCoefficients)*sign);
103 sign*=Temp;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.ops/
compare.pointer.pass.cpp 20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
24 assert ( sign( sv1.compare(s)) == sign(expected));
compare.sv.pass.cpp 20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
25 assert ( sign( sv1.compare(sv2)) == sign(expected));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/string.view/string.view.ops/
compare.pointer.pass.cpp 20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
24 assert ( sign( sv1.compare(s)) == sign(expected));
compare.sv.pass.cpp 20 int sign ( int x ) { return x > 0 ? 1 : ( x < 0 ? -1 : 0 ); } function
25 assert ( sign( sv1.compare(sv2)) == sign(expected));
  /system/security/keystore-engine/
keystore_backend_hidl.cpp 33 int32_t KeystoreBackendHidl::sign( function in class:KeystoreBackendHidl
56 Return<void> ret = service->sign(
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cbrtf.c 36 u_int32_t sign; local
40 sign=hx&0x80000000; /* sign= sign(x) */
41 hx ^=sign;
51 SET_FLOAT_WORD(t,sign|((high&0x7fffffff)/3+B2));
53 SET_FLOAT_WORD(t,sign|(hx/3+B1));
s_rintl.c 59 int ex, sign; local
70 sign = expsign >> 15;
79 x += shift[sign];
80 x -= shift[sign];
83 * If the result is +-0, then it must have the same sign as x, but
84 * the above calculation doesn't always give this. Fix up the sign.
87 return (zero[sign]);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
AbstractECMultiplier.java 9 int sign = k.signum(); local
10 if (sign == 0 || p.isInfinity())
16 ECPoint result = sign > 0 ? positive : positive.negate();
  /external/crcalc/src/com/hp/creals/
StringFloatRep.java 42 sign = s;
48 * The sign associated with this approximation. May be -1, _1, or zero.
50 public int sign; field in class:StringFloatRep
66 * Produce a textual representation including the sign and exponent.
70 (sign < 0? "-" : "") + mantissa + "E" + Integer.toString(exponent)

Completed in 1047 milliseconds

1 2 3 4 5 6 7 8 91011>>