代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/470693/1460449
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/470693/1460821
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/470693/1461201
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/470693/1463104
c float.c
double
foo (a, b, c)
double a, b, c;
{
return a * b + c * a;
}
www.eeworm.com/read/470693/1466471
java float.java
/* Float.java -- object wrapper for float
Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can red
www.eeworm.com/read/470693/1467112
h float.h
// -*- C++ -*- compatibility header.
// Copyright (C) 2002 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute i
www.eeworm.com/read/465854/1516406
xpm float.xpm
/* XPM */
static char * float_xpm[] = {
"32 32 56 1",
" c None",
". c #BA8137",
"+ c #A98960",
"@ c #A08D74",
"# c #CFB087",
"$ c #8A879D",
"% c #776FB1",
"& c #C4C1D7",
"* c #DAC7AE",
"= c #3F28EC",
www.eeworm.com/read/465854/1516411
xpm float.xpm
/* XPM */
static char * float_xpm[] = {
"48 48 37 1",
" c None",
". c #BA8137",
"+ c #939393",
"@ c #EAEAEA",
"# c #3F28EC",
"$ c #4832E1",
"% c #543ED3",
"& c #C6B14B",
"* c #FFEB07",
"= c #6A53B9",
www.eeworm.com/read/462434/1546003
h float.h
/*
* float.h
*
* Constants related to floating point arithmetic.
*
* Also included here are some non-ANSI bits for accessing the floating
* point controller.
*
* NOTE: GCC provides float.h, a
www.eeworm.com/read/461961/1548894
h float.h
// Float routines
#pragma once
#include
#include
#include
#include
namespace Mathematics
{
/// Floating point mathematics routines.
n