Searched refs:ST (Results 1 - 25 of 155) sorted by relevance

1234567

/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/Mips/
H A DMipsFrameLowering.cpp86 const MipsSubtarget &ST) {
88 return llvm::createMips16FrameLowering(ST);
90 return llvm::createMipsSEFrameLowering(ST);
85 create(MipsTargetMachine &TM, const MipsSubtarget &ST) argument
H A DMipsFrameLowering.h34 const MipsSubtarget &ST);
40 const MipsFrameLowering *createMips16FrameLowering(const MipsSubtarget &ST);
41 const MipsFrameLowering *createMipsSEFrameLowering(const MipsSubtarget &ST);
H A DMipsMachineFunction.cpp34 const MipsSubtarget &ST = MF.getTarget().getSubtarget<MipsSubtarget>(); local
37 if (ST.inMips16Mode())
40 RC = ST.isABI_N64() ?
H A DMips16RegisterInfo.cpp41 Mips16RegisterInfo::Mips16RegisterInfo(const MipsSubtarget &ST) argument
42 : MipsRegisterInfo(ST) {}
/macosx-10.9.5/CPANInternal-140/Params-Util/
H A DUtil.xs66 if( SvTRUE(ST(0)) )
90 ST(0) = sv;
106 ST(0) = sv;
124 ST(0) = ref;
144 ST(0) = ref;
170 ST(0) = ref;
187 ST(0) = ref;
204 ST(0) = ref;
222 ST(0) = ref;
240 ST(
[all...]
/macosx-10.9.5/CPANInternal-140/TermReadKey/
H A Dgenchars.pl161 file = IoIFP(sv_2io(ST(0)));
197 file = IoIFP(sv_2io(ST(items-1)));
214 name = SvPV(ST(i),PL_na);
215 if( SvIOKp(ST(i+1)) || SvNOKp(ST(i+1)) )/* If Int or Float */
216 value = (char)SvIV(ST(i+1)); /* Store int value */
218 value = SvPV(ST(i+1),PL_na)[0]; /* Use first char of PV */
386 file = IoIFP(sv_2io(ST(0)));
418 file = IoIFP(sv_2io(ST(items-1)));
430 name = SvPV(ST(
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/rde_critcl/
H A Dparam.c31 long int ST; member in struct:RDE_PARAM_
158 p->ST = 0;
210 p->ST = 0;
428 return p->ST;
727 p->ST = 1;
740 p->ST = 0;
756 p->ST = 1;
767 p->ST = 0;
773 p->ST = 1;
779 p->ST
[all...]
/macosx-10.9.5/CPANInternal-140/Crypt-OpenSSL-Bignum/
H A DBignum.xs19 #define proto_obj( obj ) new_obj( ST(0), obj )
172 bn = ( items < 3 ) ? BN_new() : sv2bn( ST(2) );
174 ST(0) = ( (items < 3 ) ? proto_obj( bn ) : ST(2) );
186 bn = ( items < 3 ) ? BN_new() : sv2bn( ST(2) );
188 ST(0) = ( (items < 3 ) ? proto_obj( bn ) : ST(2) );
201 bn = ( items < 4 ) ? BN_new() : sv2bn( ST(3) );
203 ST(0) = ( (items < 4 ) ? proto_obj( bn ) : ST(
[all...]
/macosx-10.9.5/CPANInternal-140/Crypt-OpenSSL-Bignum-0.04/
H A DBignum.xs19 #define proto_obj( obj ) new_obj( ST(0), obj )
172 bn = ( items < 3 ) ? BN_new() : sv2bn( ST(2) );
174 ST(0) = ( (items < 3 ) ? proto_obj( bn ) : ST(2) );
186 bn = ( items < 3 ) ? BN_new() : sv2bn( ST(2) );
188 ST(0) = ( (items < 3 ) ? proto_obj( bn ) : ST(2) );
201 bn = ( items < 4 ) ? BN_new() : sv2bn( ST(3) );
203 ST(0) = ( (items < 4 ) ? proto_obj( bn ) : ST(
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/utils/TableGen/
H A DSetTheory.cpp30 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts) { argument
31 ST.evaluate(Expr->arg_begin(), Expr->arg_end(), Elts);
37 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts) { argument
42 ST.evaluate(*Expr->arg_begin(), Add);
43 ST.evaluate(Expr->arg_begin() + 1, Expr->arg_end(), Sub);
52 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts) { argument
56 ST.evaluate(Expr->arg_begin()[0], S1);
57 ST.evaluate(Expr->arg_begin()[1], S2);
66 virtual void apply2(SetTheory &ST, DagInit *Expr,
70 void apply(SetTheory &ST, DagIni argument
84 apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, RecSet &Elts) argument
96 apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, RecSet &Elts) argument
113 apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, RecSet &Elts) argument
132 apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N, RecSet &Elts) argument
144 apply(SetTheory &ST, DagInit *Expr, RecSet &Elts) argument
162 apply(SetTheory &ST, DagInit *Expr, RecSet &Elts) argument
227 expand(SetTheory &ST, Record *Def, RecSet &Elts) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DValue.cpp140 static bool getSymTab(Value *V, ValueSymbolTable *&ST) { argument
141 ST = 0;
145 ST = &PP->getValueSymbolTable();
148 ST = &P->getValueSymbolTable();
151 ST = &P->getValueSymbolTable();
154 ST = &P->getValueSymbolTable();
190 ValueSymbolTable *ST; local
191 if (getSymTab(this, ST))
194 if (!ST) { // No symbol table to update? Just do the change.
218 ST
236 ValueSymbolTable *ST = 0; local
[all...]
H A DSymbolTableListTraitsImpl.h72 if (ValueSymbolTable *ST = TraitsClass::getSymTab(Owner))
73 ST->reinsertValue(V);
81 if (ValueSymbolTable *ST = TraitsClass::getSymTab(getListOwner()))
82 ST->removeValueName(V->getValueName());
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/libdes/src/
H A DDES.xs71 #include "EXTERN.h" #include "perl.h" #include "XSUB.h" #include "des.h" #define deschar char static STRLEN len; static int not_here(s) char *s; { croak("%s not implemented on this architecture", s); return -1; } MODULE = DES PACKAGE = DES PREFIX = des_ char * des_crypt(buf,salt) char * buf char * salt void des_set_odd_parity(key) des_cblock * key PPCODE: { SV *s; s=sv_newmortal(); sv_setpvn(s,(char *)key,8); des_set_odd_parity((des_cblock *)SvPV(s,na)); PUSHs(s); } int des_is_weak_key(key) des_cblock * key des_key_schedule des_set_key(key) des_cblock * key CODE: des_set_key(key,RETVAL); OUTPUT: RETVAL des_cblock des_ecb_encrypt(input,ks,encrypt) des_cblock * input des_key_schedule * ks int encrypt CODE: des_ecb_encrypt(input,&RETVAL,*ks,encrypt); OUTPUT: RETVAL void des_cbc_encrypt(input,ks,ivec,encrypt) char * input des_key_schedule * ks des_cblock * ivec int encrypt PPCODE: { SV *s; STRLEN len,l; char *c; l=SvCUR(ST(0)); len=((((unsigned long)l)+7)/8)*8; s=sv_newmortal(); sv_setpvn(s,"",0); SvGROW(s,len); SvCUR_set(s,len); c=(char *)SvPV(s,na); des_cbc_encrypt((des_cblock *)input,(des_cblock *)c, l,*ks,ivec,encrypt); sv_setpvn(ST(2),(char *)c[len-8],8); PUSHs(s); } void des_cbc3_encrypt(input,ks1,ks2,ivec1,ivec2,encrypt) char * input des_key_schedule * ks1 des_key_schedule * ks2 des_cblock * ivec1 des_cblock * ivec2 int encrypt PPCODE: { SV *s; STRLEN len,l; l=SvCUR(ST(0)); len=((((unsigned long)l)+7)/8)*8; s=sv_newmortal(); sv_setpvn(s,"",0); SvGROW(s,len); SvCUR_set(s,len); des_3cbc_encrypt((des_cblock *)input,(des_cblock *)SvPV(s,na), l,*ks1,*ks2,ivec1,ivec2,encrypt); sv_setpvn(ST(3),(char *)ivec1,8); sv_setpvn(ST(4),(char *)ivec2,8); PUSHs(s); } void des_cbc_cksum(input,ks,ivec) char * input des_key_schedule * ks des_cblock * ivec PPCODE: { SV *s1,*s2; STRLEN len,l; des_cblock c; unsigned long i1,i2; s1=sv_newmortal(); s2=sv_newmortal(); l=SvCUR(ST(0)); des_cbc_cksum((des_cblock *)input,(des_cblock *)c, l,*ks,ivec); i1=c[4]|(c[5]<<8)|(c[6]<<16)|(c[7]<<24); i2=c[0]|(c[1]<<8)|(c[2]<<16)|(c[3]<<24); sv_setiv(s1,i1); sv_setiv(s2,i2); sv_setpvn(ST(2),(char *)c,8); PUSHs(s1); PUSHs(s2); } void des_cfb_encrypt(input,numbits,ks,ivec,encrypt) char * input int numbits des_key_schedule * ks des_cblock * ivec int encrypt PPCODE: { SV *s; STRLEN len; char *c; len=SvCUR(ST(0)); s=sv_newmortal(); sv_setpvn(s,"",0); SvGROW(s,len); SvCUR_set(s,len); c=(char *)SvPV(s,na); des_cfb_encrypt((unsigned char *)input,(unsigned char *)c, (int)numbits,(long)len,*ks,ivec,encrypt); sv_setpvn(ST(3),(char *)ivec,8); PUSHs(s); } des_cblock * des_ecb3_encrypt(input,ks1,ks2,encrypt) des_cblock * input des_key_schedule * ks1 des_key_schedule * ks2 int encrypt CODE: { des_cblock c; des_3ecb_encrypt((des_cblock *)input,(des_cblock *)&c, *ks1,*ks2,encrypt); RETVAL= &c; } OUTPUT: RETVAL void des_ofb_encrypt(input,numbits,ks,ivec) unsigned char * input int numbits des_key_schedule * ks des_cblock * ivec PPCODE: { SV *s; STRLEN len,l; unsigned char *c; len=SvCUR(ST(
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/tests/data/ok/peg_cparam-critcl/
H A D0_basic_arithmetic127 long int ST;
476 long int ST;
555 p->ST = 0;
594 p->ST = 0;
747 return p->ST;
938 p->ST = 1;
946 p->ST = 0;
955 p->ST = 1;
961 p->ST = 0;
966 p->ST
[all...]
H A D10_notahead127 long int ST;
476 long int ST;
555 p->ST = 0;
594 p->ST = 0;
747 return p->ST;
938 p->ST = 1;
946 p->ST = 0;
955 p->ST = 1;
961 p->ST = 0;
966 p->ST
[all...]
H A D1_functions127 long int ST;
476 long int ST;
555 p->ST = 0;
594 p->ST = 0;
747 return p->ST;
938 p->ST = 1;
946 p->ST = 0;
955 p->ST = 1;
961 p->ST = 0;
966 p->ST
[all...]
H A D4_choice127 long int ST;
476 long int ST;
555 p->ST = 0;
594 p->ST = 0;
747 return p->ST;
938 p->ST = 1;
946 p->ST = 0;
955 p->ST = 1;
961 p->ST = 0;
966 p->ST
[all...]
H A D5_sequence127 long int ST;
476 long int ST;
555 p->ST = 0;
594 p->ST = 0;
747 return p->ST;
938 p->ST = 1;
946 p->ST = 0;
955 p->ST = 1;
961 p->ST = 0;
966 p->ST
[all...]
H A D6_optional127 long int ST;
476 long int ST;
555 p->ST = 0;
594 p->ST = 0;
747 return p->ST;
938 p->ST = 1;
946 p->ST = 0;
955 p->ST = 1;
961 p->ST = 0;
966 p->ST
[all...]
H A D7_kleene127 long int ST;
476 long int ST;
555 p->ST = 0;
594 p->ST = 0;
747 return p->ST;
938 p->ST = 1;
946 p->ST = 0;
955 p->ST = 1;
961 p->ST = 0;
966 p->ST
[all...]
H A D8_pkleene127 long int ST;
476 long int ST;
555 p->ST = 0;
594 p->ST = 0;
747 return p->ST;
938 p->ST = 1;
946 p->ST = 0;
955 p->ST = 1;
961 p->ST = 0;
966 p->ST
[all...]
H A D9_ahead127 long int ST;
476 long int ST;
555 p->ST = 0;
594 p->ST = 0;
747 return p->ST;
938 p->ST = 1;
946 p->ST = 0;
955 p->ST = 1;
961 p->ST = 0;
966 p->ST
[all...]
H A D2_fun_arithmetic127 long int ST;
476 long int ST;
555 p->ST = 0;
594 p->ST = 0;
747 return p->ST;
938 p->ST = 1;
946 p->ST = 0;
955 p->ST = 1;
961 p->ST = 0;
966 p->ST
[all...]
/macosx-10.9.5/CPANInternal-140/Digest-SHA/
H A DSHA.xs81 data = (unsigned char *) (SvPV(ST(i), len));
94 ST(0) = sv_2mortal(newSVpv(result, len));
124 key = (unsigned char *) (SvPV(ST(items-1), len));
128 data = (unsigned char *) (SvPV(ST(i), len));
141 ST(0) = sv_2mortal(newSVpv(result, len));
159 ST(0) = sv_2mortal(newSViv(result));
173 data = (unsigned char *) (SvPV(ST(i), len));
201 ST(0) = sv_2mortal(newSVpv(result, len));
/macosx-10.9.5/tcl-102/tcl_ext/tls/tls/tests/
H A Dkeytest1.tcl17 tls::misc req 1024 $keyfile $certfile [list C CCC ST STTT L LLLL O OOOO OU OUUUU CN CNNNN Email some@email.com days 730 serial 12]

Completed in 771 milliseconds

1234567