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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
mips64-f128-literal.c 3 typedef long double LD;
7 LD foo0() {
builtins.c 148 long double ld; local
162 ld = __builtin_huge_vall(); // CHECK: x86_fp80 0xK7FFF8000000000000000
165 ld = __builtin_nanl(""); // CHECK: x86_fp80 0xK7FFFC000000000000000
168 ld = __builtin_nanl("0xAE98"); // CHECK: x86_fp80 0xK7FFFC00000000000AE98
171 ld = __builtin_nansl(""); // CHECK: x86_fp80 0xK7FFFA000000000000000
174 ld = __builtin_nansl("0xAE98");// CHECK: x86_fp80 0xK7FFF800000000000AE98
181 void test_float_builtins(float F, double D, long double LD) {
191 res = __builtin_isinf(LD);
211 res = __builtin_isinf_sign(LD);
233 void test_float_builtin_ops(float F, double D, long double LD) {
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/z80/
ill_op.s 2 LD HL,(SP+0)
atend.s 5 LD A, offsetAtStart
6 LD A, (IX + offsetAtStart)
8 LD A, offsetAtEnd
9 LD A, (IX + offsetAtEnd)
  /external/wpa_supplicant_8/wpa_supplicant/
Makefile     [all...]
  /external/vixl/tools/
cross_build_gcc.sh 38 export LD=$1ld
57 if [ ! -x "`which $LD`" ]; then
58 echo "Error: $LD does not exist or is not executable."
  /external/wpa_supplicant_8/hostapd/
Makefile 1086 @$(E) " LD " $@
1093 @$(E) " LD " $@
1127 @$(E) " LD " $@
1131 @$(E) " LD " $@
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
armv8-a-barrier.s 3 dsb ld
7 dmb ld
11 dsb LD
15 dmb LD
  /external/v8/tools/
cross_build_gcc.sh 39 export LD=$1g++
59 if [ ! -x "$LD" ]; then
60 echo "Error: $LD does not exist or is not executable."
  /external/aac/libFDK/include/
FDK_trigFcts.h 133 #define LD 9
148 int shift = (31-scale-LD-1);
160 if (s & ((1<<LD)<<1) ) {
164 if ( (s + (1<<LD)) & ((1<<LD)<<1) ) {
170 s &= (((1<<LD)<<1)-1); /* Modulo PI */
172 if (s > (1<<LD)) {
173 s = ((1<<LD)<<1) - s;
179 if (s > (1<<(LD-1))) {
182 s = (1<<LD)-s
    [all...]
  /external/bison/djgpp/
config.site 77 LD=${LD='ld'}
  /external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
Makefile 18 LD.Flags += $(RDYNAMIC)
  /external/sonivox/arm-wt-22k/host_src/
arm-wt-22k.mak 5 # Set the paths to the tools (CC, AR, LD, etc.)
12 LD = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe
24 $(LD) -o $@ $(OBJS) libarm-wt-22k.a -lm
  /art/test/600-verifier-fails/smali/
iget.smali 16 .class public LD;
  /external/syslinux/com32/elflink/
Makefile 19 $(LD) $(LDFLAGS) -o $@ $^
23 $(LD) -n $(LDFLAGS) -o $@ test_com32.o $(LIBGCC) --whole-archive ../lib/libcom32min.a -Map test_com32.map
  /external/ltp/testcases/commands/ade/ld/
ld01 23 # PURPOSE: To test the basic functionality of the `ld` command.
42 LD=${LD:=ld}
44 TCtmp=${TCtmp:-/tmp/ld-$$}
62 #Test for graceful failure when ld can't find a fileTest calling ld directly
66 ld x.obj y.obj 2> $TCtmp/errmsg.out
68 #$LD: cannot open x.obj: No such file or directory
72 grep "$LD:" $TCtmp/errmsg.out | grep [xy].obj | grep -q "No such file or directory
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 299 static bool isValidIndexedLoad(const LoadSDNode *LD) {
300 ISD::MemIndexedMode AM = LD->getAddressingMode();
301 if (AM != ISD::POST_INC || LD->getExtensionType() != ISD::NON_EXTLOAD)
304 EVT VT = LD->getMemoryVT();
309 if (cast<ConstantSDNode>(LD->getOffset())->getZExtValue() != 1)
315 if (cast<ConstantSDNode>(LD->getOffset())->getZExtValue() != 2)
327 LoadSDNode *LD = cast<LoadSDNode>(N);
328 if (!isValidIndexedLoad(LD))
331 MVT VT = LD->getMemoryVT().getSimpleVT();
347 LD->getBasePtr(), LD->getChain()))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 302 static bool isValidIndexedLoad(const LoadSDNode *LD) {
303 ISD::MemIndexedMode AM = LD->getAddressingMode();
304 if (AM != ISD::POST_INC || LD->getExtensionType() != ISD::NON_EXTLOAD)
307 EVT VT = LD->getMemoryVT();
312 if (cast<ConstantSDNode>(LD->getOffset())->getZExtValue() != 1)
318 if (cast<ConstantSDNode>(LD->getOffset())->getZExtValue() != 2)
330 LoadSDNode *LD = cast<LoadSDNode>(N);
331 if (!isValidIndexedLoad(LD))
334 MVT VT = LD->getMemoryVT().getSimpleVT();
350 LD->getBasePtr(), LD->getChain())
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/Orc/
CompileOnDemandLayer.h 242 void addLogicalModule(CODLogicalDylib &LD, ModulePtrT SrcMPtr) {
249 auto LMH = LD.createLogicalModule();
250 auto &LMResources = LD.getLogicalModuleResources(LMH);
276 CCInfo.setCompileAction([this, &LD, LMH, &F]() {
277 return this->extractAndCompile(LD, LMH, F);
360 [&LD, LMH](const std::string &Name) {
361 auto &LMResources = LD.getLogicalModuleResources(LMH);
364 auto &LDResolver = LD.getDylibResources().ExternalSymbolResolver;
367 [&LD](const std::string &Name) {
368 auto &LDResolver = LD.getDylibResources().ExternalSymbolResolver
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Makefiles/
ms.app 22 $(LD) /nologo /debug /incremental:no /nodefaultlib:libc.lib /out:$@ $(LIBS) $**
  /device/linaro/hikey/l-loader/
Makefile 4 LD=$(CROSS_COMPILE)ld
15 $(LD) -Bstatic -Tl-loader.lds -Ttext 0xf9800800 start.o -o loader
  /external/curl/
androidconfigure 15 export LD="$(ls "${ANDROID_TOOLCHAIN}" | grep "\-ld$" | grep -v kernel)"
  /external/lz4/contrib/djgpp/
Makefile 20 LD = $(CROSS)-gcc
56 $(LD) $< -L$(LDIR) -l$(LNK) $(LDFLAGS) $(LIBDEP) -o $@
70 $(LD) $(LDFLAGS) $(LOBJ) $(OBJ) -o $(EDIR)/$@
107 @echo "LD="$(LD)
  /external/syslinux/com32/menu/
Makefile 31 $(LD) $(LDFLAGS) -o $@ $^
34 $(LD) $(LDFLAGS) -o $@ $^
  /external/syslinux/gnu-efi/gnu-efi-3.0/
Make.rules 42 $(LD) $(LDFLAGS) $^ -o $@ $(LOADLIBES)

Completed in 603 milliseconds

1 2 3 4 5 6 7 8 91011>>