Searched defs:LD (Results 1 - 25 of 45) sorted by relevance

12

/external/clang/test/CodeGen/
H A Dmips64-f128-literal.c3 typedef long double LD; typedef
7 LD foo0() {
H A Dbuiltins.c170 void test_float_builtins(float F, double D, long double LD) { argument
180 res = __builtin_isinf(LD);
/external/sonivox/arm-fm-22k/host_src/
H A Darm-fm-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-fm-22k.a -lm
/external/sonivox/arm-fm-22k/lib_src/
H A Darm-fm-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
/external/sonivox/arm-hybrid-22k/host_src/
H A Darm-hybrid-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-hybrid-22k.a -lm
/external/sonivox/arm-hybrid-22k/lib_src/
H A Darm-hybrid-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
/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/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
/external/libpng/contrib/pngminim/decoder/
H A Dmakefile6 LD=$(CC) macro
36 $(LD) -o pngm2pnm$(E) $(OBJS)
/external/libpng/contrib/pngminim/encoder/
H A Dmakefile6 LD=$(CC) macro
35 $(LD) -o pnm2pngm$(E) $(OBJS)
/external/libpng/contrib/pngminim/preader/
H A Dmakefile6 LD=$(CC) macro
52 $(LD) -o rpng2-x$(E) $(OBJS) $(LIBS)
/external/zlib/contrib/delphi/
H A Dzlibd32.mak11 LD = bcc32 macro
85 $(LD) $(LDFLAGS) example.obj $(ZLIB_LIB)
88 $(LD) $(LDFLAGS) minigzip.obj $(ZLIB_LIB)
/external/zlib/contrib/pascal/
H A Dzlibd32.mak11 LD = bcc32 macro
85 $(LD) $(LDFLAGS) example.obj $(ZLIB_LIB)
88 $(LD) $(LDFLAGS) minigzip.obj $(ZLIB_LIB)
/external/valgrind/tsan/pin/
H A DMakefile22 LD=g++ macro
35 LD=link macro
85 $(LD) $(LDFLAGS) $(LIBPATHS) -o $@ $^ $(LIBS)
88 $(LD) $(LDFLAGS) $(LIBPATHS) /IMPLIB:ts_pin$(SUFIX).lib /PDB:ts_pin$(SUFIX).pdb /OUT:$@ $^ $(LIBS)
/external/zlib/nintendods/
H A DMakefile70 export LD := $(CC) macro
74 export LD := $(CXX) macro
/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/clang/lib/Frontend/
H A DASTConsumers.cpp331 LabelDecl *LD = cast<LabelDecl>(*I); local
332 Out << "<Label> " << *LD << '\n'; local
/external/llvm/include/llvm/Support/
H A DAllocator.h231 long double LD; member in union:S::__anon7192
/external/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/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/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypesGeneric.cpp206 LoadSDNode *LD = cast<LoadSDNode>(N); local
207 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), LD->getValueType(0));
208 SDValue Chain = LD->getChain();
209 SDValue Ptr = LD->getBasePtr();
210 unsigned Alignment = LD->getAlignment();
211 bool isVolatile = LD->isVolatile();
212 bool isNonTemporal = LD->isNonTemporal();
213 bool isInvariant = LD->isInvariant();
217 Lo = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getPointerInfo(),
225 LD
[all...]
H A DLegalizeVectorOps.cpp130 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode()); local
131 ISD::LoadExtType ExtType = LD->getExtensionType();
132 if (LD->getMemoryVT().isVector() && ExtType != ISD::NON_EXTLOAD) {
133 if (TLI.isLoadExtLegal(LD->getExtensionType(), LD->getMemoryVT()))
299 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode()); local
300 SDValue Chain = LD->getChain();
301 SDValue BasePTR = LD->getBasePtr();
302 EVT SrcVT = LD->getMemoryVT();
303 ISD::LoadExtType ExtType = LD
[all...]
/external/clang/lib/AST/
H A DStmtDumper.cpp292 } else if (LabelDecl *LD = dyn_cast<LabelDecl>(D)) {
293 OS << "label " << *LD; local
/external/llvm/include/llvm/ADT/
H A DSmallVector.h41 long double LD; member in union:llvm::SmallVectorBase::U
/external/clang/lib/Parse/
H A DParseExpr.cpp932 LabelDecl *LD = Actions.LookupOrCreateLabel(Tok.getIdentifierInfo(), local
934 Res = Actions.ActOnAddrLabel(AmpAmpLoc, Tok.getLocation(), LD);

Completed in 570 milliseconds

12