代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/191809/5161856
s float.s
.text
.align 0
mvfe f0, f1
mvfeqe f3, f5
mvfeqd f4, #1.0
mvfs f4, f7
mvfsp f0, f1
mvfdm f3, f4
mvfez f7, f7
adfe f0, f1, #2.0
adfeqe f1, f2, #0.5
adfsm f3, f4, f5
sufd f0, f0, #2.0
sufs
www.eeworm.com/read/191809/5161901
s float.s
.text
foo: .single 0r1.2345e+06
.single 0f3.14159
.double 0r2.718282
www.eeworm.com/read/190682/5171113
s float.s
; Test floating point constants in MRI mode.
dc.d :1234_5678_9abc_def0
dc.s 1.0
dc.s 1e1
dc.s 1_e_1
dc.s 1E2
www.eeworm.com/read/190682/5171119
d float.d
#objcopy: -O srec
#name: MRI floating point constants
#as: -M
# Test MRI floating point constants
S0.*
S118....(123456789ABCDEF03F800000412000004120000042)|(F0DEBC9A785634120000803F00002041000020410
www.eeworm.com/read/190682/5171171
s float.s
.text
.align 0
mvfe f0, f1
mvfeqe f3, f5
mvfeqd f4, #1.0
mvfs f4, f7
mvfsp f0, f1
mvfdm f3, f4
mvfez f7, f7
adfe f0, f1, #2.0
adfeqe f1, f2, #0.5
adfsm f3, f4, f5
sufd f0, f0, #2.0
sufs
www.eeworm.com/read/190682/5171216
s float.s
.text
foo: .single 0r1.2345e+06
.single 0f3.14159
.double 0r2.718282
www.eeworm.com/read/190666/5176271
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/190666/5176643
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/190666/5177023
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/190666/5178864
c float.c
double
foo (a, b, c)
double a, b, c;
{
return a * b + c * a;
}