代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/233448/4685296
c i386-3dnow-2.c
/* { dg-do assemble { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-O0 -Werror-implicit-function-declaration -m3dnow" } */
/* Test that the intrinsics compile without optimization. All of them
www.eeworm.com/read/233448/4686135
c i386-3dnowa-2.c
/* { dg-do assemble { target i?86-*-* } } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-O0 -Werror-implicit-function-declaration -m3dnow -march=athlon" } */
/* Test that the intrin
www.eeworm.com/read/233448/4686170
c 20020116-2.c
/* This testcase ICEd on sparc64 because -mcpu=supersparc and implicit
-m64 resulted in MASK_V8 and MASK_V9 to be set at the same time. */
/* { dg-do compile } */
/* { dg-options "" } */
/* { dg-o
www.eeworm.com/read/209559/4970678
h percpu.h
#ifndef __V850_PERCPU_H__
#define __V850_PERCPU_H__
#include
/* This is a stupid hack to satisfy some grotty implicit include-file
dependency; basically, uses
www.eeworm.com/read/190666/5179942
c 20020116-2.c
/* This testcase ICEd on sparc64 because -mcpu=supersparc and implicit
-m64 resulted in MASK_V8 and MASK_V9 to be set at the same time. */
/* { dg-do compile } */
/* { dg-options "" } */
/* { dg-o
www.eeworm.com/read/183001/5260320
out cluster.out
--
-- CLUSTER
--
CREATE TABLE clstr_tst_s (rf_a SERIAL PRIMARY KEY,
b INT);
NOTICE: CREATE TABLE will create implicit sequence "clstr_tst_s_rf_a_seq" for serial column "clstr_tst_s.rf_a"
NOTICE: C
www.eeworm.com/read/162614/5523169
f90 intrinsic_integer.f90
! Program to test the real->integer conversion routines.
program intrinsic_integer
implicit none
call test (0.0, (/0, 0, 0, 0/))
call test (0.3, (/0, 1, 0, 0/))
call test (0.7, (/0, 1, 0, 1/)
www.eeworm.com/read/162614/5523215
f90 cmplx.f90
! Test complex munbers
program testcmplx
implicit none
complex(kind=4) c, d
complex(kind=8) z
real(kind=4) x, y
real(kind=8) q
! cmplx intrinsic
x = 3
y = 4
c = cmplx(x,y)
www.eeworm.com/read/162614/5523276
f90 intrinsic_dim.f90
! Program to test the DIM intrinsic
program intrinsic_dim
implicit none
integer i, j
real(kind=4) :: r, s
real(kind=8) :: p, q
i = 1
j = 4
if (dim (i, j) .ne. 0) call abort
if
www.eeworm.com/read/162614/5523303
f90 intrinsic_abs.f90
! Program to test the ABS intrinsic
program intrinsic_abs
implicit none
integer i
real(kind=4) r
real(kind=8) q
complex z
i = 42
i = abs(i)
if (i .ne. 42) call abort
i = -4