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

1 2 3 4 5 6

  /development/ndk/samples/hello-jni/jni/
hello-jni.c 34 #define ABI "armeabi-v7a/NEON (hard-float)"
36 #define ABI "armeabi-v7a/NEON"
40 #define ABI "armeabi-v7a (hard-float)"
42 #define ABI "armeabi-v7a"
46 #define ABI "armeabi"
49 #define ABI "x86"
51 #define ABI "x86_64"
53 #define ABI "mips64"
55 #define ABI "mips"
57 #define ABI "arm64-v8a
    [all...]
  /ndk/build/tools/
build-compiler-rt.sh 160 # $1: ABI
163 local ABI=$1
166 if [ $ABI == "armeabi" -o $ABI == "armeabi-v7a" -o $ABI == "armeabi-v7a-hard" ]; then
168 elif [ $ABI == "x86" ]; then
170 elif [ $ABI == "mips" ]; then
177 # if we have lib/$ABI/*.S, skip lib/*.c
188 # $1: ABI
195 local ABI=$
    [all...]
build-gnu-libstdc++.sh 105 # $1: ABI name
113 local ABI=$1
118 local DSTDIR=$NDK_DIR/$GNUSTL_SUBDIR/$GCC_VERSION/libs/$ABI/$THUMB
121 prepare_target_build $ABI $PLATFORM $NDK_DIR
124 INSTALLDIR=$BUILDDIR/install-$ABI-$GCC_VERSION/$THUMB
125 BUILDDIR=$BUILDDIR/$LIBTYPE-${ABI}${THUMB}-$GCC_VERSION
129 ARCH=$(convert_abi_to_arch $ABI)
208 if [ "$ABI" = "armeabi-v7a" -o "$ABI" = "armeabi-v7a-hard" ]; then
211 if [ "$ABI" != "armeabi-v7a-hard" ]; the
    [all...]
build-libportable.sh 118 # $1: ABI
124 local ABI=$1
133 DSTDIR=$NDK_DIR/$LIBPORTABLE_SUBDIR/libs/$ABI
137 ARCH=$(convert_abi_to_arch $ABI)
144 builder_begin_android $ABI "$BUILDDIR" "$GCCVER" "$LLVM_VERSION" "$MAKEFILE"
175 for ABI in $ABIS; do
177 ARCH=$(convert_abi_to_arch $ABI)
181 build_libportable_libs_for_abi $ABI "$BUILD_DIR/$ABI" "$OUT_DIR"
186 for ABI in $ABIS; d
    [all...]
build-on-device-toolchain.sh 32 ABI=armeabi-v7a
33 register_var_option "--abi=<target>" ABI "List which emulator target you use"
77 ARCH="$(convert_abi_to_arch $ABI)"
92 dump "Copy $ABI gabi++ library"
93 run cp -f $NDK_DIR/$GABIXX_SUBDIR/libs/$ABI/libgabi++_shared.so $OUT_SYSROOT/usr/lib
95 dump "Copy $ABI libportable library"
96 run cp -f $NDK_DIR/$LIBPORTABLE_SUBDIR/libs/$ABI/libportable.a $OUT_SYSROOT/usr/lib
97 run cp -f $NDK_DIR/$LIBPORTABLE_SUBDIR/libs/$ABI/libportable.wrap $OUT_SYSROOT/usr/lib
99 dump "Copy $ABI compiler-rt library
    [all...]
build-cxx-stl.sh 149 CXX_SUPPORT_LIB=gabi++ # libc++abi
151 libc++-libc++abi)
152 CXX_SUPPORT_LIB=libc++abi
186 elif [ "$CXX_SUPPORT_LIB" = "libc++abi" ]; then
294 "../llvm-libc++abi/libcxxabi/src/abort_message.cpp \
295 ../llvm-libc++abi/libcxxabi/src/cxa_aux_runtime.cpp \
296 ../llvm-libc++abi/libcxxabi/src/cxa_default_handlers.cpp \
297 ../llvm-libc++abi/libcxxabi/src/cxa_demangle.cpp \
298 ../llvm-libc++abi/libcxxabi/src/cxa_exception.cpp \
299 ../llvm-libc++abi/libcxxabi/src/cxa_exception_storage.cpp
    [all...]
  /external/chromium_org/win8/metro_driver/
stdafx.h 30 namespace winapp = ABI::Windows::ApplicationModel;
31 namespace windata = ABI::Windows::Data;
32 namespace winxml = ABI::Windows::Data::Xml;
33 namespace windevs = ABI::Windows::Devices;
34 namespace winfoundtn = ABI::Windows::Foundation;
35 namespace wingfx = ABI::Windows::Graphics;
36 namespace winui = ABI::Windows::UI;
37 namespace winsys = ABI::Windows::System;
38 namespace winstorage = ABI::Windows::Storage;
display_properties.cc 19 ABI::Windows::Graphics::Display::IDisplayPropertiesStatics>
24 ABI::Windows::Graphics::Display::ResolutionScale resolution_scale;
direct3d_helper.h 37 ABI::Windows::Foundation::Rect window_bounds_;
  /ndk/tests/build/b14811006-GOT_PREL-optimization/
build.sh 52 for ABI in $APP_ABI; do
53 $NDK/ndk-build -B APP_ABI=$ABI APP_CFLAGS=-save-temps
54 fail_panic "can't compile for APP_ABI=$ABI"
56 fail_panic "Fail to optimize GOT access with GOT_PREL, ABI=$ABI."
  /ndk/tests/build/import-install/
build.sh 26 for ABI in $ABIS; do
27 DIR=$PWD/libs/$ABI
28 SUFFIX=$(get_lib_suffix_for_abi $ABI)
  /ndk/tests/build/prebuilt-copy/
build.sh 10 # $NDK_OUT/<abi>/objs.
77 for ABI in $ABIS; do
78 printf "Checking for $ABI shared library: "
79 SHARED_LIB=$(ls $OUT/*$ABI/libfoo.so 2>/dev/null)
87 printf "Checking for $ABI static library: "
88 STATIC_LIB=$(ls $OUT/*$ABI/libbar.a 2>/dev/null)
  /external/lldb/source/Target/
ABI.cpp 1 //===-- ABI.cpp -------------------------------------------------*- C++ -*-===//
10 #include "lldb/Target/ABI.h"
22 ABI::FindPlugin (const ArchSpec &arch)
43 ABI::ABI()
50 ABI::~ABI()
56 ABI::GetRegisterInfoByName (const ConstString &name, RegisterInfo &info)
85 ABI::GetRegisterInfoByKind (RegisterKind reg_kind, uint32_t reg_num, RegisterInfo &info)
107 ABI::GetReturnValueObject (Thread &thread
    [all...]
  /external/clang/include/clang/Basic/
TargetOptions.h 36 /// If given, the name of the target ABI to use.
37 std::string ABI;
  /external/lldb/include/lldb/Target/
ABI.h 1 //===-- ABI.h ---------------------------------------------------*- C++ -*-===//
23 class ABI :
28 ~ABI();
59 // This is the method the ABI will call to actually calculate the return value.
60 // Don't put it in a persistant value object, that will be done by the ABI::GetReturnValueObject.
74 // Should return true if your ABI uses frames when doing stack backtraces. This
84 // the ABI, and false otherwise. This is used by the generic stack frame unwinding
98 // thumb, so any ARM ABI plug-ins would strip those bits.
128 // Classes that inherit from ABI can see and modify these
130 ABI();
    [all...]
  /ndk/tests/build/check-armeabi-v7a-prebuilts/
build.sh 5 # properly built targetting VFPv3-D16, as per the ABI spec.
111 # Check that an ELF binary is compatible with our armeabi-v7a ABI
222 for ABI in $ARMv7_ABIS; do
224 GABIXX_LIBS=$NDK/sources/cxx-stl/gabi++/libs/$ABI
228 STLPORT_LIBS=$NDK/sources/cxx-stl/stlport/libs/$ABI
234 GNUSTL_LIBS=$NDK/sources/cxx-stl/gnu-libstdc++/$VERSION/libs/$ABI
  /ndk/tests/standalone/
run.sh 50 ABI=
62 --abi=*)
63 ABI=$optarg
115 echo "The target ABI is normally auto-detected from the toolchain, but you can specify an"
116 echo "alternative one with the --abi=<name> option. This is only useful on ARM, where the"
117 echo "default ABI is 'armeabi' targetting the ARMv5TE instruction set. If you want to check"
120 echo " --abi=armeabi-v7a"
124 echo "to display the list of all tests that are relevant for your current ABI."
133 echo " --list List all available tests for current ABI."
137 echo " --abi=<name> Specify target ABI name.
    [all...]
  /ndk/tests/abcc/
build-abcc.sh 96 for ABI in $ABIS; do
97 run $BUILDTOOLS/build-on-device-toolchain.sh --ndk-dir=$NDK_DIR --build-dir=$BUILD_DIR --out-dir=$ABCC_PREBUILT_ASSETS/$ABI --abi=$ABI --no-sync $FLAGS $SRC_DIR
144 for ABI in $ABIS; do
146 run $NDK_DIR/ndk-build -B APP_ABI=$ABI -C jni
151 run ant debug -Dasset.dir=prebuilts/assets/$ABI
153 run cp -a bin/$ABCC-debug.apk $OUT_DIR/$ABCC-$ABI.apk
155 run ant release -Dasset.dir=prebuilts/assets/$ABI
157 run cp -a bin/$ABCC-release-unsigned.apk $OUT_DIR/$ABCC-$ABI-unsigned.ap
    [all...]
  /external/llvm/test/MC/Mips/mips64r2/
abi-bad.s 7 # CHECK : error: 'set fp=xx'option requires O32 ABI
  /ndk/tests/build/issue64679-prctl/
build.sh 18 for ABI in $ABIS; do
22 $ANDROID_NDK_ROOT/ndk-build -B APP_CFLAGS=-DHEADER=\"\<$HEADER\>\" APP_PLATFORM=android-$API_LEVEL APP_ABI=$ABI 1>/dev/null 2>&1
24 To reproduce: $ANDROID_NDK_ROOT/ndk-build -B APP_CFLAGS=-DHEADER=\"\<$HEADER\>\" APP_PLATFORM=android-$API_LEVEL APP_ABI=$ABI"
  /external/lldb/source/Plugins/
Makefile 15 DIRS := ABI/MacOSX-arm ABI/MacOSX-i386 ABI/SysV-x86_64 Disassembler/llvm \
Android.mk 6 ABI/MacOSX-arm \
7 ABI/MacOSX-i386 \
8 ABI/SysV-x86_64 \
  /ndk/tests/
run-tests.sh 55 ABI=default
88 --abi=*)
89 ABI="$optarg"
168 echo " --abi=<name> Only run tests for the specific ABI [$ABI]"
443 case $ABI in
447 NDK_BUILD_FLAGS="$NDK_BUILD_FLAGS APP_ABI=$ABI"
450 if [ -n "$(filter_out "$PREBUILT_ABIS" "$ABI")" ] && [ -n "$(find_ndk_unknown_archs)" ]; then
451 ABI=$(find_ndk_unknown_archs
    [all...]
  /build/core/combo/arch/x86_64/
x86_64.mk 2 # base 'x86_64' platform ABI.
  /external/llvm/test/MC/X86/
gnux32-dwarf-gen.s 8 # assembler, looking at the difference between the x32 ABI and default x86-64
9 # ABI.

Completed in 185 milliseconds

1 2 3 4 5 6