Home
last modified time | relevance | path

Searched defs:Sign (Results 1 – 25 of 95) sorted by relevance

1234

/external/rust/crates/num-bigint/src/
Dbigint.rs41 pub enum Sign { enum
47 impl Neg for Sign { implementation
52 fn neg(self) -> Sign { in neg()
574 pub fn new(sign: Sign, digits: Vec<u32>) -> BigInt { in new()
582 pub fn from_biguint(mut sign: Sign, mut data: BigUint) -> BigInt { in from_biguint()
596 pub fn from_slice(sign: Sign, slice: &[u32]) -> BigInt { in from_slice()
604 pub fn assign_from_slice(&mut self, sign: Sign, slice: &[u32]) { in assign_from_slice()
632 pub fn from_bytes_be(sign: Sign, bytes: &[u8]) -> BigInt { in from_bytes_be()
640 pub fn from_bytes_le(sign: Sign, bytes: &[u8]) -> BigInt { in from_bytes_le()
694 pub fn from_radix_be(sign: Sign, buf: &[u8], radix: u32) -> Option<BigInt> { in from_radix_be()
[all …]
/external/rust/crates/num-bigint/src/bigint/
Dpower.rs13 fn powsign<T: Integer>(sign: Sign, other: &T) -> Sign { in powsign()
Dserde.rs6 impl Serialize for Sign { implementation
21 impl<'de> Deserialize<'de> for Sign { implementation
Dmultiplication.rs11 impl Mul<Sign> for Sign { implementation
15 fn mul(self, other: Sign) -> Sign { in mul()
/external/tensorflow/tensorflow/lite/kernels/
Dsign.cc87 struct Sign { struct
89 static T Eval(T x) { in Eval()
/external/llvm/lib/Support/
DLEB128.cpp32 int Sign = Value >> (8 * sizeof(Value) - 1); in getSLEB128Size() local
DDwarf.cpp299 const char *llvm::dwarf::DecimalSignString(unsigned Sign) { in DecimalSignString()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DLEB128.cpp31 int Sign = Value >> (8 * sizeof(Value) - 1); in getSLEB128Size() local
/external/rust/crates/quiche/deps/boringssl/src/tool/
Dsign.cc31 bool Sign(const std::vector<std::string> &args) { in Sign() function
/external/boringssl/src/tool/
Dsign.cc31 bool Sign(const std::vector<std::string> &args) { in Sign() function
/external/llvm/lib/Transforms/Utils/
DCmpInstAnalysis.cpp72 Value *llvm::getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS, in getICmpValue()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMAddressingModes.h633 uint8_t Sign = (Imm >> 7) & 0x1; in getFPImmFloat() local
654 uint32_t Sign = Imm.lshr(15).getZExtValue() & 1; in getFP16Imm() local
680 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1; in getFP32Imm() local
708 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1; in getFP64Imm() local
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMAddressingModes.h658 uint8_t Sign = (Imm >> 7) & 0x1; in getFPImmFloat() local
680 uint32_t Sign = Imm.lshr(15).getZExtValue() & 1; in getFP16Imm() local
706 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1; in getFP32Imm() local
734 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1; in getFP64Imm() local
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DCmpInstAnalysis.cpp42 Constant *llvm::getPredForICmpCode(unsigned Code, bool Sign, Type *OpTy, in getPredForICmpCode()
/external/libchrome/crypto/
Dhmac.cc56 bool HMAC::Sign(base::StringPiece data, in Sign() function in crypto::HMAC
/external/protobuf/src/google/protobuf/stubs/
Dmathutil.h61 static T Sign(T value) { in Sign() function
/external/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64AddressingModes.h349 uint8_t Sign = (Imm >> 7) & 0x1; in getFPImmFloat() local
371 uint32_t Sign = Imm.lshr(15).getZExtValue() & 1; in getFP16Imm() local
397 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1; in getFP32Imm() local
425 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1; in getFP64Imm() local
/external/icu/libicu/cts_headers/
Ddouble-conversion-ieee.h181 int Sign() const { in Sign() function
367 int Sign() const { in Sign() function
/external/icu/icu4c/source/i18n/
Ddouble-conversion-ieee.h181 int Sign() const { in Sign() function
367 int Sign() const { in Sign() function
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64AddressingModes.h346 uint8_t Sign = (Imm >> 7) & 0x1; in getFPImmFloat() local
368 uint32_t Sign = Imm.lshr(15).getZExtValue() & 1; in getFP16Imm() local
394 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1; in getFP32Imm() local
422 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1; in getFP64Imm() local
/external/capstone/arch/AArch64/
DAArch64AddressingModes.h191 uint8_t Sign = (Imm >> 7) & 0x1; in AArch64_AM_getFPImmFloat() local
/external/pdfium/third_party/bigint/
DBigInteger.hh30 enum Sign { negative = -1, zero = 0, positive = 1 }; enum in BigInteger
/external/llvm/include/llvm/ADT/
DAPFloat.h353 static APFloat copySign(APFloat Value, const APFloat &Sign) { in copySign()
/external/starlark-go/starlark/
Dint.go218 func (x Int) Sign() int { func
/external/rust/cxx/syntax/
Ddiscriminant.rs24 enum Sign { enum

1234