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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/vm/mterp/c/
OP_INT_TO_SHORT.cpp 1 HANDLE_INT_TO_SMALL(OP_INT_TO_SHORT, "short", s2) /* want sign bit */
  /external/chromium_org/third_party/mesa/src/src/glsl/builtins/ir/
sign.ir 1 ((function sign
5 ((return (expression float sign (var_ref x)))))
10 ((return (expression vec2 sign (var_ref x)))))
15 ((return (expression vec3 sign (var_ref x)))))
20 ((return (expression vec4 sign (var_ref x)))))
25 ((return (expression int sign (var_ref x)))))
30 ((return (expression ivec2 sign (var_ref x)))))
35 ((return (expression ivec3 sign (var_ref x)))))
40 ((return (expression ivec4 sign (var_ref x)))))
  /external/mesa3d/src/glsl/builtins/ir/
sign.ir 1 ((function sign
5 ((return (expression float sign (var_ref x)))))
10 ((return (expression vec2 sign (var_ref x)))))
15 ((return (expression vec3 sign (var_ref x)))))
20 ((return (expression vec4 sign (var_ref x)))))
25 ((return (expression int sign (var_ref x)))))
30 ((return (expression ivec2 sign (var_ref x)))))
35 ((return (expression ivec3 sign (var_ref x)))))
40 ((return (expression ivec4 sign (var_ref x)))))
  /cts/tests/src/android/renderscript/cts/
sign_f32.rs 5 *out = sign (*in);
9 *out = sign (*in);
13 *out = sign (*in);
17 *out = sign (*in);
  /dalvik/vm/mterp/mips/
OP_IGET_BYTE.S 2 %verify "negative value is sign-extended"
OP_IGET_CHAR.S 2 %verify "large values are not sign-extended"
OP_IGET_SHORT.S 2 %verify "negative value is sign-extended"
  /dalvik/vm/mterp/x86/
OP_IGET_OBJECT_VOLATILE.S 2 %verify "negative value is sign-extended"
OP_IGET_VOLATILE.S 2 %verify "negative value is sign-extended"
OP_IGET_BYTE.S 2 %verify "negative value is sign-extended"
OP_IGET_CHAR.S 2 %verify "large values are not sign-extended"
OP_IGET_SHORT.S 2 %verify "negative value is sign-extended"
  /external/chromium_org/third_party/icu/source/data/unidata/
DerivedJoiningType.txt 106 0488..0489 ; T # Me [2] COMBINING CYRILLIC HUNDRED THOUSANDS SIGN..COMBINING CYRILLIC MILLIONS SIGN
112 0610..061A ; T # Mn [11] ARABIC SIGN SALLALLAHOU ALAYHE WASSALLAM..ARABIC SMALL KASRA
125 081B..0823 ; T # Mn [9] SAMARITAN MARK EPENTHETIC YUT..SAMARITAN VOWEL SIGN A
126 0825..0827 ; T # Mn [3] SAMARITAN VOWEL SIGN SHORT A..SAMARITAN VOWEL SIGN U
127 0829..082D ; T # Mn [5] SAMARITAN VOWEL SIGN LONG I..SAMARITAN MARK NEQUDAA
129 0900..0902 ; T # Mn [3] DEVANAGARI SIGN INVERTED CANDRABINDU..DEVANAGARI SIGN ANUSVARA
130 093A ; T # Mn DEVANAGARI VOWEL SIGN O
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/META-INF/
eclipse.inf 2 jarprocessor.exclude.children.sign = true
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/META-INF/
eclipse.inf 2 jarprocessor.exclude.children.sign = true
  /external/clang/test/Frontend/
warning-mapping-4.c 1 // RUN: %clang_cc1 -verify -Wno-error=sign-compare %s
2 // RUN: %clang_cc1 -verify -Wsign-compare -w -Wno-error=sign-compare %s
  /external/dropbear/libtommath/
bn_mp_add.c 23 /* get sign of both inputs */
24 sa = a->sign;
25 sb = b->sign;
30 /* add their magnitudes, copy the sign */
31 c->sign = sa;
37 /* the sign of the one with the greater magnitude. */
39 c->sign = sb;
42 c->sign = sa;
  /external/llvm/test/Transforms/InstCombine/
2004-11-22-Missed-and-fold.ll 4 ;; sign extend
6 ;; chop off sign
  /system/core/fastboot/
signfile.sh 9 openssl dgst -passin pass:"$3" -binary -sha1 -sign $1.pem $2 > $2.sign
  /external/chromium_org/chrome/browser/signin/
signin_promo.h 19 // Utility functions for sign in promos.
35 // Returns true if the sign in promo should be visible.
39 // Returns true if we should show the sign in promo at startup.
42 // Called when the sign in promo has been shown so that we can keep track
46 // Registers the fact that the user has skipped the sign in promo.
49 // Gets the sign in landing page URL.
52 // Returns the sign in promo URL wth the given arguments in the query.
53 // |source| identifies from where the sign in promo is being called, and is
55 // |auto_close| whether to close the sign in promo automatically when done.
58 // Gets the next page URL from the query portion of the sign in promo URL
    [all...]
  /external/chromium_org/v8/test/cctest/
test-dtoa.cc 64 int sign; local
66 DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
70 DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
75 DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
84 DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point);
90 DoubleToAscii(1.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
96 DoubleToAscii(1.5, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
100 DoubleToAscii(1.5, DTOA_FIXED, 10, buffer, &sign, &length, &point);
106 DoubleToAscii(1.5, DTOA_PRECISION, 10, buffer, &sign, &length, &point)
270 int sign; local
290 int sign; local
313 int sign; local
    [all...]
  /external/v8/test/cctest/
test-dtoa.cc 64 int sign; local
66 DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
70 DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
75 DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
84 DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point);
90 DoubleToAscii(1.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
96 DoubleToAscii(1.5, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
100 DoubleToAscii(1.5, DTOA_FIXED, 10, buffer, &sign, &length, &point);
106 DoubleToAscii(1.5, DTOA_PRECISION, 10, buffer, &sign, &length, &point)
270 int sign; local
290 int sign; local
313 int sign; local
    [all...]
  /development/samples/browseable/BasicAndroidKeyStore/
_index.jd 10 You can also sign data using those keys.</p>
14 <li><strong>Sign</strong> to sign some data using a KeyPair.</li>
  /external/chromium_org/third_party/icu/source/test/cintltst/
ccurrtst.c 45 { 0x00A4, 0x0000}, /*00A4; L; [14 36, 03, 03] # [082B.0020.0002] # CURRENCY SIGN*/
46 { 0x00A2, 0x0000}, /*00A2; L; [14 38, 03, 03] # [082C.0020.0002] # CENT SIGN*/
47 { 0xFFE0, 0x0000}, /*FFE0; L; [14 38, 03, 05] # [082C.0020.0003] # FULLWIDTH CENT SIGN*/
48 { 0x0024, 0x0000}, /*0024; L; [14 3A, 03, 03] # [082D.0020.0002] # DOLLAR SIGN*/
49 { 0xFF04, 0x0000}, /*FF04; L; [14 3A, 03, 05] # [082D.0020.0003] # FULLWIDTH DOLLAR SIGN*/
50 { 0xFE69, 0x0000}, /*FE69; L; [14 3A, 03, 1D] # [082D.0020.000F] # SMALL DOLLAR SIGN*/
51 { 0x00A3, 0x0000}, /*00A3; L; [14 3C, 03, 03] # [082E.0020.0002] # POUND SIGN*/
52 { 0xFFE1, 0x0000}, /*FFE1; L; [14 3C, 03, 05] # [082E.0020.0003] # FULLWIDTH POUND SIGN*/
53 { 0x00A5, 0x0000}, /*00A5; L; [14 3E, 03, 03] # [082F.0020.0002] # YEN SIGN*/
54 { 0xFFE5, 0x0000}, /*FFE5; L; [14 3E, 03, 05] # [082F.0020.0003] # FULLWIDTH YEN SIGN*/
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
currcoll.cpp 48 { 0x00A4, 0x0000}, /*00A4; L; [14 36, 03, 03] # [082B.0020.0002] # CURRENCY SIGN*/
49 { 0x00A2, 0x0000}, /*00A2; L; [14 38, 03, 03] # [082C.0020.0002] # CENT SIGN*/
50 { 0xFFE0, 0x0000}, /*FFE0; L; [14 38, 03, 05] # [082C.0020.0003] # FULLWIDTH CENT SIGN*/
51 { 0x0024, 0x0000}, /*0024; L; [14 3A, 03, 03] # [082D.0020.0002] # DOLLAR SIGN*/
52 { 0xFF04, 0x0000}, /*FF04; L; [14 3A, 03, 05] # [082D.0020.0003] # FULLWIDTH DOLLAR SIGN*/
53 { 0xFE69, 0x0000}, /*FE69; L; [14 3A, 03, 1D] # [082D.0020.000F] # SMALL DOLLAR SIGN*/
54 { 0x00A3, 0x0000}, /*00A3; L; [14 3C, 03, 03] # [082E.0020.0002] # POUND SIGN*/
55 { 0xFFE1, 0x0000}, /*FFE1; L; [14 3C, 03, 05] # [082E.0020.0003] # FULLWIDTH POUND SIGN*/
56 { 0x00A5, 0x0000}, /*00A5; L; [14 3E, 03, 03] # [082F.0020.0002] # YEN SIGN*/
57 { 0xFFE5, 0x0000}, /*FFE5; L; [14 3E, 03, 05] # [082F.0020.0003] # FULLWIDTH YEN SIGN*/
    [all...]

Completed in 1455 milliseconds

1 2 3 4 5 6 7 8 91011>>