代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/221464/4831686
cpp test_pointer_adoption.cpp
// Copyright David Abrahams 2002. Permission to copy, use,
// modify, sell and distribute this software is granted provided this
// copyright notice appears in all copies. This software is provided
www.eeworm.com/read/221464/4831766
py test_pointer_adoption.py
"""
>>> from test_pointer_adoption_ext import *
>>> num_a_instances()
0
>>> a = create('dynamically allocated')
>>> num_a_instances()
1
>>> a.content()
'dynamically allocated'
>>> inn
www.eeworm.com/read/190666/5172527
c omit-frame-pointer.c
// { dg-do run }
// { dg-options -fomit-frame-pointer }
// { dg-options "-fomit-frame-pointer -mno-accumulate-outgoing-args" { target i?86-*-* } }
#include
class Bug
{
};
int throw_bug()
www.eeworm.com/read/190666/5176208
c s-float-pointer.c
#include
static struct sss{
float f;
char * snd;
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("+++Struct float-pointer:\n");
pr
www.eeworm.com/read/190666/5176221
c s-int-a-pointer.c
#include
static struct sss{
int f;
char * a[10];
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("++++Array of pointer in struct sta
www.eeworm.com/read/190666/5176266
c s-pointer-short.c
#include
static struct sss{
char * f;
short snd;
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("+++Struct pointer-short:\n");
pr
www.eeworm.com/read/190666/5176289
c s-char-a-pointer.c
#include
static struct sss{
char f;
char * a[10];
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("++++Array of pointer in struct st
www.eeworm.com/read/190666/5176312
c s-pointer-int.c
#include
static struct sss{
char * f;
int snd;
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("+++Struct pointer-int:\n");
printf
www.eeworm.com/read/190666/5176345
c s-longlong-a-pointer.c
#include
static struct sss{
long long f;
char * a[10];
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("++++Array of pointer in stru
www.eeworm.com/read/190666/5176350
c s-long-pointer.c
#include
static struct sss{
long f;
char * snd;
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("+++Struct long-pointer:\n");
prin