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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
warn-sign-compare.cpp 28 int d1 = 1 ? i : Foo<bool>::D; // expected-warning {{operands of ? are integers of different signs}}
29 int d2 = 1 ? Foo<bool>::D : i; // expected-warning {{operands of ? are integers of different signs}}
30 int d3 = 1 ? B : Foo<bool>::D; // expected-warning {{operands of ? are integers of different signs}}
31 int d4 = 1 ? Foo<bool>::D : B; // expected-warning {{operands of ? are integers of different signs}}
33 int e1 = 1 ? i : E; // expected-warning {{operands of ? are integers of different signs}}
34 int e2 = 1 ? E : i; // expected-warning {{operands of ? are integers of different signs}}
35 int e3 = 1 ? E : B; // expected-warning {{operands of ? are integers of different signs}}
36 int e4 = 1 ? B : E; // expected-warning {{operands of ? are integers of different signs}}
62 int d1 = 1 ? i : Foo<bool>::D; // expected-warning {{operands of ? are integers of different signs}}
63 int d2 = 1 ? Foo<bool>::D : i; // expected-warning {{operands of ? are integers of different signs}}
    [all...]
compare.cpp 12 (a == (unsigned long) b) + // expected-warning {{comparison of integers of different signs}}
16 ((long) a == b) + // expected-warning {{comparison of integers of different signs}}
17 ((int) a == b) + // expected-warning {{comparison of integers of different signs}}
18 ((short) a == b) + // expected-warning {{comparison of integers of different signs}}
19 ((signed char) a == b) + // expected-warning {{comparison of integers of different signs}}
20 ((long) a == (unsigned long) b) + // expected-warning {{comparison of integers of different signs}}
21 ((int) a == (unsigned int) b) + // expected-warning {{comparison of integers of different signs}}
24 (a < (unsigned long) b) + // expected-warning {{comparison of integers of different signs}}
28 ((long) a < b) + // expected-warning {{comparison of integers of different signs}}
29 ((int) a < b) + // expected-warning {{comparison of integers of different signs}}
    [all...]
conditional-expr.cpp 183 test0 = test0 ? (long) test0 : test0; // expected-warning {{operands of ? are integers of different signs}}
184 test0 = test0 ? (int) test0 : test0; // expected-warning {{operands of ? are integers of different signs}}
185 test0 = test0 ? (short) test0 : test0; // expected-warning {{operands of ? are integers of different signs}}
186 test0 = test0 ? test0 : (long) test0; // expected-warning {{operands of ? are integers of different signs}}
187 test0 = test0 ? test0 : (int) test0; // expected-warning {{operands of ? are integers of different signs}}
188 test0 = test0 ? test0 : (short) test0; // expected-warning {{operands of ? are integers of different signs}}
  /external/clang/test/Sema/
compare.c 16 (a == (unsigned long) b) + // expected-warning {{comparison of integers of different signs}}
20 ((long) a == b) + // expected-warning {{comparison of integers of different signs}}
21 ((int) a == b) + // expected-warning {{comparison of integers of different signs}}
22 ((short) a == b) + // expected-warning {{comparison of integers of different signs}}
23 ((signed char) a == b) + // expected-warning {{comparison of integers of different signs}}
24 ((long) a == (unsigned long) b) + // expected-warning {{comparison of integers of different signs}}
25 ((int) a == (unsigned int) b) + // expected-warning {{comparison of integers of different signs}}
28 (a < (unsigned long) b) + // expected-warning {{comparison of integers of different signs}}
32 ((long) a < b) + // expected-warning {{comparison of integers of different signs}}
33 ((int) a < b) + // expected-warning {{comparison of integers of different signs}}
    [all...]
conditional-expr.c 39 test0 = test0 ? (long) test0 : test0; // expected-warning {{operands of ? are integers of different signs}}
40 test0 = test0 ? (int) test0 : test0; // expected-warning {{operands of ? are integers of different signs}}
41 test0 = test0 ? (short) test0 : test0; // expected-warning {{operands of ? are integers of different signs}}
42 test0 = test0 ? test0 : (long) test0; // expected-warning {{operands of ? are integers of different signs}}
43 test0 = test0 ? test0 : (int) test0; // expected-warning {{operands of ? are integers of different signs}}
44 test0 = test0 ? test0 : (short) test0; // expected-warning {{operands of ? are integers of different signs}}
55 test0 = test0 ? // expected-warning {{operands of ? are integers of different signs}}
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/cryptopro/
CryptoProObjectIdentifiers.java 23 // { iso(1) member-body(2) ru(643) rans(2) cryptopro(2) signs(32) }
34 //{ iso(1) member-body(2)ru(643) rans(2) cryptopro(2) ecc-signs(35) }
  /external/chromium/crypto/
signature_creator.h 32 // Signs data using a bare private key (as opposed to a full certificate).
  /external/clang/test/Index/
cxx-operator-overload.cpp 22 // Yep, we can show references of '+' plus signs that are overloaded, w00t!
  /external/dropbear/libtommath/
bn_mp_add.c 18 /* high level addition (handles signs) */
bn_mp_sub.c 18 /* high level subtraction (handles signs) */
bn_mp_sub_d.c 33 * addition [with fudged signs]
  /external/icu4c/layout/
KhmerReordering.h 27 // split vowels, signs... but there is only one base in a syllable, it has to be coded as
57 // Signs -> Khmer has above signs and post signs. Only one above sign and/or one post sign are
  /external/llvm/docs/HistoricalNotes/
2003-01-23-CygwinNotes.txt 26 does not like = signs in rules. Burg's gram.yc source file uses them. I think
  /bionic/libc/tzcode/
difftime.c 52 ** time1 and time0 have opposite signs.
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
SHA1withDSA_SignatureTest.java 61 private Signature signs[]; field in class:SHA1withDSA_SignatureTest
154 signs = new Signature[] { Signature.getInstance(algorithm, provider),
160 signs[1].initSign(privateKey);
161 signs[2].initSign(privateKey, null);
162 signs[3].initSign(privateKey, mySecureRandom);
163 signs[4].initVerify(publicKey);
165 signingSigns = new Signature[] { signs[1], signs[2], signs[3] };
166 verifyingSign = signs[4]
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_creator.h 58 // Signs the temporary zip and returns the signature.
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PUserDatabaseHeader.java 39 * by the < and > signs. There may be generic parameters for
  /frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
d2_11pf.h 84 Word16 sign, /* i : signs of 2 pulses. */
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
c8_31pf.cpp 124 sign_indx[] Array of type Word16 -- signs of 4 pulses (signs only)
184 * codevector, based on the signs and positions of 8 pulses.
194 Word16 sign_indx[], /* o : signs of 4 pulses (signs only) */
437 Word16 pos_indxA, /* i : signs of 4 pulses (signs only) */
500 sign_indx Array of type Word16 -- signs of 4 pulses (signs only)
524 4 signs (one for each track
    [all...]
  /external/apache-harmony/math/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerSubtractTest.java 74 * Subtract two numbers of the same length and different signs.
96 * Subtract two numbers of the same length and different signs.
160 * Subtract two numbers of the same length and different signs.
182 * Subtract two numbers of the same length and different signs.
246 * Subtract two numbers of different length and different signs.
268 * Subtract two numbers of the same length and different signs.
290 * Subtract two numbers of different length and different signs.
312 * Subtract two numbers of the same length and different signs.
  /external/chromium/third_party/libjingle/source/talk/session/phone/
srtpfilter.h 70 // Encrypts/signs an individual RTP/RTCP packet, in-place.
118 // Encrypts/signs an individual RTP/RTCP packet, in-place.
  /external/icu4c/i18n/unicode/
currpinf.h 241 * If there are 3 currency signs in the currency patttern,
242 * the 3 currency signs will be replaced by currency plural name.
  /external/speex/libspeex/
cb_search.c 525 VARDECL(int *signs);
539 ALLOC(signs, nb_subvect, int);
545 signs[i] = speex_bits_unpack_unsigned(bits, 1);
547 signs[i] = 0;
554 if (signs[i])
  /dalvik/tests/003-omnibus-opcodes/src/
Compare.java 92 /* high words are equal, low words have apparently different signs */
  /external/freetype/include/freetype/internal/
ftcalc.h 104 /* on the signs of `a' and `b'. */

Completed in 1880 milliseconds

1 2 3 4 5 6 7 8 91011>>