Searched defs:LD (Results 1 - 25 of 48) 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.c171 void test_float_builtins(float F, double D, long double LD) { argument
181 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/src/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/src/contrib/pascal/
H A Dzlibd32.mak11 LD = bcc32 macro
85 $(LD) $(LDFLAGS) example.obj $(ZLIB_LIB)
88 $(LD) $(LDFLAGS) minigzip.obj $(ZLIB_LIB)
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_scanf_interceptor_test.cc85 const unsigned LD = sizeof(long double); // NOLINT local
129 testScanf("%ms %Lf", 2, P, LD);
130 testScanf("s%Las", 1, LD);
149 testScanfNoGnuMalloc("s%Las", 1, LD);
/external/zlib/src/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.cpp403 LabelDecl *LD = cast<LabelDecl>(*I); local
404 Out << "<Label> " << *LD << '\n'; local
/external/llvm/include/llvm/Support/
H A DAllocator.h231 long double LD; member in union:S::__anon9288
/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/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp165 LoadSDNode *LD = cast<LoadSDNode>(N); local
166 EVT LoadedVT = LD->getMemoryVT();
170 if (LD->isIndexed())
177 unsigned int codeAddrSpace = getCodeAddrSpace(LD, Subtarget);
181 bool isVolatile = LD->isVolatile();
209 if ((LD->getExtensionType() == ISD::SEXTLOAD))
222 MVT::SimpleValueType TargetVT = LD->getValueType(0).getSimpleVT().SimpleTy;
343 SDNode *LD; local
425 LD = CurDAG->getMachineNode(Opcode, DL, N->getVTList(), Ops, 7);
459 LD
594 SDNode *LD; local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp422 ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG, argument
425 assert(LD->getAddressingMode() == ISD::UNINDEXED &&
427 SDValue Chain = LD->getChain();
428 SDValue Ptr = LD->getBasePtr();
429 EVT VT = LD->getValueType(0);
430 EVT LoadedVT = LD->getMemoryVT();
431 DebugLoc dl = LD->getDebugLoc();
437 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(),
438 LD->isVolatile(),
439 LD
[all...]
H A DLegalizeTypesGeneric.cpp250 LoadSDNode *LD = cast<LoadSDNode>(N); local
251 EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), LD->getValueType(0));
252 SDValue Chain = LD->getChain();
253 SDValue Ptr = LD->getBasePtr();
254 unsigned Alignment = LD->getAlignment();
255 bool isVolatile = LD->isVolatile();
256 bool isNonTemporal = LD->isNonTemporal();
257 bool isInvariant = LD->isInvariant();
261 Lo = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getPointerInfo(),
269 LD
[all...]
H A DLegalizeVectorOps.cpp155 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode()); local
156 ISD::LoadExtType ExtType = LD->getExtensionType();
157 if (LD->getMemoryVT().isVector() && ExtType != ISD::NON_EXTLOAD) {
158 if (TLI.isLoadExtLegal(LD->getExtensionType(), LD->getMemoryVT()))
379 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode()); local
380 SDValue Chain = LD->getChain();
381 SDValue BasePTR = LD->getBasePtr();
382 EVT SrcVT = LD->getMemoryVT();
383 ISD::LoadExtType ExtType = LD
[all...]
/external/clang/lib/Parse/
H A DParseExpr.cpp953 LabelDecl *LD = Actions.LookupOrCreateLabel(Tok.getIdentifierInfo(), local
955 Res = Actions.ActOnAddrLabel(AmpAmpLoc, Tok.getLocation(), LD);

Completed in 1074 milliseconds

12