代码搜索:pointer

找到约 10,000 项符合「pointer」的源代码

代码结果 10,000
www.eeworm.com/read/304657/3788163

java pointer32.java

/* Pointer32.java -- 32 bit Pointer Copyright (C) 2004 Free Software Foundation This file is part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify it under
www.eeworm.com/read/304657/3788170

java pointer64.java

/* Pointer64.java -- 64 bit Pointer Copyright (C) 2004 Free Software Foundation This file is part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify it under
www.eeworm.com/read/298327/3867396

hpp get_pointer.hpp

// Copyright (c) 2005 Daniel Wallin // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to
www.eeworm.com/read/297003/3895606

old pointer.active.old

# # pointer.active # rex.test 000000021 0000000001 y control.cancel 0000000004 0000000001 y
www.eeworm.com/read/284802/4059710

hpp mstl_pointer.hpp

/* The young Library Copyright (c) 2005 by 杨桓 Permission to use, copy, modify, distribute and sell this software for any purpose is hereby granted without fee, provided that the above copyright
www.eeworm.com/read/273759/4193410

sgml arrays_pointer.sgml

Pointer Arrays arrays of pointers to any type of data, which grow automatically as new elements are added.
www.eeworm.com/read/440906/1776053

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/440906/1778532

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/440906/1778553

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/440906/1778631

c align-pointer.c

#include static char *p; int main(void) { printf ("+++Pointer alignment:\n"); printf ("%d\n", __alignof__ (p)); return 0; }