/external/mesa3d/src/glsl/ |
link_functions.cpp | 81 ir_function_signature *sig = local 83 if (sig != NULL) { 84 ir->set_callee(sig); 91 sig = find_matching_signature(name, &ir->actual_parameters, shader_list, 93 if (sig == NULL) { 138 foreach_list_const(node, &sig->parameters) { 148 foreach_list_const(node, &sig->body) { 238 ir_function_signature *sig = f->matching_signature(actual_parameters); local 240 if ((sig == NULL) || !sig->is_defined [all...] |
ir_function.cpp | 169 ir_function_signature *const sig = local 172 const int score = parameter_lists_match(& sig->parameters, 176 return sig; 182 match = sig; 219 ir_function_signature *const sig = local 222 if (parameter_lists_match_exact(&sig->parameters, actual_parameters)) 223 return sig;
|
opt_dead_functions.cpp | 38 signature_entry(ir_function_signature *sig) 40 this->signature = sig; 74 ir_dead_functions_visitor::get_signature_entry(ir_function_signature *sig) 78 if (entry->signature == sig) 82 signature_entry *entry = new(mem_ctx) signature_entry(sig);
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
DSAEncoder.java | 11 BigInteger[] decode(byte[] sig)
|
/external/openssl/crypto/ecdsa/ |
ecs_sign.c | 77 *sig, unsigned int *siglen, EC_KEY *eckey) 79 return ECDSA_sign_ex(type, dgst, dlen, sig, siglen, NULL, NULL, eckey); 83 *sig, unsigned int *siglen, const BIGNUM *kinv, const BIGNUM *r, 94 *siglen = i2d_ECDSA_SIG(s, &sig);
|
/external/valgrind/main/none/tests/ |
pending.c | 18 static void handler(int sig) 21 ( sig == SIGUSR1 ? "SIGUSR1" : "unexpected signal" )); 23 if (sig != SIGUSR1) { 24 fprintf(stderr, "FAILED: got signal %d instead\n", sig);
|
/external/valgrind/main/none/tests/s390x/ |
op_exception.c | 11 static void handle_ill(int sig)
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
waitstatus.h | 57 #define __W_EXITCODE(ret, sig) ((ret) << 8 | (sig)) 58 #define __W_STOPCODE(sig) ((sig) << 8 | 0x7f)
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
waitstatus.h | 57 #define __W_EXITCODE(ret, sig) ((ret) << 8 | (sig)) 58 #define __W_STOPCODE(sig) ((sig) << 8 | 0x7f)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
waitstatus.h | 57 #define __W_EXITCODE(ret, sig) ((ret) << 8 | (sig)) 58 #define __W_STOPCODE(sig) ((sig) << 8 | 0x7f)
|
/external/chromium/crypto/ |
signature_verifier_nss.cc | 65 SECItem sig; local 66 sig.type = siBuffer; 67 sig.data = const_cast<uint8*>(signature); 68 sig.len = signature_len; 70 vfy_context_ = VFY_CreateContextWithAlgorithmID(public_key, &sig,
|
/dalvik/libdex/ |
DexDebugInfo.cpp | 38 const char* sig = *pSig; local 40 if (*sig == '(') 41 sig++; 43 if (*sig == 'L') { 45 while (*++sig != ';') 47 *pSig = sig+1; 50 if (*sig == '[') { 52 while (*++sig == '[') 54 if (*sig == 'L') { 55 while (*++sig != ';' [all...] |
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/ |
SHA1withDSA_SignatureTest.java | 484 private int checkSignature(byte sig[], int offset) { 486 int n1 = sig[offset + 3]; 487 int n2 = sig[offset + n1 + 5]; 489 if (sig[offset] != 0x30 || sig[offset + 1] != (n1 + n2 + 4) 490 || sig[offset + 2] != 2 || sig[offset + n1 + 4] != 2 || n1 > 21 503 byte sig[]; 509 sig = signingSigns[i].sign(); 512 int n = checkSignature(sig, 0) [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/signers/ |
RSADigestSigner.java | 165 byte[] sig; 170 sig = rsaEngine.processBlock(signature, 0, signature.length); 178 if (sig.length == expected.length) 180 for (int i = 0; i < sig.length; i++) 182 if (sig[i] != expected[i]) 188 else if (sig.length == expected.length - 2) // NULL left out 190 int sigOffset = sig.length - hash.length - 2; 198 if (sig[sigOffset + i] != expected[expectedOffset + i]) // check hash 206 if (sig[i] != expected[i]) // check header less NULL
|
/external/valgrind/main/coregrind/m_gdbserver/ |
signals.c | 208 char *target_signal_to_name (enum target_signal sig) 210 if ((sig >= TARGET_SIGNAL_FIRST) && (sig <= TARGET_SIGNAL_LAST) 211 && signals[sig].name != NULL) 212 return signals[sig].name; 222 enum target_signal sig; local 230 for (sig = TARGET_SIGNAL_HUP; 231 sig < TARGET_SIGNAL_LAST; 232 sig = (enum target_signal) ((int) sig + 1) [all...] |
/external/valgrind/main/coregrind/ |
m_libcsignal.c | 48 either 32 or 64, and hence the sig[] words can either be 32- or 58 set->sig[i] = ~0; 68 set->sig[i] = 0; 77 if (set->sig[i] != 0) return False; 86 if (set->sig[i] != ~0) return False; 95 if (set1->sig[i] != set2->sig[i]) return False; 107 set->sig[signum / _VKI_NSIG_BPW] |= (1ULL << (signum % _VKI_NSIG_BPW)); 118 set->sig[signum / _VKI_NSIG_BPW] &= ~(1ULL << (signum % _VKI_NSIG_BPW)); 129 if (1 & ((set->sig[signum / _VKI_NSIG_BPW]) >> (signum % _VKI_NSIG_BPW)) [all...] |
/external/bluetooth/glib/gobject/ |
glib-genmarshal.c | 324 Signature *sig) 387 ind = g_fprintf (fout, " typedef %s (*GMarshalFunc_%s) (", sig->rarg->ctype, signame); 389 for (a = 1, node = sig->args; node; node = node->next) 402 if (sig->rarg->setter) 403 g_fprintf (fout, " %s v_return;\n", sig->rarg->ctype); 405 if (sig->args || sig->rarg->setter) 409 if (sig->rarg->setter) 411 if (sig->args) 413 for (a = 0, node = sig->args; node; node = node->next [all...] |
/external/junit/src/org/junit/experimental/theories/internal/ |
AllMembersSupplier.java | 63 public List<PotentialAssignment> getValueSources(ParameterSignature sig) { 66 addFields(sig, list); 67 addSinglePointMethods(sig, list); 84 private void addSinglePointMethods(ParameterSignature sig, 88 Class<?> type= sig.getType(); 94 private void addFields(ParameterSignature sig, 99 if (sig.canAcceptArrayType(type) 102 } else if (sig.canAcceptType(type)
|
/external/junit/src/org/junit/experimental/theories/suppliers/ |
TestedOnSupplier.java | 14 @Override public List<PotentialAssignment> getValueSources(ParameterSignature sig) { 16 TestedOn testedOn = sig.getAnnotation(TestedOn.class);
|
/external/openssl/crypto/dsa/ |
dsa_asn1.c | 71 DSA_SIG *sig; local 72 sig = OPENSSL_malloc(sizeof(DSA_SIG)); 73 if (!sig) 78 sig->r = NULL; 79 sig->s = NULL; 80 *pval = (ASN1_VALUE *)sig; 153 int DSA_sign(int type, const unsigned char *dgst, int dlen, unsigned char *sig, 164 *siglen=i2d_DSA_SIG(s,&sig);
|
/external/openssl/crypto/ |
s390xcap.c | 10 static void ill_handler (int sig) { siglongjmp(ill_jmp,sig); }
|
/external/qemu/distrib/sdl-1.2.12/src/events/ |
SDL_quit.c | 35 static void SDL_HandleSIG(int sig) 38 signal(sig, SDL_HandleSIG);
|
/external/valgrind/main/memcheck/tests/amd64-linux/ |
int3-amd64.c | 21 static void register_handler(int sig, void *handler) 27 sigaction(sig, &sa, NULL);
|
/external/valgrind/main/memcheck/tests/ |
sigkill.c | 8 abend (int sig) 10 printf ("Abended on signal %d\n", sig);
|
/external/valgrind/main/memcheck/tests/x86-linux/ |
int3-x86.c | 21 static void register_handler(int sig, void *handler) 27 sigaction(sig, &sa, NULL);
|