Home
last modified time | relevance | path

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

1234

/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DMessageRegression.java137 Object[] objs = messageFormatter.parse(tempBuffer, status); in Test4031438() local
138 if (objs[paramArray.length] != null) in Test4031438()
140 for (int i = 0; i < objs.length; i++) { in Test4031438()
141 if (objs[i] != null && !objs[i].toString().equals(paramArray[i].toString())) { in Test4031438()
142 errln("Parse failed on object " + objs[i] + " at index : " + i); in Test4031438()
172 Object[] objs = fmt.parse(str, pos); in Test4052223() local
180 if (objs != null) { in Test4052223()
432 Object[] objs = mf.parse(formatted, new ParsePosition(0)); in Test4118592() local
435 if (objs == null) logln(" null"); in Test4118592()
436 else logln(" " + objs[0]); in Test4118592()
[all …]
/external/jemalloc/src/
Dquarantine.c29 quarantine = (quarantine_t *)iallocztm(tsd, offsetof(quarantine_t, objs) 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/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/boringssl/src/crypto/x509/
Dx509_lu.c190 ret->objs = sk_X509_OBJECT_new(x509_object_cmp); in X509_STORE_new()
207 if (ret->objs) in X509_STORE_new()
208 sk_X509_OBJECT_free(ret->objs); in X509_STORE_new()
255 sk_X509_OBJECT_pop_free(vfy->objs, cleanup); in X509_STORE_free()
303 tmp=X509_OBJECT_retrieve_by_subject(ctx->objs,type,name); in X509_STORE_get_by_subject()
358 if (X509_OBJECT_retrieve_match(ctx->objs, obj)) in X509_STORE_add_cert()
365 else sk_X509_OBJECT_push(ctx->objs, obj); in X509_STORE_add_cert()
391 if (X509_OBJECT_retrieve_match(ctx->objs, obj)) in X509_STORE_add_crl()
398 else sk_X509_OBJECT_push(ctx->objs, obj); in X509_STORE_add_crl()
502 idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_X509, nm, &cnt); in STACK_OF()
[all …]
/external/icu/icu4c/source/test/intltest/
Dmsfmrgts.cpp203 Formattable *objs = messageFormatter->parse(tempBuffer, pp, count); in Test4031438() local
213 Formattable obj = objs[i]; in Test4031438()
244 errln("Parse failed on object " + objs[i].getString(temp1) + " at index : " + i); in Test4031438()
249 delete [] objs; in Test4031438()
701 Formattable *objs = 0; in Test4118592() local
712 objs = mf->parse(formatted, pp, count); in Test4118592()
716 if (objs == NULL) in Test4118592()
720 if(objs[0].getType() == Formattable::kString) in Test4118592()
721 logln((UnicodeString)" " + objs[0].getString(temp)); in Test4118592()
723 …logln((UnicodeString)" " + (objs[0].getType() == Formattable::kLong ? objs[0].getLong() : objs[0]… in Test4118592()
[all …]
/external/jmonkeyengine/engine/src/test/jme3test/app/
DTestIDList.java44 Map<Integer, Object> objs = new HashMap<Integer, Object>(); field in TestIDList.StateCol
60 objs.put(id, new Object()); in StateCol()
67 Set<Integer> keys = objs.keySet(); in print()
71 System.out.println(keysArr[i]+" => "+objs.get(keysArr[i]).hashCode()); in print()
118 Object val = state.objs.get(i); in checkSlots()
145 for (Map.Entry<Integer, Object> entry : state.objs.entrySet()){ in setState()
/external/selinux/libsepol/tests/
DMakefile18 objs := $(patsubst %.c,%.o,$(wildcard *.c)) macro
34 $(EXE): $(objs) $(parserobjs) $(LIBSEPOL)
35 $(CC) $(CFLAGS) $(CPPFLAGS) $(objs) $(parserobjs) -lfl -lcunit -lcurses $(LIBSEPOL) -o $@
44 rm -f $(objs) $(EXE)
/external/marisa-trie/lib/marisa/
Dmapper.h25 void map(const T **objs, std::size_t num_objs) { in map() argument
26 MARISA_THROW_IF((objs == NULL) && (num_objs != 0), MARISA_PARAM_ERROR); in map()
29 *objs = static_cast<const T *>(map_data(sizeof(T) * num_objs)); in map()
Dreader.h28 void read(T *objs, std::size_t num_objs) { in read() argument
29 MARISA_THROW_IF((objs == NULL) && (num_objs != 0), MARISA_PARAM_ERROR); in read()
33 read_data(objs, sizeof(T) * num_objs); in read()
Dwriter.h28 void write(const T *objs, std::size_t num_objs) { in write() argument
29 MARISA_THROW_IF((objs == NULL) && (num_objs != 0), MARISA_PARAM_ERROR); in write()
33 write_data(objs, sizeof(T) * num_objs); in write()
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
Dmapper.h25 void map(const T **objs, std::size_t num_objs) { in map() argument
26 MARISA_ALPHA_THROW_IF((objs == NULL) && (num_objs != 0), in map()
30 *objs = static_cast<const T *>(map_data(sizeof(T) * num_objs)); in map()
Dreader.h28 void read(T *objs, std::size_t num_objs) { in read() argument
29 MARISA_ALPHA_THROW_IF((objs == NULL) && (num_objs != 0), in read()
34 read_data(objs, sizeof(T) * num_objs); in read()
Dwriter.h28 void write(const T *objs, std::size_t num_objs) { in write() argument
29 MARISA_ALPHA_THROW_IF((objs == NULL) && (num_objs != 0), in write()
34 write_data(objs, sizeof(T) * num_objs); in write()
/external/jemalloc/test/unit/
Dprof_reset.c143 void *objs[OBJ_RING_BUF_COUNT]; in thd_start() local
145 memset(objs, 0, sizeof(objs)); in thd_start()
160 void **pp = &objs[i % OBJ_RING_BUF_COUNT]; in thd_start()
173 void **pp = &objs[i % OBJ_RING_BUF_COUNT]; in thd_start()
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
DFrameNode.java198 Object[] objs = new Object[l.size()]; in asArray() local
199 for (int i = 0; i < objs.length; ++i) { in asArray()
204 objs[i] = o; in asArray()
206 return objs; in asArray()
DMethodNode.java382 private Object[] getLabelNodes(final Object[] objs) {
383 Object[] nodes = new Object[objs.length];
384 for (int i = 0; i < objs.length; ++i) {
385 Object o = objs[i];
/external/llvm/test/Transforms/ObjCARC/
Dallocas.ll367 %objs = alloca [2 x i8*], align 16
372 %objs.begin = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 0
374 store i8* %call1, i8** %objs.begin, align 8
375 %objs.elt = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 1
377 store i8* %call1, i8** %objs.elt
388 %gep = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 2
396 %objs_ptr = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 0
445 %objs = alloca [2 x i8*], align 16
451 %objs.begin = getelementptr inbounds [2 x i8*], [2 x i8*]* %objs, i64 0, i64 0
453 store i8* %call1, i8** %objs.begin, align 8
[all …]
/external/jemalloc/
Dcoverage.sh8 objs=$@
10 gcov -b -p -f -o "${objdir}" ${objs}
/external/selinux/sepolgen/src/sepolgen/
Daccess.py206 for objs in tgts.values():
207 for av in objs.values():
220 for objs in tgts.values():
221 l += len(objs)
/external/compiler-rt/test/tsan/
Dunaligned_norace.cc7 uint64_t objs[8*3*3*2][3]; variable
46 uint64_t *obj = objs[0]; in Test()
Dunaligned_race.cc7 volatile uint64_t objs[8*2*(2 + 4 + 8)][2]; variable
106 volatile uint64_t *obj = objs[0]; in Test()
/external/zlib/src/
DMakefile.in158 -@mkdir objs 2>/dev/null || test -d objs
159 $(CC) $(SFLAGS) -DPIC -c -o objs/$*.o $<
160 -@mv objs/$*.o $@
167 -@rmdir objs
250 rm -rf objs
/external/llvm/utils/
DGenLibDeps.pl75 my @objs = grep(/LLVM.*\.o$/,sort(@files));
180 foreach my $obj (@objs ) {
374 foreach my $obj (@objs) {
/external/v8/test/mjsunit/harmony/
Dprivate.js302 var objs = [{}, [], Object.create(null), Object(1), new Map, function(){}] variable
304 for (var i in objs) {
305 var obj = objs[i]
/external/jemalloc/include/jemalloc/internal/
Dquarantine.h25 quarantine_obj_t objs[1]; /* Dynamically sized ring buffer. */ member

1234