代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/482889/1282811
hpp remove_pointer.hpp
// Copyright (C) 2004 Peder Holt
// Use, modification and distribution is subject to the Boost Software
// License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt)
#ifndef BOOST_TYPE_TRAITS_M
www.eeworm.com/read/482889/1282830
hpp add_pointer.hpp
// (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
// Use, modification and distribution are subject to the Boost Software License,
// Version 1.0. (See accompanying
www.eeworm.com/read/482889/1285256
hpp pointer_holder.hpp
#if !defined(BOOST_PP_IS_ITERATING)
// Copyright David Abrahams 2001.
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http:/
www.eeworm.com/read/473745/1397309
s37 pointer.s37
S315000102300891FF0709930080D19411EE88D4D196D5
S31500010240D1985C995C994C99049DD198D19A03EE09
S31500010250F494D3D4412A404A45BE8892412440446D
S30F0001026053BE40F043A341EE989A05
S30F00015898DE80CE80
www.eeworm.com/read/470720/1445974
c pointer1.c
// Build don't link:
template
struct S1
{
};
template
struct S2
{
typedef T* pointer_t;
};
int f(S2::pointer_t p1, S2::pointer_t p2)
{
return (int) (p1 -
www.eeworm.com/read/470720/1448449
c a-of-s-pointer.c
#include
static struct sss{
char * f;
} a[10];
int main (void) {
printf ("++++Array of struct with pointer:\n");
printf ("size=%d,align=%d,displ-a[5]=%d,align-a[5]=%d\n",
s
www.eeworm.com/read/470720/1448470
c size-pointer.c
#include
static char *p;
int main(void)
{
printf ("+++Pointer size:\n");
printf ("%d\n", sizeof (p));
return 0;
}
www.eeworm.com/read/470720/1448548
c align-pointer.c
#include
static char *p;
int main(void)
{
printf ("+++Pointer alignment:\n");
printf ("%d\n", __alignof__ (p));
return 0;
}