代码搜索:self
找到约 10,000 项符合「self」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5523002
m stubify-2.m
/* All calls must be properly stubified. */
/* Testcase extracted from TextEdit:Document.m. */
/* { dg-do compile { target *-*-darwin* } } */
/* { dg-options "-mdynamic-no-pic -fdump-rtl-jump" } */
www.eeworm.com/read/162614/5527586
c 980506-2.c
static void *self(void *p){ return p; }
int
f()
{
struct { int i; } s, *sp;
int *ip = &s.i;
s.i = 1;
sp = self(&s);
*ip = 0;
return sp->i+1;
}
main()
{
if (f () != 1)
abort ();
www.eeworm.com/read/161121/5559593
c irport.c
/*********************************************************************
*
* Filename: irport.c
* Version: 1.0
* Description: Half duplex serial port SIR driver for IrDA.
* Status: Experi
www.eeworm.com/read/161121/5560832
c ircomm_ttp.c
/*********************************************************************
*
* Filename: ircomm_ttp.c
* Version: 1.0
* Description: Interface between IrCOMM and IrTTP
* S
www.eeworm.com/read/160868/5565128
py svm.py
import svmc
from svmc import C_SVC, NU_SVC, ONE_CLASS, EPSILON_SVR, NU_SVR
from svmc import LINEAR, POLY, RBF, SIGMOID
from math import exp, fabs
def _int_array(seq):
size = len(seq)
array = svmc.n
www.eeworm.com/read/160391/5571421
m update_ess.m
function CPD = update_ess(CPD, fmarginal, evidence, ns, cnodes, hidden_bitv)
% UPDATE_ESS Update the Expected Sufficient Statistics of a CPD (MLP)
% CPD = update_ess(CPD, family_marginal, evidence,
www.eeworm.com/read/160391/5571667
m filter_evidence_obj_oriented.m
function [marginal, msg, loglik] = filter_evidence_old(engine, evidence)
% [marginal, msg, loglik] = filter_evidence(engine, evidence) (pearl_dbn)
[ss T] = size(evidence);
bnet = bnet_from_engine
www.eeworm.com/read/159050/5588462
py outputformattest.py
# $Id: outputformattest.py,v 1.7 2005/03/10 22:57:25 sean Exp $
#
# Project: MapServer
# Purpose: xUnit style Python mapscript tests of outputFormatObj
# Author: Sean Gillies, sgillies@frii.com
#