代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/340665/3267566
lst float.lst
MVP MP Macro Assembler Version 1.13 Wed Feb 26 22:09:09 1997
Copyright (c) 1993-1995 Texas Instruments Incorporated
float.s PA
www.eeworm.com/read/340665/3267581
s float.s
fadd.sdd 0f1.0E23,r6,r10 ; Immediate form
fadd.ssd 0f-1.0E23,r6,r10 ; Immediate form
fadd.sss 0f1.0E-23,r6,r10 ; Immediate form
fcmp.sd 0f-1.0E-23,r8,r10 ; Immediate form
fcmp.ss 0f0.0,r8,r10 ;
www.eeworm.com/read/340665/3267589
d float.d
#objdump: -d
#name: TIc80 simple floating point operands
.*: +file format .*tic80.*
Disassembly of section .text:
00000000 :
0: 80 12 be 51 16 68 a9 65.*
8: 00 12 be 51 16 68 a9 e5.*
www.eeworm.com/read/340665/3267618
l float.l
.*: Assembler messages:
.*:3: Warning:.*faddp.*
.*:14: Warning:.*fsubp.*
.*:25: Warning:.*fsubrp.*
.*:36: Warning:.*fmulp.*
.*:47: Warning:.*fdivp.*
.*:58: Warning:.*fdivrp.*
1 [ ]*.psize 0
2 [
www.eeworm.com/read/340665/3267631
s float.s
.psize 0
.text
fadd
fadd %st(3)
fadd %st(3),%st
fadd %st,%st(3)
fadds (%ebx)
faddl (%ebx)
fiadds (%ebx)
fiaddl (%ebx)
faddp
faddp %st(3)
faddp %st,%st(3)
fsub
fsub %st(3)
fsub %st(3),%st
www.eeworm.com/read/340665/3268812
c float.c
#include
main()
{
float a,b,c;
a = 0.11;
b = 3.12;
c = a+b;
printf ("Print float, result with 'f' = %f\n", c);
printf ("Print float, result with 'e' = %e\n", c);
printf ("Pr
www.eeworm.com/read/340665/3276954
c a-float.c
#include
static float a [10];
static float e [0]; /* GCC only */
int main (void) {
printf ("+++Array float:\n");
printf ("size=%d,align=%d,5th-elem-offset=%d,5th-elem-align=%d\n",
www.eeworm.com/read/340665/3277326
out++ a-float.out++
+++Array float:
size=40,align=4,5th-elem-offset=20,5th-elem-align=4
size=0,align=4,5th-elem-offset=60,5th-elem-align=4
www.eeworm.com/read/340665/3277706
out a-float.out
+++Array float:
size=40,align=4,5th-elem-offset=20,5th-elem-align=4
size=0,align=4,5th-elem-offset=60,5th-elem-align=4
www.eeworm.com/read/340665/3279613
c float.c
double
foo (a, b, c)
double a, b, c;
{
return a * b + c * a;
}