代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/277815/4151197
c mutsetup.c
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/* load the inductor structure with those pointers needed
www.eeworm.com/read/277815/4151451
c captemp.c
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
/* load the capacitor structure with those pointers nee
www.eeworm.com/read/275562/4175236
zc list.zc
//[of]:description
//[c]Linked list of pointers
//[cf]
//[of]:imports
//[c]
import "base/types"
import "base/memory-allocator"
import "collection/collection"
//[cf]
//[of]:structures
//[c]
www.eeworm.com/read/272106/4219438
cpp func.cpp
/*
func.cpp -- A program demonstrating function pointers.
*/
#include
void TestFunc ();
int main ()
{
void (*FunctionName)(void);
FunctionName = TestFunc;
Fun
www.eeworm.com/read/444483/1733351
s init.s
# This module initializes BSS section, stack pointers and interrupts for each mode,
# and finally branches to main in the C library (which eventually calls main()).
#
# On reset, the ARM core star
www.eeworm.com/read/437028/1837831
c mutsetup.c
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/* load the inductor structure with those pointers needed
www.eeworm.com/read/437028/1838086
c captemp.c
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1985 Thomas L. Quarles
**********/
/*
*/
/* load the capacitor structure with those pointers nee
www.eeworm.com/read/437018/1839402
c mutsetup.c
/*
* Copyright (c) 1985 Thomas L. Quarles
*/
/* load the inductor structure with those pointers needed later
* for fast matrix loading
*/
#include "prefix.h"
#include
www.eeworm.com/read/433196/1884992
cpp func.cpp
/*
func.cpp -- A program demonstrating function pointers.
*/
#include
void TestFunc ();
int main ()
{
void (*FunctionName)(void);
FunctionName = TestFunc;
Fun
www.eeworm.com/read/366702/2881055
c array-quals-2.c
/* Test that pointers to arrays of differently qualified types aren't
permitted in conditional expressions, and that qualifiers aren't
lost in forming composite types. */
/* Origin: Joseph Myer