Home
last modified time | relevance | path

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

12345678

/third_party/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 …]
/third_party/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 …]
/third_party/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 …]
/third_party/openssl/Configurations/
Dgentemplate.pm340 # (they end up in @objs) and those that we get indirectly, via other
362 my @objs = ();
367 push @objs, $_;
383 join(",", map { "\n $_" } @objs), "\n"
384 if @objs && $debug_rules;
391 objs => [ @objs, @foreign_objs ],
393 foreach (@objs) {
414 my @objs = ();
419 push @objs, $_;
433 join(",", map { "\n $_" } @objs), "\n"
[all …]
/third_party/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 …]
/third_party/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 …]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
Dgen_builtin_symbols.py754 self.objs = OrderedDict()
770 if name_hash not in self.objs:
771 self.objs[name_hash] = OrderedDict()
773 self.objs[name_hash]['name'] = name
776 if 'symbol' in self.objs[name_hash] and self.objs[name_hash]['symbol'] != symbol:
778 if 'symbol2' not in self.objs[name_hash]:
780 self.objs[name_hash]['essl_level2'] = essl_level
782 self.objs[name_hash]['glsl_level2'] = glsl_level
783 self.objs[name_hash]['symbol2'] = symbol
784 self.objs[name_hash]['shader_type2'] = shader_type
[all …]
/third_party/typescript/tests/baselines/reference/
DobjectLiteralParameterResolution.types3 extend<T>(target: T, ...objs: any[]): T;
4 >extend : { <T>(target: T, ...objs: any[]): T; <T>(deep: boolean, target: T, ...objs: any[]): T; }
6 >objs : any[]
8 extend<T>(deep: boolean, target: T, ...objs: any[]): T;
9 >extend : { <T>(target: T, ...objs: any[]): T; <T>(deep: boolean, target: T, ...objs: any[]): T; }
12 >objs : any[]
20 >$.extend : { <T>(target: T, ...objs: any[]): T; <T>(deep: boolean, target: T, ...objs: any[]): T; }
22 >extend : { <T>(target: T, ...objs: any[]): T; <T>(deep: boolean, target: T, ...objs: any[]): T; }
DcallsOnComplexSignatures.types113objs: { x: number;}[]) => number) | ((...objs: { y: number;}[]) => number), arg2: ((a: { …
115 arg1: ((...objs: {x: number}[]) => number) | ((...objs: {y: number}[]) => number),
116 >arg1 : ((...objs: { x: number;}[]) => number) | ((...objs: { y: number;}[]) => number)
117 >objs : { x: number; }[]
119 >objs : { y: number; }[]
131 … arg3: ((a: {x: number}, ...objs: {y: number}[]) => number) | ((...objs: {x: number}[]) => number),
132 >arg3 : ((a: { x: number;}, ...objs: { y: number;}[]) => number) | ((...objs: { x: number;…
135 >objs : { y: number; }[]
137 >objs : { x: number; }[]
170 >arg1 : ((...objs: { x: number; }[]) => number) | ((...objs: { y: number; }[]) => number)
[all …]
DobjectLiteralParameterResolution.symbols5 extend<T>(target: T, ...objs: any[]): T;
10 >objs : Symbol(objs, Decl(objectLiteralParameterResolution.ts, 1, 24))
13 extend<T>(deep: boolean, target: T, ...objs: any[]): T;
19 >objs : Symbol(objs, Decl(objectLiteralParameterResolution.ts, 2, 39))
/third_party/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 …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/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 …]
/third_party/ffmpeg/tests/
Dvideogen.c76 static VObj objs[NB_OBJS]; variable
87 objs[i].x = myrnd(&seed, w); in gen_image()
88 objs[i].y = myrnd(&seed, h); in gen_image()
89 objs[i].w = myrnd(&seed, w / 4) + 10; in gen_image()
90 objs[i].h = myrnd(&seed, h / 4) + 10; in gen_image()
91 objs[i].r = myrnd(&seed, 256); in gen_image()
92 objs[i].g = myrnd(&seed, 256); in gen_image()
93 objs[i].b = myrnd(&seed, 256); in gen_image()
125 VObj *p = &objs[i]; in gen_image()
/third_party/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
/third_party/ninja/
Dconfigure.py458 objs = [] variable
470 objs += cxx('browse', order_only=built('browse_py.h'))
522 objs += cxx(name, variables=cxxvariables)
528 objs += cxx(name, variables=cxxvariables)
530 objs += cxx('minidump-win32', variables=cxxvariables)
531 objs += cc('getopt')
533 objs += cxx('subprocess-posix')
535 objs += cc('getopt')
537 ninja_lib = n.build(built('ninja.lib'), 'ar', objs)
539 ninja_lib = n.build(built('libninja.a'), 'ar', objs)
[all …]
/third_party/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 …]
/third_party/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()
/third_party/flutter/skia/third_party/externals/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 …]
/third_party/freetype/builds/windows/visualce/
Dfreetype.dsp44 # PROP Output_Dir "..\..\..\objs\release"
45 # PROP Intermediate_Dir "..\..\..\objs\release"
57 # ADD LIB32 /nologo /out:"..\..\..\objs\freetype.lib"
68 # PROP Output_Dir "..\..\..\objs\debug"
69 # PROP Intermediate_Dir "..\..\..\objs\debug"
81 # ADD LIB32 /nologo /out:"..\..\..\objs\freetype_D.lib"
92 # PROP Output_Dir "..\..\..\objs\debug_mt"
93 # PROP Intermediate_Dir "..\..\..\objs\debug_mt"
106 # ADD LIB32 /nologo /out:"..\..\..\objs\freetypeMT_D.lib"
117 # PROP Output_Dir "..\..\..\objs\release_mt"
[all …]
/third_party/skia/third_party/externals/freetype/builds/windows/visualce/
Dfreetype.dsp44 # PROP Output_Dir "..\..\..\objs\release"
45 # PROP Intermediate_Dir "..\..\..\objs\release"
57 # ADD LIB32 /nologo /out:"..\..\..\objs\freetype.lib"
68 # PROP Output_Dir "..\..\..\objs\debug"
69 # PROP Intermediate_Dir "..\..\..\objs\debug"
81 # ADD LIB32 /nologo /out:"..\..\..\objs\freetype_D.lib"
92 # PROP Output_Dir "..\..\..\objs\debug_mt"
93 # PROP Intermediate_Dir "..\..\..\objs\debug_mt"
106 # ADD LIB32 /nologo /out:"..\..\..\objs\freetypeMT_D.lib"
117 # PROP Output_Dir "..\..\..\objs\release_mt"
[all …]
/third_party/skia/third_party/externals/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()
/third_party/python/Modules/
Dld_so_aix.in123 objs="$objs $1"
139 if test -z "$objs"; then
184 $makexp $expfile "$objfile" $objs
/third_party/openssl/crypto/x509/
Dx509_lu.c188 if ((ret->objs = sk_X509_OBJECT_new(x509_object_cmp)) == NULL) { in X509_STORE_new()
217 sk_X509_OBJECT_free(ret->objs); in X509_STORE_new()
244 sk_X509_OBJECT_pop_free(vfy->objs, X509_OBJECT_free); in X509_STORE_free()
327 tmp = X509_OBJECT_retrieve_by_subject(store->objs, type, name); in X509_STORE_CTX_get_by_subject()
382 if (X509_OBJECT_retrieve_match(store->objs, obj)) { in x509_store_add()
385 added = sk_X509_OBJECT_push(store->objs, obj); in x509_store_add()
548 return v->objs; in STACK_OF()
554 STACK_OF(X509_OBJECT) *objs; in STACK_OF()
566 objs = X509_STORE_get0_objects(store); in STACK_OF()
567 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) { in STACK_OF()
[all …]
/third_party/selinux/libsepol/tests/
DMakefile19 objs := $(patsubst %.c,%.o,$(sort $(wildcard *.c)))
35 $(EXE): $(objs) $(parserobjs) $(LIBSEPOL)
36 $(CC) $(LDFLAGS) $(objs) $(parserobjs) -lcunit $(LIBSEPOL) -o $@
45 rm -f $(objs) $(EXE)
/third_party/mesa3d/src/gallium/frontends/clover/api/
Dtransfer.cpp366 auto deps = objs<wait_list_tag>(d_deps, num_deps); in clEnqueueReadBuffer()
399 auto deps = objs<wait_list_tag>(d_deps, num_deps); in clEnqueueWriteBuffer()
437 auto deps = objs<wait_list_tag>(d_deps, num_deps); in clEnqueueReadBufferRect()
477 auto deps = objs<wait_list_tag>(d_deps, num_deps); in clEnqueueWriteBufferRect()
513 auto deps = objs<wait_list_tag>(d_deps, num_deps); in clEnqueueFillBuffer()
557 auto deps = objs<wait_list_tag>(d_deps, num_deps); in clEnqueueCopyBuffer()
594 auto deps = objs<wait_list_tag>(d_deps, num_deps); in clEnqueueCopyBufferRect()
628 auto deps = objs<wait_list_tag>(d_deps, num_deps); in clEnqueueReadImage()
665 auto deps = objs<wait_list_tag>(d_deps, num_deps); in clEnqueueWriteImage()
702 auto deps = objs<wait_list_tag>(d_deps, num_deps); in clEnqueueFillImage()
[all …]

12345678