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

<<11121314151617181920>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_copysignl.c 40 ux.bits.sign = uy.bits.sign;
  /dalvik/vm/mterp/mips/
OP_SHR_LONG.S 21 sra a3, a1, 31 # a3<- sign(ah)
28 movn v1, a3, a2 # rhi<- sign(ahi) (if shift&0x20)
OP_SHR_LONG_2ADDR.S 16 sra a3, a1, 31 # a3<- sign(ah)
23 movn v1, a3, a2 # rhi<- sign(ahi) (if shift&0x20)
binopLit8.S 16 FETCH_S(a3, 1) # a3 <- ssssCCBB (sign-extended for CC)
20 sra a1, a3, 8 # a1 <- ssssssCC (sign extended)
  /external/chromium_org/chrome/browser/ui/sync/
inline_login_dialog.h 17 // A dialog to host the inline sign-in WebUI. Currently, it loads
18 // chrome:://chrome-signin and dismisses itself when the sign-in is finished
  /external/chromium_org/crypto/
hmac_openssl.cc 43 bool HMAC::Sign(const base::StringPiece& data,
46 DCHECK(!plat_->key.empty()); // Init must be called before Sign.
signature_creator.h 28 // Currently can only sign data using SHA-1 with RSA encryption.
39 static bool Sign(RSAPrivateKey* key,
  /external/clang/test/SemaCXX/
warn-sign-conversion.cpp 29 int d1b = 1 ? i : Foo<bool>::D; // expected-warning {{warn-sign-conversion.cpp:13:5>' to 'int'}}
31 int d2b = 1 ? Foo<bool>::D : i; // expected-warning {{warn-sign-conversion.cpp:13:5>' to 'int'}}
33 int d3b = 1 ? B : Foo<bool>::D; // expected-warning {{warn-sign-conversion.cpp:13:5>' to 'int'}}
35 int d4b = 1 ? Foo<bool>::D : B; // expected-warning {{warn-sign-conversion.cpp:13:5>' to 'int'}}
38 int e1b = 1 ? i : E; // expected-warning {{warn-sign-conversion.cpp:16:3>' to 'int'}}
40 int e2b = 1 ? E : i; // expected-warning {{warn-sign-conversion.cpp:16:3>' to 'int'}}
42 int e3b = 1 ? E : B; // expected-warning {{warn-sign-conversion.cpp:16:3>' to 'int'}}
44 int e4b = 1 ? B : E; // expected-warning {{warn-sign-conversion.cpp:16:3>' to 'int'}}
  /external/dropbear/libtommath/
bn_mp_cmp_d.c 21 /* compare based on sign */
22 if (a->sign == MP_NEG) {
bn_mp_init.c 35 * and sign to positive */
38 a->sign = MP_ZPOS;
bn_mp_mod.c 34 if (t.sign != b->sign) {
bn_mp_read_signed_bin.c 30 a->sign = MP_ZPOS;
32 a->sign = MP_NEG;
  /external/kernel-headers/original/linux/
calc64.h 31 * Sign aware variation of the above. On some architectures a
33 * is avoided by the sign check.
  /external/llvm/lib/Transforms/Utils/
CmpInstAnalysis.cpp 27 /// same sign. Is illegal to do: (A u< B) | (A s> B)
67 /// predicate for a new ICmp instruction. The sign is passed in to determine
72 Value *llvm::getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
78 case 1: NewICmpPred = Sign ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; break;
80 case 3: NewICmpPred = Sign ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE; break;
81 case 4: NewICmpPred = Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT; break;
83 case 6: NewICmpPred = Sign ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE; break;
90 /// PredicatesFoldable - Return true if both predicates match sign or if at
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
ScalarArithmetic.h 42 * MSB (16) = sign bit
46 * MSB (32) = sign bit
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/
lookup_collatename.pass.cpp 45 test("number-sign", std::string("#"));
46 test("dollar-sign", std::string("$"));
47 test("percent-sign", std::string("%"));
53 test("plus-sign", std::string("+"));
73 test("less-than-sign", std::string("<"));
74 test("equals-sign", std::string("="));
75 test("greater-than-sign", std::string(">"));
121 test(L"number-sign", std::wstring(L"#"));
122 test(L"dollar-sign", std::wstring(L"$"));
123 test(L"percent-sign", std::wstring(L"%"))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
cp850.py 76 0x009c: 0x00a3, # POUND SIGN
78 0x009e: 0x00d7, # MULTIPLICATION SIGN
89 0x00a9: 0x00ae, # REGISTERED SIGN
90 0x00aa: 0x00ac, # NOT SIGN
104 0x00b8: 0x00a9, # COPYRIGHT SIGN
109 0x00bd: 0x00a2, # CENT SIGN
110 0x00be: 0x00a5, # YEN SIGN
127 0x00cf: 0x00a4, # CURRENCY SIGN
150 0x00e6: 0x00b5, # MICRO SIGN
161 0x00f1: 0x00b1, # PLUS-MINUS SIGN
    [all...]
cp857.py 76 0x009c: 0x00a3, # POUND SIGN
89 0x00a9: 0x00ae, # REGISTERED SIGN
90 0x00aa: 0x00ac, # NOT SIGN
104 0x00b8: 0x00a9, # COPYRIGHT SIGN
109 0x00bd: 0x00a2, # CENT SIGN
110 0x00be: 0x00a5, # YEN SIGN
127 0x00cf: 0x00a4, # CURRENCY SIGN
150 0x00e6: 0x00b5, # MICRO SIGN
152 0x00e8: 0x00d7, # MULTIPLICATION SIGN
160 0x00f1: 0x00b1, # PLUS-MINUS SIGN
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
cp850.py 76 0x009c: 0x00a3, # POUND SIGN
78 0x009e: 0x00d7, # MULTIPLICATION SIGN
89 0x00a9: 0x00ae, # REGISTERED SIGN
90 0x00aa: 0x00ac, # NOT SIGN
104 0x00b8: 0x00a9, # COPYRIGHT SIGN
109 0x00bd: 0x00a2, # CENT SIGN
110 0x00be: 0x00a5, # YEN SIGN
127 0x00cf: 0x00a4, # CURRENCY SIGN
150 0x00e6: 0x00b5, # MICRO SIGN
161 0x00f1: 0x00b1, # PLUS-MINUS SIGN
    [all...]
cp857.py 76 0x009c: 0x00a3, # POUND SIGN
89 0x00a9: 0x00ae, # REGISTERED SIGN
90 0x00aa: 0x00ac, # NOT SIGN
104 0x00b8: 0x00a9, # COPYRIGHT SIGN
109 0x00bd: 0x00a2, # CENT SIGN
110 0x00be: 0x00a5, # YEN SIGN
127 0x00cf: 0x00a4, # CURRENCY SIGN
150 0x00e6: 0x00b5, # MICRO SIGN
152 0x00e8: 0x00d7, # MULTIPLICATION SIGN
160 0x00f1: 0x00b1, # PLUS-MINUS SIGN
    [all...]
  /external/chromium_org/chrome/app/test_data/
cert_maker.bat 26 signtool sign /v /f certificates\SelfSigned.pfx dlls\self_signed.dll
37 signtool sign /v /f certificates\ValidCert.pfx dlls\valid_sig.dll
48 signtool sign /v /f certificates\NotGoogleCert.pfx dlls\not_google.dll
60 signtool sign /v /f certificates\DifferentHash.pfx dlls\different_hash.dll
72 signtool sign /v /f certificates\ExpiredCert.pfx dlls\expired.dll
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_view.h 91 // Triggers dialog to sign in to Google.
92 // Returns a NotificationSource to be used to monitor for sign-in completion.
95 // Closes out any sign-in UI and returns to normal operation.
105 // Called by AutofillDialogSignInDelegate when the sign-in page experiences a
106 // resize. |pref_size| is the new preferred size of the sign-in page.
  /external/llvm/lib/Target/Hexagon/
HexagonRemoveSZExtArgs.cpp 1 //===- HexagonRemoveExtendArgs.cpp - Remove unnecessary argument sign extends //
10 // Pass that removes sign extends for function parameters. These parameters
11 // are already sign extended by the caller per Hexagon's ABI
39 return "Remove sign extends";
53 "Remove Sign and Zero Extends for Args", false, false)
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDLKey.3 24 SDLK_PLUS '+' plus sign
26 SDLK_MINUS '-' minus sign
41 SDLK_LESS '<' less-than sign
42 SDLK_EQUALS '=' equals sign
43 SDLK_GREATER '>' greater-than sign
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_FillVLCBuffer.c 42 * levelPlus = sign(level)*[abs(level) - LMAX]
78 OMX_U32 tempRun = run, sign = 0; local
115 sign = 1;
133 armPackBits(ppBitStream, pBitOffset, (OMX_U32)sign, 1);
137 if (sign)

Completed in 233 milliseconds

<<11121314151617181920>>