Searched defs:sign (Results 1 - 7 of 7) sorted by relevance

/system/core/toolbox/upstream-netbsd/lib/libc/gen/
H A Dhumanize_number.c51 int b, r, s1, s2, sign; local
91 sign = -1;
92 baselen = 3; /* sign, digit, prefix */
101 sign = 1;
153 sign * s1, localeconv()->decimal_point, s2,
157 sign * ((bytes + 50) / 100),
/system/extras/verity/
H A DKeystoreSigner.java149 public void sign(PrivateKey privateKey) throws Exception { method in class:BootKeystore
151 byte[] rawSignature = Utils.sign(privateKey, innerKeystore);
203 ks.sign(Utils.loadDERPrivateKeyFromFile(privkeyFname));
H A DBootSignature.java163 public byte[] sign(byte[] image, PrivateKey key) throws Exception { method in class:BootSignature
165 return Utils.sign(key, signable);
244 bootsig.setSignature(bootsig.sign(image, key),
298 args[1] is the path to a boot image to sign
H A DUtils.java244 static byte[] sign(PrivateKey privateKey, byte[] input) throws Exception { method in class:Utils
248 return signer.sign();
/system/core/libpixelflinger/
H A Dfixed.cpp54 // shift right 1-bit to make room for the sign bit
323 int32_t sign = a^b^c; local
336 if (sign < 0)
/system/security/keystore/
H A DIKeystoreService.cpp345 virtual int32_t sign(const String16& name, const uint8_t* in, size_t inLength, uint8_t** out, function in class:android::BpKeystoreService
369 ALOGE("out of memory allocating output array in sign");
819 int32_t ret = sign(name, (const uint8_t*) in, (size_t) inSize, (uint8_t**) &out, &outSize);
H A Dkeystore.cpp182 "sign",
1998 int32_t sign(const String16& name, const uint8_t* data, size_t length, uint8_t** out, function in class:android::KeyStoreProxy
2010 ALOGV("sign %s from uid %d", name8.string(), callingUid);
2021 ALOGE("no keymaster device; cannot sign");
2042 ALOGW("device couldn't sign data");

Completed in 113 milliseconds