Searched refs:LD (Results 1 - 25 of 246) sorted by relevance

12345678910

/external/clang/test/CodeGen/
H A Dmips64-f128-literal.c3 typedef long double LD; typedef
7 LD foo0() {
H A Dbuiltins.c181 void test_float_builtins(float F, double D, long double LD) { argument
191 res = __builtin_isinf(LD);
211 res = __builtin_isinf_sign(LD);
233 void test_float_builtin_ops(float F, double D, long double LD) { argument
244 resld = __builtin_fmodl(LD,LD);
249 resld = __builtin_fabsl(LD);
256 resld = __builtin_canonicalizel(LD);
267 resld = __builtin_fminl(LD, LD);
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A DMakefile1710 @$(E) " LD " $@
1716 @$(E) " LD " $@
1720 @$(E) " LD " $@
1724 @$(E) " LD " $@
1728 @$(E) " LD " $@
1732 @$(E) " LD " $@
1754 @$(E) " LD " $@
1758 @$(E) " LD " $@
1762 @$(E) " LD " $@
1766 @$(E) " LD "
[all...]
/external/vixl/tools/
H A Dcross_build_gcc.sh38 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/
H A DMakefile1086 @$(E) " LD " $@
1093 @$(E) " LD " $@
1127 @$(E) " LD " $@
1131 @$(E) " LD " $@
/external/v8/tools/
H A Dcross_build_gcc.sh39 export LD=$1g++
59 if [ ! -x "$LD" ]; then
60 echo "Error: $LD does not exist or is not executable."
/external/aac/libFDK/include/
H A DFDK_trigFcts.h133 #define LD 9 macro
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)
[all...]
/external/bison/djgpp/
H A Dconfig.site77 LD=${LD='ld'}
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
H A DMakefile18 LD.Flags += $(RDYNAMIC)
/external/sonivox/arm-wt-22k/host_src/
H A Darm-wt-22k.mak5 # Set the paths to the tools (CC, AR, LD, etc.)
12 LD = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe macro
24 $(LD) -o $@ $(OBJS) libarm-wt-22k.a -lm
/external/syslinux/com32/elflink/
H A DMakefile19 $(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/
H A Dld0142 LD=${LD:=ld}
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"
123 $LD bad/x.obj 2> $TCtmp/errmsg.out
125 #$LD: cannot open bad/x.obj: No such file or directory
127 cat $TCtmp/errmsg.out | grep "$LD:" | grep "bad/[xy].obj:" | grep -q "No such file or directory"
176 $LD -shared $TCdat/f1.obj $TCdat/d1.obj -o $TCtmp/test.lib
193 $LD -Bdynamic -shared $TCdat/f1.obj $TCdat/d1.obj -o $TCtmp/lola 2>$TCtmp/errmsg.out
194 $LD
[all...]
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelDAGToDAG.cpp299 static bool isValidIndexedLoad(const LoadSDNode *LD) { argument
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); local
328 if (!isValidIndexedLoad(LD))
331 MVT VT = LD->getMemoryVT().getSimpleVT();
347 LD
356 LoadSDNode *LD = cast<LoadSDNode>(N1); local
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
H A DMSP430ISelDAGToDAG.cpp302 static bool isValidIndexedLoad(const LoadSDNode *LD) { argument
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); local
331 if (!isValidIndexedLoad(LD))
334 MVT VT = LD->getMemoryVT().getSimpleVT();
350 LD
359 LoadSDNode *LD = cast<LoadSDNode>(N1); local
[all...]
/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.h242 void addLogicalModule(CODLogicalDylib &LD, ModulePtrT SrcMPtr) { argument
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
386 extractAndCompile(CODLogicalDylib &LD, LogicalModuleHandle LMH, Function &F) argument
424 emitPartition(CODLogicalDylib &LD, LogicalModuleHandle LMH, const PartitionT &Part) argument
[all...]
/external/curl/
H A Dandroidconfigure15 export LD="$(ls "${ANDROID_TOOLCHAIN}" | grep "\-ld$" | grep -v kernel)"
/external/lz4/contrib/djgpp/
H A DMakefile20 LD = $(CROSS)-gcc macro
56 $(LD) $< -L$(LDIR) -l$(LNK) $(LDFLAGS) $(LIBDEP) -o $@
70 $(LD) $(LDFLAGS) $(LOBJ) $(OBJ) -o $(EDIR)/$@
107 @echo "LD="$(LD)
/external/syslinux/com32/menu/
H A DMakefile31 $(LD) $(LDFLAGS) -o $@ $^
34 $(LD) $(LDFLAGS) -o $@ $^
/external/syslinux/gnu-efi/gnu-efi-3.0/
H A DMake.rules42 $(LD) $(LDFLAGS) $^ -o $@ $(LOADLIBES)
H A DMakefile64 @echo LD=$(LD)
/external/ltp/testscripts/build/
H A Dbuild_test_function.sh193 export LD="$LD"
198 for i in AR ARFLAGS CC CFLAGS CXX CXXFLAGS LD LDFLAGS NM; do
/external/libcap/pam_cap/
H A DMakefile20 $(LD) $(LDFLAGS) -o pam_cap.so $< $(LDLIBS)
/external/mdnsresponder/mDNSPosix/
H A DMakefile60 LD = ld -shared macro
94 LD = gcc -shared macro
105 LD = gcc -shared macro
150 LD = $(CC) -dynamiclib macro
257 @$(LD) $(LINKOPTS) -o $@ $+
271 @$(LD) $(LINKOPTS) -o $@ $+
/external/mesa3d/src/gallium/targets/xa-vmwgfx/
H A DMakefile36 LD=$(CXX) macro
39 LD=$(CXX) macro
41 LD=$(CC) macro
62 $(MKLIB) -o $(XA_LIB) -linker $(LD) -ldflags '$(LDFLAGS)' \
/external/sonivox/arm-wt-22k/lib_src/
H A Darm-wt-22k_lib.mak5 # Set the paths to the tools (CC, AR, LD, etc.)
12 LD = C:\Program Files\GNUARM\bin\arm-elf-gcc.exe macro

Completed in 3119 milliseconds

12345678910