代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/393286/2478099
makefile
#
# Makefile for the linux/parisc floating point code
#
# See arch/parisc/math-emu/README
CFLAGS += -Wno-parentheses -Wno-implicit-function-declaration \
-Wno-uninitialized -Wno-strict-prototypes -W
www.eeworm.com/read/392548/2495020
mak unzip_cr.mak
.AUTODEPEND
# *Translator Definitions*
CC = bcc +UNZIP_CR.CFG
TASM = TASM
TLINK = tlink
# *Implicit Rules*
.c.obj:
$(CC) -c {$< }
.cpp.obj:
$(CC) -c {$< }
# *List Macros*
EXE_dependencie
www.eeworm.com/read/388600/2548916
f90 c2rsinc.f90
program C2Rsinc
!! interpolates from cartesian coordinates to ray coordinates
!! using sinc interpolation
!! Paul Sava (paul@sep.stanford.edu)
!! 08/15/03
use rsf
implicit none
type (f
www.eeworm.com/read/376006/2718050
out truncate.out
-- Test basic TRUNCATE functionality.
CREATE TABLE truncate_a (col1 integer primary key);
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "truncate_a_pkey" for table "truncate_a"
INSERT
www.eeworm.com/read/366702/2864966
c 3dnow-2.c
/* { dg-do assemble } */
/* { dg-options "-O0 -Werror-implicit-function-declaration -m3dnow" } */
/* Test that the intrinsics compile without optimization. All of them are
defined as inline funct
www.eeworm.com/read/366702/2865619
c wconversion-integer.c
/* Test for diagnostics for implicit conversions between integer types
C++ equivalent of gcc/testsuite/gcc.dg/Wconversion-integer.c */
// { dg-do compile }
// { dg-options "-fsigned-char -Wconve
www.eeworm.com/read/366702/2866153
c dllimport5.c
// { dg-do compile { target i?86-*-cygwin* i?86-*-mingw*} }
// Report error if static symbol definition has dllimport attribute.
__attribute__((dllimport))
int impvar; // OK, implicit "extern"
www.eeworm.com/read/366702/2869229
c comdat3.c
// { dg-do run }
// { dg-additional-sources " comdat3-aux.cc" }
// Test that duplicate elimination of implicit instantiations of static
// data members works properly.
// Additional files: comdat3.h
www.eeworm.com/read/366702/2869746
c cast6.c
// { dg-do assemble }
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 28 Nov 2000
// We failed to reject static_cast and implicit con
www.eeworm.com/read/366702/2873139
f90 random_1.f90
! PR15619
! Check that random_seed works as expected.
! Does not check the quality of random numbers, hence should never fail.
program test_random
implicit none
integer, allocatable :: seed(:)
r