代码搜索:Built-In
找到约 2,787 项符合「Built-In」的源代码
代码结果 2,787
www.eeworm.com/read/162614/5530180
c builtin-wctype-1.c
/* Copyright (C) 2004, 2005 Free Software Foundation.
Verify that built-in wctype function attributes are correctly set
by the compiler.
Written by Kaveh Ghazi, 2004-03-25. */
/* { dg-do
www.eeworm.com/read/162614/5530695
c builtins-17.c
/* Copyright (C) 2003 Free Software Foundation.
Check that constant folding of built-in math functions doesn't
break anything and produces the expected results.
Written by Roger Sayle, 25th
www.eeworm.com/read/162614/5530815
c builtins-11.c
/* Copyright (C) 2003 Free Software Foundation.
Check that constant folding of built-in math functions doesn't
break anything and produces the expected results.
Written by Roger Sayle, 5th
www.eeworm.com/read/162614/5531263
c builtins-10.c
/* Copyright (C) 2003 Free Software Foundation.
Check that constant folding of built-in math functions doesn't
break anything and produces the expected results.
Written by Roger Sayle, 2nd
www.eeworm.com/read/161059/5561191
lst os_cpu.lst
GAS LISTING C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp/ccAvaaaa.s page 1
1 # 1 "os_cpu.S"
2 # 1 ""
1
0
0
www.eeworm.com/read/473219/6849175
m min.m
function y=min(varargin)
%MIN (overloaded)
%
% t = min(x,y,z...) % Scalar arguments
% t = min(X) % Matrix arguments, see built-in min for details
%
% Creates an internal structure rela
www.eeworm.com/read/473219/6849194
m max.m
function y=max(varargin)
%MAX (overloaded)
%
% t = max(x,y,z...) % Scalar SDPVAR arguments
% t = max(X) % Matrix SDPVAR arguments, see built-in min for details
%
% Creates an internal
www.eeworm.com/read/147186/12578804
m montagekpm.m
function h = montageKPM(arg)
% montageKPM is like the built-in montage, but assumes input is MxNxK or filenames
%
% Converts patches (y,x,i) into patches(y,x,1,i)
% Also, adds a black border aroud
www.eeworm.com/read/147186/12579095
m myunion.m
function C = myunion(A,B)
% MYUNION Union of two sets of positive integers (much faster than built-in union)
% C = myunion(A,B)
if isempty(A)
ma = 0;
else
ma = max(A);
end
if isempty(B
www.eeworm.com/read/113029/15472376
cpp fig07_05.cpp
// Fig. 7.5: fig07_05.cpp
// Attempting to initialize a constant of
// a built-in data type with an assignment.
#include
using std::cout;
using std::endl;
class Increment {
pub