代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/274450/10871322
s init.s
;;; Copyright ARM Ltd 2001. All rights reserved.
;
; This module performs ROM/RAM remapping (if required), initializes stack
; pointers and interrupts for each mode, and finally branches to __main
www.eeworm.com/read/274450/10871354
s init.s
;;; Copyright ARM Ltd 2001. All rights reserved.
;
; This module performs ROM/RAM remapping (if required), initializes stack
; pointers and interrupts for each mode, and finally branches to __main
www.eeworm.com/read/274450/10871393
s init.s
;;; Copyright ARM Ltd 2001. All rights reserved.
;
; This module performs ROM/RAM remapping (if required), initializes stack
; pointers and interrupts for each mode, and finally branches to __main
www.eeworm.com/read/274450/10871428
s init.s
;;; Copyright ARM Ltd 2001. All rights reserved.
;
; This module performs ROM/RAM remapping (if required), initializes stack
; pointers and interrupts for each mode, and finally branches to __main
www.eeworm.com/read/470589/6914114
cpp modulestack.cpp
#include "Floorplan.h"
ModuleStack::ModuleStack(unsigned int nCapacity) {
size = nCapacity;
array = new int[size]; // ints will serve as pointers here
tos = 0;
}
ModuleStack::~ModuleStack() {
de
www.eeworm.com/read/469590/6932544
readme
Example of using a linked list (simply linked). Although this example
is pretty simple, it shows how XDR handles pointers. The most interesting
part of this example is probably the generated code in l
www.eeworm.com/read/135707/7086884
s init.s
;;; Copyright ARM Ltd 2001. All rights reserved.
;
; This module performs ROM/RAM remapping (if required), initializes stack
; pointers and interrupts for each mode, and finally branches to __main
www.eeworm.com/read/452695/7436357
c program7_01.c
/* Program 7.1 A simple program using pointers */
#include
int main(void)
{
int number = 0; /* A variable of type int initialized to 0 */
int *pointer = NULL;
www.eeworm.com/read/450005/7491804
txt pebi.txt
Option Explicit
'Points (Vertices)
Public Type dVertex
x As Long
y As Long
z As Long
End Type
'Created Triangles, vv# are the vertex pointers
Public Type dTriangle
www.eeworm.com/read/199075/7890530
cpp arrayptrfunction.cpp
//Listing 20.10 Array of pointers to member functions
#include
class Dog
{
public:
void Speak()const { std::cout