HomeSort by relevance Sort by last modified time
    Searched refs:objs (Results 1 - 25 of 138) sorted by null

1 2 3 4 5 6

  /external/jemalloc/
coverage.sh 8 objs=$@
10 gcov -b -p -f -o "${objdir}" ${objs}
  /ndk/sources/host-tools/make-3.81/
build.sh.in 55 objs="ar.${OBJEXT} arscan.${OBJEXT} commands.${OBJEXT} default.${OBJEXT} dir.${OBJEXT} expand.${OBJEXT} file.${OBJEXT} function.${OBJEXT} getopt.${OBJEXT} getopt1.${OBJEXT} implicit.${OBJEXT} job.${OBJEXT} main.${OBJEXT} misc.${OBJEXT} read.${OBJEXT} remake.${OBJEXT} rule.${OBJEXT} signame.${OBJEXT} strcache.${OBJEXT} variable.${OBJEXT} version.${OBJEXT} vpath.${OBJEXT} hash.${OBJEXT} remote-${REMOTE}.${OBJEXT} ${extras} ${ALLOCA}"
58 objs="$objs glob/fnmatch.${OBJEXT} glob/glob.${OBJEXT}"
63 for file in `echo ${objs} | sed 's/\.'${OBJEXT}'/.c/g'`; do
71 srcobjs="$objs"
72 objs=
74 objs="$objs `basename $obj`"
79 $CC $CFLAGS $LDFLAGS $objs $LOADLIBES -o makenew${EXEEXT}
  /external/qemu/distrib/sdl-1.2.15/
Makefile 20 OBJS_DIR := objs
40 .PHONY: all libraries executables clean clean-config clean-objs-dir \
android-configure.sh 184 # create the objs directory that is going to contain all generated files
187 mkdir -p objs
234 config_h=objs/SDL_config.h
505 cat sdl-config.in | sed -f $TMPC > objs/sdl-config
506 chmod +x objs/sdl-config
518 cp -f android/build/$OS/$1 objs/$1
  /external/jemalloc/src/
quarantine.c 31 quarantine = (quarantine_t *)imalloc(offsetof(quarantine_t, objs) +
60 /* objs ring buffer data are contiguous. */
61 memcpy(ret->objs, &quarantine->objs[quarantine->first],
64 /* objs ring buffer data wrap around. */
69 memcpy(ret->objs, &quarantine->objs[quarantine->first], ncopy_a
71 memcpy(&ret->objs[ncopy_a], quarantine->objs, ncopy_b *
82 quarantine_obj_t *obj = &quarantine->objs[quarantine->first]
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiLogger.java 58 static final void warning(String logMessage, Object... objs) {
59 getLogger().warningInternal(toLogString(logMessage, objs));
69 static final void error(String logMessage, Object... objs) {
70 getLogger().errorInternal(toLogString(logMessage, objs));
80 static final void debug(String logMessage, Object... objs) {
81 getLogger().debugInternal(toLogString(logMessage, objs));
91 private static final String toLogString(String logMessage, Object[] objs) {
92 if (objs.length > 0) {
93 return String.format(logMessage, objs);
  /external/libsepol/tests/
Makefile 18 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/qemu/
Makefile 31 OBJS_DIR := objs
46 .PHONY: all libraries executables clean clean-config clean-objs-dir \
android-rebuild.sh 17 OUT_DIR=objs
69 rm -rf objs
  /external/chromium_org/build/android/pylib/utils/
parallelizer.py 67 def __init__(self, objs):
68 assert (objs is not None and len(objs) > 0), (
70 self._orig_objs = objs
71 self._objs = objs
  /external/compiler-rt/test/tsan/
unaligned_norace.cc 7 uint64_t objs[8*3*3*2][3]; variable
46 uint64_t *obj = objs[0];
unaligned_race.cc 10 volatile uint64_t objs[8*2*(2 + 4 + 8)][2]; variable
109 volatile uint64_t *obj = objs[0];
  /ndk/tests/build/issue42841-LOCAL_PATH/jni/
Android.mk 5 # obj/local/armeabi/objs/issue42841-LOCAL_PATH/issue42841-LOCAL_PATH.o'. Stop.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/
makesetup 115 OBJS=
198 objs=''
212 objs="$objs $obj"
228 yes) OBJS="$OBJS $objs";;
232 case $objs in
240 rule="$file: $objs"
241 rule="$rule; \$(BLDSHARED) $objs $libs $ExtraLibs -o $file
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/
makesetup 115 OBJS=
198 objs=''
212 objs="$objs $obj"
228 yes) OBJS="$OBJS $objs";;
232 case $objs in
240 rule="$file: $objs"
241 rule="$rule; \$(BLDSHARED) $objs $libs $ExtraLibs -o $file
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509/
x509_lu.c 184 ret->objs = sk_X509_OBJECT_new(x509_object_cmp);
205 sk_X509_OBJECT_free(ret->objs);
249 sk_X509_OBJECT_pop_free(vfy->objs, cleanup);
298 tmp=X509_OBJECT_retrieve_by_subject(ctx->objs,type,name);
353 if (X509_OBJECT_retrieve_match(ctx->objs, obj))
360 else sk_X509_OBJECT_push(ctx->objs, obj);
386 if (X509_OBJECT_retrieve_match(ctx->objs, obj))
393 else sk_X509_OBJECT_push(ctx->objs, obj);
496 idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_X509, nm, &cnt);
511 idx = x509_object_idx_cnt(ctx->ctx->objs,X509_LU_X509,nm, &cnt)
    [all...]
  /external/openssl/crypto/x509/
x509_lu.c 184 ret->objs = sk_X509_OBJECT_new(x509_object_cmp);
205 sk_X509_OBJECT_free(ret->objs);
249 sk_X509_OBJECT_pop_free(vfy->objs, cleanup);
298 tmp=X509_OBJECT_retrieve_by_subject(ctx->objs,type,name);
353 if (X509_OBJECT_retrieve_match(ctx->objs, obj))
360 else sk_X509_OBJECT_push(ctx->objs, obj);
386 if (X509_OBJECT_retrieve_match(ctx->objs, obj))
393 else sk_X509_OBJECT_push(ctx->objs, obj);
496 idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_X509, nm, &cnt);
511 idx = x509_object_idx_cnt(ctx->ctx->objs,X509_LU_X509,nm, &cnt)
    [all...]
  /external/jemalloc/include/jemalloc/internal/
quarantine.h 25 quarantine_obj_t objs[1]; /* Dynamically sized ring buffer. */ member in struct:quarantine_s
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
FrameNode.java 198 Object[] objs = new Object[l.size()]; local
199 for (int i = 0; i < objs.length; ++i) {
204 objs[i] = o;
206 return objs;
MethodNode.java 382 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/chromium_org/third_party/icu/source/test/intltest/
msfmrgts.cpp 201 Formattable *objs = messageFormatter->parse(tempBuffer, pp, count); local
202 //if(objs[7/*params.length*/] != NULL)
211 Formattable obj = objs[i];
240 //if (objs[i] != NULL && objs[i].getString(temp1) != params[i].getString(temp2)) {
242 errln("Parse failed on object " + objs[i].getString(temp1) + " at index : " + i);
247 delete [] objs;
699 Formattable *objs = 0; local
707 //Object[] objs = mf.parse(formatted, new ParsePosition(0));
710 objs = mf->parse(formatted, pp, count)
742 Formattable *objs = mf->parse(forParsing, pp, count); local
839 Formattable *objs = mf->parse(texts[i], pp, count); local
882 Formattable objs [] = { local
    [all...]
  /external/icu/icu4c/source/test/intltest/
msfmrgts.cpp 203 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 = mf->parse(formatted, pp, count)
744 Formattable *objs = mf->parse(forParsing, pp, count); local
841 Formattable *objs = mf->parse(texts[i], pp, count); local
884 Formattable objs [] = { local
    [all...]
  /ndk/tests/device/test-gabi++/jni/
Android.mk 16 # make: *** [obj/local/mips64/objs/test_gabixx_shared_catch_const_pointer_nullptr/catch_const_pointer_nullptr.o] Error 1
  /external/qemu/distrib/
update-audio.sh 84 source=objs/libqemu-audio.a
package-release.sh 147 rm -rf objs/*
148 run scp $HOST:$DST_DIR/$PKG_FILE_PREFIX/qemu/objs/emulator* objs/
149 run scp -r $HOST:$DST_DIR/$PKG_FILE_PREFIX/qemu/objs/lib objs/lib
384 UNCHECKED_FILES=$(git ls-files -o -x objs/ -x images/emulator_icon.o)
437 cp -rfp qemu/objs/emulator* bin/ &&
485 run cp -p objs/emulator* "$TEMP_PKG_DIR"/tools
486 if [ -d "objs/lib" ]; then
489 run2 cp -rp objs/lib/* "$TEMP_PKG_DIR"/tools/lib
    [all...]

Completed in 800 milliseconds

1 2 3 4 5 6