Home
last modified time | relevance | path

Searched refs:objs (Results 1 – 25 of 187) sorted by relevance

12345678

/external/python/cpython2/Modules/zlib/
DMakefile.in206 -@mkdir objs 2>/dev/null || test -d objs
207 $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/adler32.o $(SRCDIR)adler32.c
208 -@mv objs/adler32.o $@
211 -@mkdir objs 2>/dev/null || test -d objs
212 $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/crc32.o $(SRCDIR)crc32.c
213 -@mv objs/crc32.o $@
216 -@mkdir objs 2>/dev/null || test -d objs
217 $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/deflate.o $(SRCDIR)deflate.c
218 -@mv objs/deflate.o $@
221 -@mkdir objs 2>/dev/null || test -d objs
[all …]
/external/u-boot/scripts/
DMakefile.lib51 multi-used-y := $(sort $(foreach m,$(obj-y), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
52 multi-used-m := $(sort $(foreach m,$(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
58 multi-objs-y := $(foreach m, $(multi-used-y), $($(m:.o=-objs)) $($(m:.o=-y)))
59 multi-objs-m := $(foreach m, $(multi-used-m), $($(m:.o=-objs)) $($(m:.o=-y)))
60 multi-objs := $(multi-objs-y) $(multi-objs-m)
67 obj-dirs := $(dir $(multi-objs) $(obj-y))
70 real-objs-y := $(foreach m, $(filter-out $(subdir-obj-y), $(obj-y)), $(if $(strip $($(m:.o=-objs)) …
71 real-objs-m := $(foreach m, $(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs))…
83 real-objs-y := $(addprefix $(obj)/,$(real-objs-y))
84 real-objs-m := $(addprefix $(obj)/,$(real-objs-m))
[all …]
DMakefile.build145 $(real-objs-m) : part-of-module := y
146 $(real-objs-m:.o=.i) : part-of-module := y
147 $(real-objs-m:.o=.s) : part-of-module := y
148 $(real-objs-m:.o=.lst): part-of-module := y
150 $(real-objs-m) : quiet_modtag := [M]
151 $(real-objs-m:.o=.i) : quiet_modtag := [M]
152 $(real-objs-m:.o=.s) : quiet_modtag := [M]
153 $(real-objs-m:.o=.lst): quiet_modtag := [M]
160 $(multi-objs-m) : modname = $(modname-multi)
161 $(multi-objs-m:.o=.i) : modname = $(modname-multi)
[all …]
DMakefile.host29 $(if $($(m)-objs)$($(m)-cxxobjs)$($(m)-sharedobjs),,$(m)))
33 $(if $($(m)-cxxobjs),,$(if $($(m)-objs),$(m))))
40 host-cobjs := $(sort $(foreach m,$(__hostprogs),$($(m)-objs)))
103 $(addprefix $(obj)/,$($(@F)-objs)) \
107 $(call multi_depend, $(host-cmulti), , -objs)
120 $(foreach o,objs cxxobjs,\
125 $(call multi_depend, $(host-cxxmulti), , -objs -cxxobjs)
/external/skia/bench/
DGrMemoryPoolBench.cpp42 T* objs[kMaxObjects]; in run_stack() local
46 objs[j] = pool ? (T*) pool->allocate(sizeof(T)) : new T; in run_stack()
51 pool->release(objs[j]); in run_stack()
53 delete objs[j]; in run_stack()
66 T* objs[kMaxObjects]; in run_queue() local
70 objs[j] = pool ? (T*) pool->allocate(sizeof(T)) : new T; in run_queue()
75 pool->release(objs[j]); in run_queue()
77 delete objs[j]; in run_queue()
90 T* objs[kMaxObjects]; in run_pushpop() local
95 objs[j] = (T*) pool->allocate(sizeof(T)); in run_pushpop()
[all …]
/external/arm-optimized-routines/math/
DDir.mk33 math-lib-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(math-lib-srcs)))
34 math-test-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(math-test-srcs)))
35 math-host-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(math-test-host-srcs)))
36 math-target-objs := $(math-lib-objs) $(math-test-objs)
37 math-objs := $(math-target-objs) $(math-target-objs:%.o=%.os) $(math-host-objs)
40 $(math-objs) \
48 $(math-objs): $(math-includes)
49 $(math-objs): CFLAGS_ALL += $(math-cflags)
51 $(math-host-objs): CC = $(HOST_CC)
52 $(math-host-objs): CFLAGS_ALL = $(HOST_CFLAGS)
[all …]
/external/boringssl/src/crypto/obj/
Dobjects.go196 objs := &objects{
201 objs.byNID[0] = object{
208 objs.nameToNID["undef"] = 0
335 nid = len(objs.byNID)
336 objs.byNID = append(objs.byNID, object{})
339 objs.byNID[nid] = obj
340 objs.nameToNID[obj.name] = nid
350 return objs, nil
353 func writeNumbers(path string, objs *objects) error {
360 for nid, obj := range objs.byNID {
[all …]
/external/arm-optimized-routines/string/
DDir.mk33 string-lib-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(string-lib-srcs)))
34 string-test-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(string-test-srcs)))
36 string-objs := \
37 $(string-lib-objs) \
38 $(string-lib-objs:%.o=%.os) \
39 $(string-test-objs) \
42 $(string-objs) \
49 $(string-objs): $(string-includes)
50 $(string-objs): CFLAGS_ALL += $(string-cflags)
52 build/lib/libstringlib.so: $(string-lib-objs:%.o=%.os)
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DMessageRegressionTest.java142 Object[] objs = messageFormatter.parse(tempBuffer, status); in Test4031438() local
143 if (objs[paramArray.length] != null) in Test4031438()
145 for (int i = 0; i < objs.length; i++) { in Test4031438()
146 if (objs[i] != null && !objs[i].toString().equals(paramArray[i].toString())) { in Test4031438()
147 errln("Parse failed on object " + objs[i] + " at index : " + i); in Test4031438()
178 Object[] objs = fmt.parse(str, pos); in Test4052223() local
186 if (objs != null) { in Test4052223()
449 Object[] objs = mf.parse(formatted, new ParsePosition(0)); in Test4118592() local
452 if (objs == null) logln(" null"); in Test4118592()
453 else logln(" " + objs[0]); in Test4118592()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DMessageRegressionTest.java145 Object[] objs = messageFormatter.parse(tempBuffer, status); in Test4031438() local
146 if (objs[paramArray.length] != null) in Test4031438()
148 for (int i = 0; i < objs.length; i++) { in Test4031438()
149 if (objs[i] != null && !objs[i].toString().equals(paramArray[i].toString())) { in Test4031438()
150 errln("Parse failed on object " + objs[i] + " at index : " + i); in Test4031438()
181 Object[] objs = fmt.parse(str, pos); in Test4052223() local
189 if (objs != null) { in Test4052223()
452 Object[] objs = mf.parse(formatted, new ParsePosition(0)); in Test4118592() local
455 if (objs == null) logln(" null"); in Test4118592()
456 else logln(" " + objs[0]); in Test4118592()
[all …]
/external/u-boot/board/xilinx/zynq/
DMakefile11 init-objs := ps_init_gpl.o
16 ifeq ($(init-objs),)
18 init-objs := $(if $(wildcard $(srctree)/$(src)/$(hw-platform-y)/ps7_init_gpl.c),\
22 ifeq ($(init-objs),)
24 init-objs := ps7_init_gpl.o
35 obj-$(CONFIG_SPL_BUILD) += $(init-objs)
/external/u-boot/tools/
DMakefile37 envcrc-objs := envcrc.o lib/crc32.o env/embedded.o lib/sha1.o
43 gen_ethaddr_crc-objs := gen_ethaddr_crc.o lib/crc8.o
53 mkenvimage-objs := mkenvimage.o os_support.o lib/crc32.o
81 dumpimage-mkimage-objs := aisimage.o \
121 dumpimage-objs := $(dumpimage-mkimage-objs) dumpimage.o
122 mkimage-objs := $(dumpimage-mkimage-objs) mkimage.o
123 fit_info-objs := $(dumpimage-mkimage-objs) fit_info.o
124 fit_check_sign-objs := $(dumpimage-mkimage-objs) fit_check_sign.o
125 file2include-objs := file2include.o
/external/u-boot/board/xilinx/zynqmp/
DMakefile11 init-objs := ps_init_gpl.o
16 ifeq ($(init-objs),)
18 init-objs := $(if $(wildcard $(srctree)/$(src)/$(hw-platform-y)/psu_init_gpl.c),\
22 ifeq ($(init-objs),)
24 init-objs := psu_init_gpl.o
33 obj-y += $(init-objs)
/external/libxml2/VxWorks/
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
/external/jemalloc/src/
Dquarantine.c28 size = offsetof(quarantine_t, objs) + ((ZU(1) << lg_maxobjs) * in quarantine_init()
77 memcpy(ret->objs, &quarantine->objs[quarantine->first], in quarantine_grow()
85 memcpy(ret->objs, &quarantine->objs[quarantine->first], ncopy_a in quarantine_grow()
87 memcpy(&ret->objs[ncopy_a], quarantine->objs, ncopy_b * in quarantine_grow()
99 quarantine_obj_t *obj = &quarantine->objs[quarantine->first]; in quarantine_drain_one()
147 quarantine_obj_t *obj = &quarantine->objs[offset]; in quarantine()
/external/angle/src/compiler/translator/
Dgen_builtin_symbols.py607 self.objs = OrderedDict()
623 if name_hash not in self.objs:
624 self.objs[name_hash] = OrderedDict()
626 self.objs[name_hash]['name'] = name
630 self.objs[name_hash]['essl_level'] = essl_level
632 self.objs[name_hash]['glsl_level'] = glsl_level
633 self.objs[name_hash]['symbol'] = symbol
634 self.objs[name_hash]['shader_type'] = shader_type
637 if ('essl_ext_symbol' in self.objs[name_hash] and
638 self.objs[name_hash]['essl_ext_symbol'] != symbol):
[all …]
/external/icu/icu4c/as_is/os400/
Diculd.c62 char objs[4024]; in main() local
77 objs[0]=0; in main()
150 strcat(objs,outputdir); in main()
151 strcat(objs,"/"); in main()
152 strncat(objs,b,nlen); in main()
153 strcat(objs, " "); in main()
215 objs, in main()
/external/u-boot/post/lib_powerpc/fpu/
DMakefile6 objs-before-objcopy := 20001122-1.o 20010114-2.o 20010226-1.o 980619-1.o \
8 targets += $(objs-before-objcopy)
11 $(foreach m, $(objs-before-objcopy), $(eval CFLAGS_REMOVE_$m := -msoft-float))
14 obj-y := $(objs-before-objcopy:.o=_.o)
/external/icu/icu4c/source/test/intltest/
Dmsfmrgts.cpp207 Formattable *objs = messageFormatter->parse(tempBuffer, pp, count); in Test4031438() local
217 Formattable obj = objs[i]; in Test4031438()
248 errln("Parse failed on object " + objs[i].getString(temp1) + " at index : " + i); in Test4031438()
253 delete [] objs; in Test4031438()
705 Formattable *objs = 0; in Test4118592() local
716 objs = mf->parse(formatted, pp, count); in Test4118592()
720 if (objs == NULL) in Test4118592()
724 if(objs[0].getType() == Formattable::kString) in Test4118592()
725 logln((UnicodeString)" " + objs[0].getString(temp)); in Test4118592()
727 …logln((UnicodeString)" " + (objs[0].getType() == Formattable::kLong ? objs[0].getLong() : objs[0]… in Test4118592()
[all …]
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
DTweenManager.java217 private static int getTweensCount(List<BaseTween<?>> objs) { in getTweensCount() argument
219 for (int i=0, n=objs.size(); i<n; i++) { in getTweensCount()
220 BaseTween<?> obj = objs.get(i); in getTweensCount()
227 private static int getTimelinesCount(List<BaseTween<?>> objs) { in getTimelinesCount() argument
229 for (int i=0, n=objs.size(); i<n; i++) { in getTimelinesCount()
230 BaseTween<?> obj = objs.get(i); in getTimelinesCount()
/external/boringssl/src/crypto/x509/
Dx509_lu.c192 ret->objs = sk_X509_OBJECT_new(x509_object_cmp); in X509_STORE_new()
193 if (ret->objs == NULL) in X509_STORE_new()
212 if (ret->objs) in X509_STORE_new()
213 sk_X509_OBJECT_free(ret->objs); in X509_STORE_new()
263 sk_X509_OBJECT_pop_free(vfy->objs, cleanup); in X509_STORE_free()
307 tmp = X509_OBJECT_retrieve_by_subject(ctx->objs, type, name); in X509_STORE_get_by_subject()
353 if (X509_OBJECT_retrieve_match(ctx->objs, obj)) { in X509_STORE_add_cert()
358 } else if (!sk_X509_OBJECT_push(ctx->objs, obj)) { in X509_STORE_add_cert()
389 if (X509_OBJECT_retrieve_match(ctx->objs, obj)) { in X509_STORE_add_crl()
394 } else if (!sk_X509_OBJECT_push(ctx->objs, obj)) { in X509_STORE_add_crl()
[all …]
/external/python/cpython3/Modules/
Dld_so_aix.in123 objs="$objs $1"
139 if test -z "$objs"; then
184 $makexp $expfile "$objfile" $objs
/external/python/cpython2/Modules/
Dld_so_aix.in123 objs="$objs $1"
139 if test -z "$objs"; then
184 $makexp $expfile "$objfile" $objs
/external/swiftshader/third_party/subzero/pydir/
Dcrosstest.py118 objs = []
184 objs.append(obj_sz)
198 objs.append(obj_llc)
202 objs.append((
231 shellcmd([compiler] + target_params + [args.driver] + objs +
272 objs.append(obj_llc)
274 LinkNonsfi(objs, os.path.join(args.dir, args.output), args.target)
276 LinkSandbox(objs, os.path.join(args.dir, args.output), args.target)
278 LinkNative(objs, os.path.join(args.dir, args.output), args.target)
/external/freetype/builds/windows/visualce/
Dfreetype.dsp44 # PROP Output_Dir "..\..\..\objs\release"
45 # PROP Intermediate_Dir "..\..\..\objs\release"
57 # ADD LIB32 /nologo /out:"..\..\..\objs\freetype2101.lib"
68 # PROP Output_Dir "..\..\..\objs\debug"
69 # PROP Intermediate_Dir "..\..\..\objs\debug"
81 # ADD LIB32 /nologo /out:"..\..\..\objs\freetype2101_D.lib"
92 # PROP Output_Dir "..\..\..\objs\debug_mt"
93 # PROP Intermediate_Dir "..\..\..\objs\debug_mt"
106 # ADD LIB32 /nologo /out:"..\..\..\objs\freetype2101MT_D.lib"
117 # PROP Output_Dir "..\..\..\objs\release_mt"
[all …]

12345678