Searched refs:objs (Results 1 - 25 of 119) sorted by relevance

12345

/macosx-10.10/ruby-106/ruby/ext/digest/md5/
H A Dextconf.rb10 $objs = [ "md5init.#{$OBJEXT}" ]
18 $objs << "md5ossl.#{$OBJEXT}"
21 $objs << "md5cc.#{$OBJEXT}"
/macosx-10.10/ruby-106/ruby/ext/digest/rmd160/
H A Dextconf.rb10 $objs = [ "rmd160init.#{$OBJEXT}" ]
18 $objs << "rmd160ossl.#{$OBJEXT}"
20 $objs << "rmd160.#{$OBJEXT}"
/macosx-10.10/ruby-106/ruby/ext/digest/sha1/
H A Dextconf.rb10 $objs = [ "sha1init.#{$OBJEXT}" ]
18 $objs << "sha1ossl.#{$OBJEXT}"
20 $objs << "sha1cc.#{$OBJEXT}"
/macosx-10.10/ruby-106/ruby/ext/digest/sha2/
H A Dextconf.rb10 $objs = [ "sha2init.#{$OBJEXT}" ]
20 $objs << "sha2ossl.#{$OBJEXT}"
24 $objs << "sha2.#{$OBJEXT}"
/macosx-10.10/ruby-106/ruby/lib/irb/
H A Doutput-method.rb57 # Calls #print on each element in the given +objs+, followed by a newline
59 def puts(*objs)
60 for obj in objs
66 # Prints the given +objs+ calling Object#inspect on each.
69 def pp(*objs)
70 puts(*objs.collect{|obj| obj.inspect})
73 # Prints the given +objs+ calling Object#inspect on each and appending the
77 def ppx(prefix, *objs)
78 puts(*objs.collect{|obj| prefix+obj.inspect})
H A Dnotifier.rb74 def puts(*objs)
76 @base_notifier.puts(*objs.collect{|obj| prefix + obj.to_s})
83 def pp(*objs)
85 @base_notifier.ppx @prefix, *objs
93 def ppx(prefix, *objs)
95 @base_notifier.ppx @prefix+prefix, *objs
/macosx-10.10/ruby-106/ruby/bcc32/
H A Dmkexports.rb11 def each_line(objs, &block)
12 objs.each do |obj|
18 def each_export(objs)
19 objdump(objs) do |l|
/macosx-10.10/ruby-106/ruby/ext/dl/callback/
H A Dextconf.rb10 $objs = callback_objs
/macosx-10.10/tcl-105/tk/tk/unix/
H A DtkUnixDialog.c48 Tcl_Obj *cmdObj, **objs;
53 objs = (Tcl_Obj **) ckalloc(sizeof(Tcl_Obj*) * (unsigned)(objc+1));
54 objs[0] = cmdObj;
55 memcpy(objs+1, objv, sizeof(Tcl_Obj *) * (unsigned)objc);
57 result = Tcl_EvalObjv(interp, objc+1, objs, 0);
60 ckfree((char *) objs);
47 Tcl_Obj *cmdObj, **objs; local
/macosx-10.10/ruby-106/ruby/win32/
H A Dmkexports.rb24 def self.extract(objs, *rest)
25 create(objs).exports(*rest)
36 def initialize(objs)
40 each_export(objs) do |internal, export|
82 def each_export(objs)
85 def objdump(objs, &block)
86 if objs.empty?
89 each_line(objs, &block)
99 def each_line(objs, &block)
100 IO.popen(%w"dumpbin -symbols -exports" + objs) d
[all...]
/macosx-10.10/OpenSSL098-52/src/fips/
H A DMakefile96 objs="fips_start.o $(LIBOBJ) $(FIPS_EX_OBJ) $$CPUID $$FIPS_ASM"; \
99 objs="$$objs `sed "$$script" $$i`"; \
101 objs="$$objs fips_end.o" ; \
105 set -x; ${FIPS_SITE_LD} -r -o $@ $$objs; \
107 set -x; $(CC) $$cflags -r -nostdlib -o $@ $$objs ; \
109 HP-UX|OSF1|SunOS) set -x; /usr/ccs/bin/ld -r -o $@ $$objs ;; \
110 *) set -x; $(CC) $$cflags -r -o $@ $$objs ;; \
/macosx-10.10/libxml2-26/libxml2/VxWorks/
H A DMakefile54 mkdir -p objs
58 lib$(NAME).so : init $(patsubst %.o, objs/%.o, $(OBJS))
59 $(CC) $(FLAGS) $(LIB_LDFLAGS) -shared -o $@ $(patsubst %.o, objs/%.o, $(OBJS))
61 (NAME).out : init $(patsubst %.o, objs/%.o, $(OBJS))
62 $(CC) $(FLAGS) -o $@ $(patsubst %.o, objs/%.o, $(OBJS))
64 objs/%.o: src/%.c
68 rm -fR *.so objs
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/VxWorks/
H A DMakefile54 mkdir -p objs
58 lib$(NAME).so : init $(patsubst %.o, objs/%.o, $(OBJS))
59 $(CC) $(FLAGS) $(LIB_LDFLAGS) -shared -o $@ $(patsubst %.o, objs/%.o, $(OBJS))
61 (NAME).out : init $(patsubst %.o, objs/%.o, $(OBJS))
62 $(CC) $(FLAGS) -o $@ $(patsubst %.o, objs/%.o, $(OBJS))
64 objs/%.o: src/%.c
68 rm -fR *.so objs
/macosx-10.10/ruby-106/ruby/ext/ripper/
H A Dextconf.rb12 $objs = %w(ripper.o)
/macosx-10.10/hfs-285/CopyHFSMeta/
H A DGather.c73 HFSDataObject *objs = NULL, *op; local
83 objs = malloc(sizeof(HFSDataObject) * vop->count);
84 if (objs == NULL) {
89 op = objs;
114 gzwrite(outf, objs, sizeof(HFSDataObject) * vop->count);
138 if (objs)
139 free(objs);
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkSelect.c687 Tcl_Obj **objs;
713 for (count = objc-2, objs = ((Tcl_Obj **)objv)+2; count > 0;
714 count-=2, objs+=2) {
715 string = Tcl_GetString(objs[0]);
725 if (Tcl_GetIndexFromObj(interp, objs[0], clearOptionStrings,
731 path = Tcl_GetString(objs[1]);
734 selName = Tcl_GetString(objs[1]);
740 path = Tcl_GetString(objs[0]);
772 for (count = objc-2, objs = ((Tcl_Obj **)objv)+2; count>0;
773 count-=2, objs
681 Tcl_Obj **objs; local
[all...]
/macosx-10.10/tcl-105/tk84/tk/generic/
H A DtkSelect.c699 Tcl_Obj **objs;
724 for (count = objc-2, objs = ((Tcl_Obj **)objv)+2; count > 0;
725 count-=2, objs+=2) {
726 string = Tcl_GetString(objs[0]);
736 if (Tcl_GetIndexFromObj(interp, objs[0], clearOptionStrings,
742 path = Tcl_GetString(objs[1]);
745 selName = Tcl_GetString(objs[1]);
750 path = Tcl_GetString(objs[0]);
782 for (count = objc-2, objs = ((Tcl_Obj **)objv)+2; count>0;
783 count-=2, objs
693 Tcl_Obj **objs; local
[all...]
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclScan.c575 Tcl_Obj **objs = NULL, *objPtr = NULL;
603 objs = (Tcl_Obj **) ckalloc(sizeof(Tcl_Obj*) * totalVars);
605 objs[i] = NULL;
719 objs[objIndex++] = objPtr;
822 objs[objIndex++] = objPtr;
857 objs[objIndex++] = objPtr;
872 objs[objIndex++] = objPtr;
933 objs[objIndex++] = objPtr;
976 objs[objIndex++] = objPtr;
993 if (objs[
570 Tcl_Obj **objs = NULL, *objPtr = NULL; local
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclScan.c591 Tcl_Obj **objs = NULL, *objPtr = NULL;
619 objs = (Tcl_Obj **) ckalloc(sizeof(Tcl_Obj*) * totalVars);
621 objs[i] = NULL;
727 objs[objIndex++] = objPtr;
850 objs[objIndex++] = objPtr;
885 objs[objIndex++] = objPtr;
900 objs[objIndex++] = objPtr;
1054 objs[objIndex++] = objPtr;
1159 objs[objIndex++] = objPtr;
1175 if (objs[
586 Tcl_Obj **objs = NULL, *objPtr = NULL; local
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/x509/
H A Dx509_lu.c184 ret->objs = sk_X509_OBJECT_new(x509_object_cmp);
203 sk_X509_OBJECT_free(ret->objs);
247 sk_X509_OBJECT_pop_free(vfy->objs, cleanup);
296 tmp=X509_OBJECT_retrieve_by_subject(ctx->objs,type,name);
351 if (X509_OBJECT_retrieve_match(ctx->objs, obj))
358 else sk_X509_OBJECT_push(ctx->objs, obj);
384 if (X509_OBJECT_retrieve_match(ctx->objs, obj))
391 else sk_X509_OBJECT_push(ctx->objs, obj);
527 idx = X509_OBJECT_idx_by_subject(ctx->ctx->objs, X509_LU_X509, xn);
531 for (i = idx; i < sk_X509_OBJECT_num(ctx->ctx->objs);
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/
H A Dlock003.tcl17 set objs 75
46 # $testdir $iter $objs $wait $ldegree $reads &"
49 $testdir $iter $objs $wait $ldegree $reads &]
/macosx-10.10/ruby-106/ruby/ext/-test-/win32/dln/
H A Dextconf.rb2 $objs = ["dlntest.o"]
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dmsfmrgts.cpp203 Formattable *objs = messageFormatter->parse(tempBuffer, pp, count); local
204 //if(objs[7/*params.length*/] != NULL)
213 Formattable obj = objs[i];
242 //if (objs[i] != NULL && objs[i].getString(temp1) != params[i].getString(temp2)) {
244 errln("Parse failed on object " + objs[i].getString(temp1) + " at index : " + i);
249 delete [] objs;
701 Formattable *objs = 0; local
709 //Object[] objs = mf.parse(formatted, new ParsePosition(0));
712 objs
744 Formattable *objs = mf->parse(forParsing, pp, count); local
841 Formattable *objs = mf->parse(texts[i], pp, count); local
884 Formattable objs [] = { local
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_smime/
H A Dcmsutil.c58 * will be done in place (in objs).
61 SecCmsArraySortByDER(void **objs, const SecAsn1Template *objtemplate, void **objs2) argument
69 if (objs == NULL) /* already sorted */
72 num_objs = SecCmsArrayCount((void **)objs);
90 enc_objs[i] = SEC_ASN1EncodeItem(poolp, NULL, objs[i], objtemplate);
96 /* now compare and sort objs by the order of enc_objs */
97 SecCmsArraySort((void **)enc_objs, SecCmsUtilDERCompare, objs, objs2);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_smime/lib/
H A Dcmsutil.c58 * will be done in place (in objs).
61 SecCmsArraySortByDER(void **objs, const SecAsn1Template *objtemplate, void **objs2) argument
69 if (objs == NULL) /* already sorted */
72 num_objs = SecCmsArrayCount((void **)objs);
90 enc_objs[i] = SEC_ASN1EncodeItem(poolp, NULL, objs[i], objtemplate);
96 /* now compare and sort objs by the order of enc_objs */
97 SecCmsArraySort((void **)enc_objs, SecCmsUtilDERCompare, objs, objs2);

Completed in 222 milliseconds

12345