代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/13911/287021
m nobias.m
function nb = nobias(ker)
%NOBIAS returns true if SVM kernel has no implicit bias
%
% Usage: nb = nobias(ker)
%
% Parameters: ker - kernel type
%
% Author: Steve Gunn (srg@ecs.soton.a
www.eeworm.com/read/13911/287049
m nobias.m
function nb = nobias(ker)
%NOBIAS returns true if SVM kernel has no implicit bias
%
% Usage: nb = nobias(ker)
%
% Parameters: ker - kernel type
%
% Author: Steve Gunn (srg@ecs.soton.a
www.eeworm.com/read/470720/1447594
c 900209_01.c
// g++ 1.36.1 bug 900209_01
// g++ implicitly casts values whose types are "void*" to other pointer
// types (just as the language rules for C permit). Such implicit
// conversions are not allowed b
www.eeworm.com/read/470720/1447597
c 900211_04.c
// g++ 1.36.1 bug 900211_04
// g++ fails to flag as errors attempts to compare pointer values against
// (nonzero) integer values;
// Since implicit conversions of pointer to integers (or vise versa
www.eeworm.com/read/470720/1447732
c template36.c
// Testcase for implicit 'typename' and resolution of 'typename's in the
// current scope.
class base1 {
public:
int bar() const
{ return 1; }
};
class base2 {
public:
int bar() const
www.eeworm.com/read/470693/1459540
c 900209_01.c
// g++ 1.36.1 bug 900209_01
// g++ implicitly casts values whose types are "void*" to other pointer
// types (just as the language rules for C permit). Such implicit
// conversions are not allowed b
www.eeworm.com/read/470693/1459543
c 900211_04.c
// g++ 1.36.1 bug 900211_04
// g++ fails to flag as errors attempts to compare pointer values against
// (nonzero) integer values;
// Since implicit conversions of pointer to integers (or vise versa
www.eeworm.com/read/470693/1459678
c template36.c
// Testcase for implicit 'typename' and resolution of 'typename's in the
// current scope.
class base1 {
public:
int bar() const
{ return 1; }
};
class base2 {
public:
int bar() const
www.eeworm.com/read/460526/1560707
f90 main.f90
program main
use GAME
implicit none
call sglDisplaySub(display)
call sglKeyDownSub(keydown)
call sglIdleSub(OnIdle)
call Init()
call sglCreateWindow(50,50,SX,SY,1)
call sgl
www.eeworm.com/read/240162/4580546
c static5.c
// { dg-do assemble }
// Origin: Mark Mitchell
struct S
{
~S();
};
inline void f()
{
static S s;
atexit (0); // { dg-error "" } implicit declaration
}