HomeSort by relevance Sort by last modified time
    Searched full:sign (Results 351 - 375 of 6178) sorted by null

<<11121314151617181920>>

  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_sign_hash.c 15 DSA implementation, sign a hash, Tom St Denis
21 Sign a hash with DSA
22 @param in The hash to sign
23 @param inlen The length of the hash to sign
112 Sign a hash with DSA
113 @param in The hash to sign
114 @param inlen The length of the hash to sign
  /frameworks/base/core/jni/android/opengl/
poly_clip.cpp 41 #define CLIP_AND_SWAP(elem, sign, k, p, q, r) { \
42 poly_clip_to_halfspace(p, q, &v->elem-(float *)v, sign, sign*k); \
49 * copying the portion satisfying sign*s[index] < k*sw into q,
59 void poly_clip_to_halfspace(Poly* p, Poly* q, int index, float sign, float k)
72 tu = sign*COORD(u, index) - u->sw*k;
76 tv = sign*COORD(v, index) - v->sw*k;
  /external/chromium_org/remoting/host/installer/mac/
do_signing.sh 38 # Binaries to sign.
109 sign() { function
128 sign "${input_dir}/${ME2ME_HOST}" "${keychain}" "${id}"
129 sign "${input_dir}/${UNINSTALLER}" "${keychain}" "${id}"
130 sign "${input_dir}/${PREFPANE}" "${keychain}" "${id}"
139 productsign --sign "${id}" --keychain "${keychain}" \
186 echo " Sign the binaries using the specified <codesign_id>, build" >&2
187 echo " the installer and then sign the installer using the given" >&2
215 err_exit "Can't sign binaries - please specify a codesign_id"
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_type.h 97 unsigned sign:1; member in struct:lp_type
183 res_type.sign = TRUE;
199 res_type.sign = TRUE;
214 res_type.sign = TRUE;
229 res_type.sign = TRUE;
285 res_type.sign = TRUE;
343 type.sign = TRUE;
359 type.sign = TRUE;
375 type.sign = FALSE;
  /external/dropbear/libtommath/mtest/
mtest.c 207 a.sign = MP_ZPOS;
208 b.sign = MP_ZPOS;
221 a.sign = MP_ZPOS;
222 b.sign = MP_ZPOS;
237 a.sign = b.sign = c.sign = 0;
252 b.sign = MP_ZPOS;
253 a.sign = MP_ZPOS;
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_type.h 97 unsigned sign:1; member in struct:lp_type
183 res_type.sign = TRUE;
199 res_type.sign = TRUE;
214 res_type.sign = TRUE;
229 res_type.sign = TRUE;
285 res_type.sign = TRUE;
343 type.sign = TRUE;
359 type.sign = TRUE;
375 type.sign = FALSE;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerNotTest.java 48 assertEquals("incorrect sign", 1, result.signum());
68 assertEquals("incorrect sign", 1, result.signum());
88 assertEquals("incorrect sign", 1, result.signum());
108 assertEquals("incorrect sign", -1, result.signum());
123 assertEquals("incorrect sign", -1, result.signum());
138 assertEquals("incorrect sign", -1, result.signum());
155 assertEquals("incorrect sign", -1, result.signum());
172 assertEquals("incorrect sign", 1, result.signum());
190 assertEquals("incorrect sign", -1, result.signum());
  /external/chromium_org/chrome/third_party/chromevox/chromevox/background/mathmaps/symbols/
math_symbols.json 23 "default": "number sign",
33 "default": "dollar sign",
42 "default": "percent sign",
76 "default": "plus sign",
136 "default": "less than sign",
145 "default": "equals sign",
154 "default": "greater than sign",
243 "default": "cent sign",
252 "default": "pound sign",
261 "default": "currency sign",
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmax.c 49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[0].bits.sign].d);
s_fmaxf.c 49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[0].bits.sign].f);
s_fmaxl.c 51 if (u[0].bits.sign != u[1].bits.sign)
52 return (u[0].bits.sign ? y : x);
s_fmin.c 49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[1].bits.sign].d);
s_fminf.c 49 if (u[0].bits.sign != u[1].bits.sign)
50 return (u[u[1].bits.sign].f);
s_fminl.c 51 if (u[0].bits.sign != u[1].bits.sign)
52 return (u[1].bits.sign ? y : x);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
SignTest.java 79 * This method is used for sign() function with f32
98 * This method is used for sign() function with f32_3
109 * This method is used for sign() function with f32_4
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNumber.java 246 // String sign;
249 // sign = "-";
253 // sign = "";
262 // return sign + wholePart + decimalPart + zeros(exp - decimalLen);
265 // return sign + wholePart + decimalPart.substring(0, exp) + "."
268 // return sign + "0." + zeros(-1 - exp) + wholePart + decimalPart;
317 String sign; local
321 sign = "-";
327 sign = "";
332 return sign + s.substring(0, 1) + s.substring(2, e
    [all...]
  /external/chromium/base/third_party/dmg_fp/
g_fmt.cc 34 int decpt, j, sign; local
45 s = s0 = dtoa(x, 0, 0, &decpt, &sign, &se);
46 if (sign)
  /external/chromium_org/base/i18n/
time_formatting.h 24 // Argument type used to specify whether or not to include AM/PM sign.
26 kDropAmPm, // Drops AM/PM sign. e.g., "3:07"
27 kKeepAmPm, // Keeps AM/PM sign. e.g., "3:07 PM"
  /external/chromium_org/base/third_party/dmg_fp/
g_fmt.cc 34 int decpt, j, sign; local
45 s = s0 = dtoa(x, 0, 0, &decpt, &sign, &se);
46 if (sign)
  /external/chromium_org/chrome/browser/signin/
signin_promo.cc 57 // The maximum number of times we want to show the sign in promo at startup.
63 // Checks we want to show the sign in promo for the given brand.
78 // Returns true if a user has seen the sign in promo at startup previously.
83 // Returns true if the user has previously skipped the sign in promo.
94 // There's no need to show the sign in promo on cros since cros users are
133 // For Chinese users skip the sign in promo.
143 // showing the sign in promo at startup.
196 // Build a Gaia-based URL that can be used to sign the user into chrome.
200 // a chrome sign in uses the service "chromiumsync"
202 // once the sign is complete
    [all...]
  /external/chromium_org/chrome/installer/mac/
make_signers.sh 8 # will be used to sign the application bundle and inner bundles. It also
10 # the custom resource rules used to sign the outermost application bundle.
13 # sign everything.
  /external/compiler-rt/lib/i386/
ashrdi3.S 26 testl %eax, %eax // check the sign-bit of the input
29 // If the input is negative, we need to construct the shifted sign bit
36 psllq %xmm2, %xmm1 // -1 << (64 - count) = leading sign bits
  /external/dropbear/libtommath/
bn_mp_gcd.c 42 u.sign = v.sign = MP_ZPOS;
95 c->sign = MP_ZPOS;
bn_mp_read_radix.c 33 * minus set the sign to negative.
75 /* set the sign only if a != 0 */
77 a->sign = neg;
  /external/replicaisland/src/com/replica/replicaisland/
InputGameInterface.java 104 final float magnitude = magnitudeRamp * Utils.sign(offset) * SLIDER_FILTER * mMovementSensitivity;
105 sliderOffset = magnitudeRamp * Utils.sign(offset);
152 int sign = Utils.sign(x); local
153 x = x - (sign * ROLL_DECAY * timeDelta);
154 if (Utils.sign(x) != sign) {
160 int sign = Utils.sign(y); local
161 y = y - (sign * ROLL_DECAY * timeDelta)
    [all...]

Completed in 2231 milliseconds

<<11121314151617181920>>