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

12345678

/external/clang/test/CodeGen/
H A Dmips64-f128-literal.c3 typedef long double LD; typedef
7 LD foo0() {
/external/vixl/tools/
H A Dcross_build_gcc.sh38 export LD=$1ld
57 if [ ! -x "$LD" ]; then
58 echo "Error: $LD does not exist or is not executable."
/external/chromium_org/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/openssl/crypto/bn/asm/
H A Dppc.pl110 $LD= "lwz"; # load
134 $LD= "ld"; # load
287 $LD r5,`0*$BNSZ`(r4)
296 $LD r6,`1*$BNSZ`(r4)
317 $LD r6,`2*$BNSZ`(r4)
330 $LD r6,`3*$BNSZ`(r4)
341 $LD r5,`1*$BNSZ`(r4)
342 $LD r6,`2*$BNSZ`(r4)
360 $LD r6,`3*$BNSZ`(r4)
372 $LD r
[all...]
H A Dppc-mont.pl35 $LD= "lwz"; # load
47 $POP= $LD;
55 $LD= "ld"; # load
67 $POP= $LD;
148 $LD $n0,0($n0) ; pull n0[0] value
152 $LD $m0,0($bp) ; m0=bp[0]
153 $LD $aj,0($ap) ; ap[0]
158 $LD $aj,$BNSZ($ap) ; ap[1]
159 $LD $nj,0($np) ; np[0]
168 $LD
[all...]
H A Dmips-mont.pl74 $LD="ld";
81 $LD="lw";
168 $LD $n0,0($n0)
169 $LD $bi,0($bp) # bp[0]
170 $LD $aj,0($ap) # ap[0]
171 $LD $nj,0($np) # np[0]
180 $LD $alo,$BNSZ($ap)
181 $LD $nlo,$BNSZ($np)
208 $LD $aj,($aj)
209 $LD
[all...]
/external/bison/djgpp/
H A Dconfig.site77 LD=${LD='ld'}
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMakefile18 LD.Flags += $(RDYNAMIC)
/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-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-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/openssl/crypto/sha/asm/
H A Dsha512-mips.pl81 $LD="ld"; # load from memory
95 $LD="lw"; # load from memory
123 ${LD}l @X[1],`($i+1)*$SZ+$MSB`($inp)
124 ${LD}r @X[1],`($i+1)*$SZ+$LSB`($inp)
176 $LD $tmp2,`$i*$SZ`($Ktbl) # K[$i]
201 $LD @X[3],`(($i+3)%16)*$SZ`($sp) # prefetch from ring buffer
293 $LD $A,0*$SZ($ctx) # load context
294 $LD $B,1*$SZ($ctx)
295 $LD $C,2*$SZ($ctx)
296 $LD
[all...]
H A Dsha512-s390x.pl73 $LD="lg"; # load from memory
87 $LD="llgf"; # load from memory
108 $LD $T1,`$i*$SZ`($inp) ### $i
146 $LD $T1,`$stdframe+$SZ*(($i+1)%16)`($sp) ### $i
147 $LD $t1,`$stdframe+$SZ*(($i+14)%16)`($sp)
268 $LD $A,`0*$SZ`($ctx)
269 $LD $B,`1*$SZ`($ctx)
270 $LD $C,`2*$SZ`($ctx)
271 $LD $D,`3*$SZ`($ctx)
272 $LD
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp94 SDNode *SelectBaseOffsetLoad(LoadSDNode *LD, SDLoc dl);
95 SDNode *SelectIndexedLoad(LoadSDNode *LD, SDLoc dl);
96 SDNode *SelectIndexedLoadZeroExtend64(LoadSDNode *LD, unsigned Opcode,
98 SDNode *SelectIndexedLoadSignExtend64(LoadSDNode *LD, unsigned Opcode,
387 SDNode *HexagonDAGToDAGISel::SelectBaseOffsetLoad(LoadSDNode *LD, SDLoc dl) { argument
388 SDValue Chain = LD->getChain();
389 SDNode* Const32 = LD->getBasePtr().getNode();
393 ISD::isNormalLoad(LD)) {
395 EVT LoadedVT = LD->getMemoryVT();
416 LD
433 SelectIndexedLoadSignExtend64(LoadSDNode *LD, unsigned Opcode, SDLoc dl) argument
500 SelectIndexedLoadZeroExtend64(LoadSDNode *LD, unsigned Opcode, SDLoc dl) argument
580 SelectIndexedLoad(LoadSDNode *LD, SDLoc dl) argument
678 LoadSDNode *LD = cast<LoadSDNode>(N); local
859 LoadSDNode *LD = cast<LoadSDNode>(MulOp0.getNode()); local
885 LoadSDNode *LD = cast<LoadSDNode>(MulOp1.getNode()); local
1039 LoadSDNode *LD = cast<LoadSDNode>(MulOp0.getNode()); local
1064 LoadSDNode *LD = cast<LoadSDNode>(MulOp1.getNode()); local
[all...]
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelDAGToDAG.cpp304 static bool isValidIndexedLoad(const LoadSDNode *LD) { argument
305 ISD::MemIndexedMode AM = LD->getAddressingMode();
306 if (AM != ISD::POST_INC || LD->getExtensionType() != ISD::NON_EXTLOAD)
309 EVT VT = LD->getMemoryVT();
314 if (cast<ConstantSDNode>(LD->getOffset())->getZExtValue() != 1)
320 if (cast<ConstantSDNode>(LD->getOffset())->getZExtValue() != 2)
332 LoadSDNode *LD = cast<LoadSDNode>(N); local
333 if (!isValidIndexedLoad(LD))
336 MVT VT = LD->getMemoryVT().getSimpleVT();
352 LD
361 LoadSDNode *LD = cast<LoadSDNode>(N1); local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/tests/
H A Dlc3b-mp22NC.asm7 LD R7, R0, ADATA3F-AA
9 LD R6, R2, CDATA3F-CC
21 LD R5, R1, BDATA3A-BB
22 LD R7, R0, ADATA39-AA
33 LD R7, R2, CDATA37-CC
35 LD R6, R1, BDATA35-BB
37 LD R5, R2, CDATA36-CC
38 LD R7, R0, ADATA36-AA
40 LD R7, R1, BDATA35-BB
41 LD R
[all...]
/external/chromium_org/third_party/mesa/src/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/llvm/unittests/ExecutionEngine/JIT/
H A DMakefile46 LD.Flags += $(RDYNAMIC)
/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-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/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/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/qemu/android/build/
H A Dcommon.sh228 LD=$MINGW_CC
289 if [ -z "$LD" ] ; then
290 LD=$CC
298 log "LD : linker check ok ($LD)"
320 log2 "Link : $LD -o $TMPE $TMPO $LDFLAGS"
321 $LD -o $TMPE $TMPO $LDFLAGS 2> $TMPL
567 echo "LD := $LD" >> $config_mk
572 echo "HOST_LD := $LD" >>
[all...]

Completed in 518 milliseconds

12345678