Home
last modified time | relevance | path

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

1234567891011

/external/rust/crates/libz-sys/src/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/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/skia/bench/
DGrMemoryPoolBench.cpp46 T* objs[kMaxObjects]; in run_stack() local
50 objs[j] = pool ? (T*) pool->allocate(sizeof(T)) : new T; in run_stack()
55 pool->release(objs[j]); in run_stack()
57 delete objs[j]; in run_stack()
70 T* objs[kMaxObjects]; in run_queue() local
74 objs[j] = pool ? (T*) pool->allocate(sizeof(T)) : new T; in run_queue()
79 pool->release(objs[j]); in run_queue()
81 delete objs[j]; in run_queue()
94 T* objs[kMaxObjects]; in run_pushpop() local
99 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/llvm-project/libc/AOR_v20.02/math/
DDir.mk34 math-lib-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(math-lib-srcs)))
35 math-test-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(math-test-srcs)))
36 math-host-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(math-test-host-srcs)))
37 math-target-objs := $(math-lib-objs) $(math-test-objs)
38 math-objs := $(math-target-objs) $(math-target-objs:%.o=%.os) $(math-host-objs)
41 $(math-objs) \
49 $(math-objs): $(math-includes)
50 $(math-objs): CFLAGS_ALL += $(math-cflags)
52 $(math-host-objs): CC = $(HOST_CC)
53 $(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
351 if len(objs.byNID) > 0xffff {
355 return objs, nil
358 func writeNumbers(path string, objs *objects) error {
[all …]
/external/arm-optimized-routines/string/
DDir.mk48 string-lib-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(string-lib-srcs)))
49 string-test-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(string-test-srcs)))
50 string-bench-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(string-bench-srcs)))
52 string-objs := \
53 $(string-lib-objs) \
54 $(string-lib-objs:%.o=%.os) \
55 $(string-test-objs) \
56 $(string-bench-objs)
59 $(string-objs) \
67 $(string-objs): $(string-includes)
[all …]
/external/arm-optimized-routines/networking/
DDir.mk27 networking-lib-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(networking-lib-srcs)))
28 networking-test-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(networking-test-srcs)))
30 networking-objs := \
31 $(networking-lib-objs) \
32 $(networking-lib-objs:%.o=%.os) \
33 $(networking-test-objs) \
36 $(networking-objs) \
43 $(networking-objs): $(networking-includes)
44 $(networking-objs): CFLAGS_ALL += $(networking-cflags)
46 build/lib/libnetworking.so: $(networking-lib-objs:%.o=%.os)
[all …]
/external/llvm-project/libc/AOR_v20.02/networking/
DDir.mk28 networking-lib-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(networking-lib-srcs)))
29 networking-test-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(networking-test-srcs)))
31 networking-objs := \
32 $(networking-lib-objs) \
33 $(networking-lib-objs:%.o=%.os) \
34 $(networking-test-objs) \
37 $(networking-objs) \
44 $(networking-objs): $(networking-includes)
45 $(networking-objs): CFLAGS_ALL += $(networking-cflags)
47 build/lib/libnetworking.so: $(networking-lib-objs:%.o=%.os)
[all …]
/external/llvm-project/libc/AOR_v20.02/string/
DDir.mk41 string-lib-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(string-lib-srcs)))
42 string-test-objs := $(patsubst $(S)/%,$(B)/%.o,$(basename $(string-test-srcs)))
44 string-objs := \
45 $(string-lib-objs) \
46 $(string-lib-objs:%.o=%.os) \
47 $(string-test-objs) \
50 $(string-objs) \
57 $(string-objs): $(string-includes)
58 $(string-objs): CFLAGS_ALL += $(string-cflags)
60 build/lib/libstringlib.so: $(string-lib-objs:%.o=%.os)
[all …]
/external/angle/src/compiler/translator/
Dgen_builtin_symbols.py749 self.objs = OrderedDict()
765 if name_hash not in self.objs:
766 self.objs[name_hash] = OrderedDict()
768 self.objs[name_hash]['name'] = name
771 if 'symbol' in self.objs[name_hash] and self.objs[name_hash]['symbol'] != symbol:
773 if 'symbol2' not in self.objs[name_hash]:
775 self.objs[name_hash]['essl_level2'] = essl_level
777 self.objs[name_hash]['glsl_level2'] = glsl_level
778 self.objs[name_hash]['symbol2'] = symbol
779 self.objs[name_hash]['shader_type2'] = shader_type
[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/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/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/oss-fuzz/projects/nginx/
Dmake_fuzzers13 ngx_objs=`echo objs/src/fuzz/wrappers.o $ngx_all_objs $ngx_modules_obj \
19 fuzzers: objs/http_request_fuzzer
21 objs/src/fuzz/wrappers.o:
22 \$(CC) $ngx_compile_opt \$(CFLAGS) -o objs/src/fuzz/wrappers.o src/fuzz/wrappers.c
24 objs/http_request_fuzzer: $ngx_deps_fuzz
27 -o objs/http_request_fuzzer \
/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/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/abseil-cpp/absl/random/
Dexamples_test.cc28 std::vector<int> objs = {10, 20, 30, 40, 50}; in TEST() local
31 auto elem = objs[absl::Uniform(gen, 0u, objs.size())]; in TEST()
55 std::shuffle(std::begin(objs), std::end(objs), gen); in TEST()
/external/openscreen/third_party/abseil/src/absl/random/
Dexamples_test.cc28 std::vector<int> objs = {10, 20, 30, 40, 50}; in TEST() local
31 auto elem = objs[absl::Uniform(gen, 0u, objs.size())]; in TEST()
55 std::shuffle(std::begin(objs), std::end(objs), gen); in TEST()
/external/libtextclassifier/abseil-cpp/absl/random/
Dexamples_test.cc28 std::vector<int> objs = {10, 20, 30, 40, 50}; in TEST() local
31 auto elem = objs[absl::Uniform(gen, 0u, objs.size())]; in TEST()
55 std::shuffle(std::begin(objs), std::end(objs), gen); in TEST()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/random/
Dexamples_test.cc28 std::vector<int> objs = {10, 20, 30, 40, 50}; in TEST() local
31 auto elem = objs[absl::Uniform(gen, 0u, objs.size())]; in TEST()
55 std::shuffle(std::begin(objs), std::end(objs), gen); in TEST()
/external/webrtc/third_party/abseil-cpp/absl/random/
Dexamples_test.cc28 std::vector<int> objs = {10, 20, 30, 40, 50}; in TEST() local
31 auto elem = objs[absl::Uniform(gen, 0u, objs.size())]; in TEST()
55 std::shuffle(std::begin(objs), std::end(objs), gen); in TEST()
/external/angle/third_party/abseil-cpp/absl/random/
Dexamples_test.cc28 std::vector<int> objs = {10, 20, 30, 40, 50}; in TEST() local
31 auto elem = objs[absl::Uniform(gen, 0u, objs.size())]; in TEST()
55 std::shuffle(std::begin(objs), std::end(objs), gen); in TEST()
/external/python/cpython2/Modules/
Dld_so_aix.in123 objs="$objs $1"
139 if test -z "$objs"; then
184 $makexp $expfile "$objfile" $objs
/external/openscreen/util/
Dhashing.h14 uint64_t ComputeAggregateHash(uint64_t seed, const T&... objs) { in ComputeAggregateHash() argument
26 std::vector<uint64_t> hashes{std::hash<T>()(objs)...}; in ComputeAggregateHash()
34 uint64_t ComputeAggregateHash(const T&... objs) { in ComputeAggregateHash() argument
37 return ComputeAggregateHash(default_seed, objs...); in ComputeAggregateHash()

1234567891011