Searched refs:sig (Results 126 - 150 of 739) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/lld/wasm/
H A DSymbolTable.cpp507 const WasmSignature *sig,
510 << (sig ? toString(*sig) : "none")
523 file, sig, isCalledDirectly);
531 lazy->signature = sig;
544 if (!existingFunction->signature && sig)
545 existingFunction->signature = sig;
547 if (isCalledDirectly && !signatureMatches(existingFunction, sig)) {
553 else if (getFunctionVariant(s, sig, file, &s))
643 const WasmSignature *sig) {
503 addUndefinedFunction(StringRef name, std::optional<StringRef> importName, std::optional<StringRef> importModule, uint32_t flags, InputFile *file, const WasmSignature *sig, bool isCalledDirectly) argument
639 addUndefinedTag(StringRef name, std::optional<StringRef> importName, std::optional<StringRef> importModule, uint32_t flags, InputFile *file, const WasmSignature *sig) argument
774 getFunctionVariant(Symbol* sym, const WasmSignature *sig, const InputFile *file, Symbol **out) argument
841 replaceWithUnreachable(Symbol *sym, const WasmSignature &sig, StringRef debugName) argument
886 createUndefinedStub(const WasmSignature &sig) argument
[all...]
/openbsd-current/sys/arch/powerpc64/powerpc64/
H A Dtrap.c59 int error, sig, code; local
275 sig = SIGKILL;
278 sig = SIGBUS;
281 sig = SIGSEGV;
284 sig = SIGSEGV;
288 trapsignal(p, sig, 0, code, sv);
320 sig = SIGKILL;
323 sig = SIGBUS;
326 sig = SIGSEGV;
329 sig
[all...]
/openbsd-current/gnu/gcc/gcc/config/rs6000/
H A Dhost-darwin.c60 segv_crash_handler (int sig ATTRIBUTE_UNUSED)
66 segv_handler (int sig ATTRIBUTE_UNUSED,
/openbsd-current/gnu/llvm/lldb/bindings/interface/
H A DSBUnixSignals.i68 signals.append(self.GetSignalAtIndex(sig))
/openbsd-current/usr.bin/dig/lib/dns/include/dst/
H A Ddst.h192 dst_context_sign(dst_context_t *dctx, isc_buffer_t *sig);
198 * \li "sig" is a valid buffer.
206 * \li "sig" will contain the signature
210 dst_context_verify(dst_context_t *dctx, isc_region_t *sig);
/openbsd-current/lib/libcrypto/sm2/
H A Dsm2.h36 int SM2_sign(const unsigned char *dgst, int dgstlen, unsigned char *sig,
42 int SM2_verify(const unsigned char *dgst, int dgstlen, const unsigned char *sig,
H A Dsm2_pmeth.c109 pkey_sm2_sign(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, argument
118 if (sig == NULL) {
128 if ((ret = SM2_sign(tbs, tbslen, sig, &sltmp, ctx->pkey->pkey.ec)) <= 0)
136 pkey_sm2_verify(EVP_PKEY_CTX *ctx, const unsigned char *sig, size_t siglen, argument
139 return SM2_verify(tbs, tbslen, sig, siglen, ctx->pkey->pkey.ec);
/openbsd-current/lib/libcrypto/ocsp/
H A Docsp_cl.c131 OCSP_SIGNATURE *sig; local
135 sig = req->optionalSignature;
136 if (!sig)
140 if (!sig->certs && !(sig->certs = sk_X509_new_null()))
143 if (!sk_X509_push(sig->certs, cert))
160 OCSP_SIGNATURE *sig; local
166 if (!(req->optionalSignature = sig = OCSP_SIGNATURE_new()))
/openbsd-current/usr.bin/dig/lib/dns/
H A Ddst_internal.h115 isc_result_t (*sign)(dst_context_t *dctx, isc_buffer_t *sig);
116 isc_result_t (*verify)(dst_context_t *dctx, const isc_region_t *sig);
/openbsd-current/gnu/usr.bin/gcc/gcc/java/
H A Dzextract.c236 static ulg makelong(sig)
237 const uch *sig;
243 return (((ulg)sig[3]) << 24)
244 + (((ulg)sig[2]) << 16)
245 + (((ulg)sig[1]) << 8)
246 + ((ulg)sig[0]);
/openbsd-current/lib/libedit/TEST/
H A Dtc1.c58 static void sig(int);
70 sig(int i) function
124 (void) signal(SIGINT, sig);
125 (void) signal(SIGQUIT, sig);
126 (void) signal(SIGHUP, sig);
127 (void) signal(SIGTERM, sig);
/openbsd-current/usr.bin/ssh/
H A Dxmss_wots.c114 int wots_sign(unsigned char *sig, const unsigned char *msg, const unsigned char *sk, const wots_params *params, const unsigned char *pub_seed, uint32_t addr[8]) argument
143 expand_seed(sig, sk, params);
147 gen_chain(sig+i*params->n, sig+i*params->n, 0, basew[i], params, pub_seed, addr);
153 int wots_pkFromSig(unsigned char *pk, const unsigned char *sig, const unsigned char *msg, const wots_params *params, const unsigned char *pub_seed, uint32_t addr[8]) argument
182 gen_chain(pk+i*params->n, sig+i*params->n, basew[i], params->w-1-basew[i], params, pub_seed, addr);
H A Dauth2-hostbased.c65 u_char *pkblob, *sig; local
74 (r = sshpkt_get_string(ssh, &sig, &slen)) != 0)
81 sshbuf_dump_data(sig, slen, stderr);
150 mm_sshkey_verify(key, sig, slen,
163 free(sig);
H A Dssh-sk.c546 sshsk_ecdsa_sig(struct sk_sign_response *resp, struct sshbuf *sig) argument
569 if ((r = sshbuf_put_stringb(sig, inner_sig)) != 0 ||
570 (r = sshbuf_put_u8(sig, resp->flags)) != 0 ||
571 (r = sshbuf_put_u32(sig, resp->counter)) != 0) {
591 sshsk_ed25519_sig(struct sk_sign_response *resp, struct sshbuf *sig) argument
601 if ((r = sshbuf_put_string(sig,
603 (r = sshbuf_put_u8(sig, resp->flags)) != 0 ||
604 (r = sshbuf_put_u32(sig, resp->counter)) != 0) {
626 struct sshbuf *inner_sig = NULL, *sig = NULL; local
674 if ((sig
[all...]
/openbsd-current/regress/usr.sbin/syslogd/
H A Dttylog.c197 timeout(int sig) argument
199 fprintf(lg, "signal timeout %d\n", sig);
205 terminate(int sig) argument
207 fprintf(lg, "signal terminate %d\n", sig);
213 iostdin(int sig) argument
218 fprintf(lg, "signal iostdin %d\n", sig);
/openbsd-current/sys/arch/riscv64/riscv64/
H A Dtrap.c197 int error, sig, code; local
222 sig = SIGKILL;
225 sig = SIGBUS;
228 sig = SIGSEGV;
231 sig = SIGSEGV;
235 trapsignal(p, sig, 0, code, sv);
/openbsd-current/gnu/gcc/gcc/config/ia64/
H A Dlib1funcs.asm167 setf.sig f8 = in0
168 setf.sig f9 = in1
199 getf.sig ret0 = f10
220 setf.sig f14 = in0
221 setf.sig f9 = in1
247 setf.sig f9 = in1
256 getf.sig ret0 = f10
277 setf.sig f8 = in0
278 setf.sig f9 = in1
309 getf.sig ret
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/config/ia64/
H A Dlib1funcs.asm136 setf.sig f8 = in0
137 setf.sig f9 = in1
165 getf.sig ret0 = f10
186 setf.sig f14 = in0
187 setf.sig f9 = in1
210 setf.sig f9 = in1
219 getf.sig ret0 = f10
240 setf.sig f8 = in0
241 setf.sig f9 = in1
269 getf.sig ret
[all...]
/openbsd-current/lib/libcrypto/rsa/
H A Drsa_pmeth.c187 pkey_rsa_sign(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen, argument
212 ret = RSA_private_encrypt(tbslen + 1, rctx->tbuf, sig,
217 ret = RSA_sign(EVP_MD_type(rctx->md), tbs, tbslen, sig,
229 sig, rsa, RSA_NO_PADDING);
234 ret = RSA_private_encrypt(tbslen, tbs, sig, ctx->pkey->pkey.rsa,
245 const unsigned char *sig, size_t siglen)
254 ret = RSA_public_decrypt(siglen, sig, rctx->tbuf,
274 rout, &sltmp, sig, siglen, ctx->pkey->pkey.rsa);
282 ret = RSA_public_decrypt(siglen, sig, rout, ctx->pkey->pkey.rsa,
292 pkey_rsa_verify(EVP_PKEY_CTX *ctx, const unsigned char *sig, size_ argument
244 pkey_rsa_verifyrecover(EVP_PKEY_CTX *ctx, unsigned char *rout, size_t *routlen, const unsigned char *sig, size_t siglen) argument
[all...]
/openbsd-current/games/tetris/
H A Dscreen.c213 stopset(int sig) argument
217 (void) signal(sig, SIG_DFL);
218 (void) kill(getpid(), sig); local
220 sigaddset(&sigset, sig);
226 scr_stop(int sig) argument
231 (void) kill(getpid(), sig); local
233 sigaddset(&sigset, sig);
/openbsd-current/usr.bin/telnet/
H A Dsys_bsd.c397 deadpeer(int sig) argument
404 intr(int sig) argument
415 intr2(int sig) argument
429 susp(int sig) argument
438 sendwin(int sig) argument
446 ayt(int sig) argument
451 ayt_status(sig);
/openbsd-current/usr.sbin/pppd/
H A Dmain.c911 kill_my_pg(sig)
912 int sig;
918 kill(0, sig);
919 sigaction(sig, &act, &oldact);
920 sigaction(sig, &oldact, NULL);
932 hup(sig)
933 int sig;
944 kill_my_pg(sig);
955 term(sig)
956 int sig;
[all...]
/openbsd-current/gnu/gcc/gcc/
H A Ddfp.c86 decimal128FromNumber ((decimal128 *) r->sig, dn, context);
132 decimal128ToNumber ((decimal128 *) r->sig, dn);
316 d128 = (decimal128 *) from->sig;
363 decimal128ToNumber ((decimal128 *) a->sig, &dn2);
364 decimal128ToNumber ((decimal128 *) b->sig, &dn3);
394 decimal128ToNumber ((decimal128 *) r->sig, &dn);
454 decimal128 *d128 = (decimal128*) r_orig->sig;
543 decimal128ToNumber ((decimal128 *) a->sig, &dn2);
562 decimal128ToNumber ((decimal128 *) r->sig, &dn);
589 decimal128ToNumber ((decimal128 *) r->sig,
[all...]
/openbsd-current/sys/arch/m88k/m88k/
H A Dm88110_fp.c74 int sig; local
101 sig = SIGBUS;
112 sig = SIGILL;
121 sig = SIGFPE;
125 sig = m88110_fpu_emulate(frame, insn);
138 sig = SIGILL;
143 if (sig != 0) {
144 if (sig == SIGILL)
169 trapsignal(p, sig, 0, fault_type, sv);
/openbsd-current/lib/libfido2/src/
H A Drs256.c221 const fido_blob_t *sig)
245 if (EVP_PKEY_verify(pctx, sig->ptr, sig->len, dgst->ptr,
260 const fido_blob_t *sig)
266 rs256_verify_sig(dgst, pkey, sig) < 0) {
220 rs256_verify_sig(const fido_blob_t *dgst, EVP_PKEY *pkey, const fido_blob_t *sig) argument
259 rs256_pk_verify_sig(const fido_blob_t *dgst, const rs256_pk_t *pk, const fido_blob_t *sig) argument

Completed in 265 milliseconds

1234567891011>>