⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 amdb_btree.cpp

📁 Libgist is an implementation of the Generalized Search Tree, a template index structure that makes i
💻 CPP
📖 第 1 页 / 共 5 页
字号:
                _CurrentRuneLocale->maplower[_c];}# 50 "/usr/include/gcc/darwin/3.3/c++/cctype" 2 3# 71 "/usr/include/gcc/darwin/3.3/c++/cctype" 3extern "C" {extern int isalnum(int c);extern int isalpha(int c);extern int iscntrl(int c);extern int isdigit(int c);extern int isgraph(int c);extern int islower(int c);extern int isprint(int c);extern int ispunct(int c);extern int isspace(int c);extern int isupper(int c);extern int isxdigit(int c);}namespace std{  using ::isalnum;  using ::isalpha;  using ::iscntrl;  using ::isdigit;  using ::isgraph;  using ::islower;  using ::isprint;  using ::ispunct;  using ::isspace;  using ::isupper;  using ::isxdigit;  using ::tolower;  using ::toupper;}# 48 "/usr/include/gcc/darwin/3.3/c++/iosfwd" 2 3# 1 "/usr/include/gcc/darwin/3.3/c++/bits/stringfwd.h" 1 3# 43 "/usr/include/gcc/darwin/3.3/c++/bits/stringfwd.h" 3namespace std{  template<typename _Alloc>    class allocator;  template<class _CharT>    struct char_traits;  template<typename _CharT, typename _Traits = char_traits<_CharT>,           typename _Alloc = allocator<_CharT> >    class basic_string;  template<> struct char_traits<char>;  typedef basic_string<char> string;}# 49 "/usr/include/gcc/darwin/3.3/c++/iosfwd" 2 3# 1 "/usr/include/gcc/darwin/3.3/c++/bits/fpos.h" 1 3# 43 "/usr/include/gcc/darwin/3.3/c++/bits/fpos.h" 3# 1 "/usr/include/gcc/darwin/3.3/c++/ppc-darwin/bits/c++io.h" 1 3# 35 "/usr/include/gcc/darwin/3.3/c++/ppc-darwin/bits/c++io.h" 3# 1 "/usr/include/gcc/darwin/3.3/c++/cstdio" 1 3# 48 "/usr/include/gcc/darwin/3.3/c++/cstdio" 3# 97 "/usr/include/gcc/darwin/3.3/c++/cstdio" 3namespace std{  using ::FILE;  using ::fpos_t;  using ::clearerr;  using ::fclose;  using ::feof;  using ::ferror;  using ::fflush;  using ::fgetc;  using ::fgetpos;  using ::fgets;  using ::fopen;  using ::fprintf;  using ::fputc;  using ::fputs;  using ::fread;  using ::freopen;  using ::fscanf;  using ::fseek;  using ::fsetpos;  using ::ftell;  using ::fwrite;  using ::getc;  using ::getchar;  using ::gets;  using ::perror;  using ::printf;  using ::putc;  using ::putchar;  using ::puts;  using ::remove;  using ::rename;  using ::rewind;  using ::scanf;  using ::setbuf;  using ::setvbuf;  using ::sprintf;  using ::sscanf;  using ::tmpfile;  using ::tmpnam;  using ::ungetc;  using ::vfprintf;  using ::vprintf;  using ::vsprintf;}# 36 "/usr/include/gcc/darwin/3.3/c++/ppc-darwin/bits/c++io.h" 2 3# 1 "/usr/include/gcc/darwin/3.3/c++/ppc-darwin/bits/gthr.h" 1 3# 98 "/usr/include/gcc/darwin/3.3/c++/ppc-darwin/bits/gthr.h" 3# 1 "/usr/include/gcc/darwin/3.3/c++/ppc-darwin/bits/gthr-default.h" 1 3# 37 "/usr/include/gcc/darwin/3.3/c++/ppc-darwin/bits/gthr-default.h" 3# 1 "/usr/include/pthread.h" 1 3 4# 34 "/usr/include/pthread.h" 3 4# 1 "/usr/include/pthread_impl.h" 1 3 4# 35 "/usr/include/pthread.h" 2 3 4# 1 "/usr/include/errno.h" 1 3 4# 22 "/usr/include/errno.h" 3 4# 1 "/usr/include/sys/errno.h" 1 3 4# 68 "/usr/include/sys/errno.h" 3 4extern "C" {extern int * __error (void);}# 23 "/usr/include/errno.h" 2 3 4# 37 "/usr/include/pthread.h" 2 3 4# 1 "/usr/include/sched.h" 1 3 4# 10 "/usr/include/sched.h" 3 4struct sched_param { int sched_priority; char opaque[4]; };extern int sched_yield(void);extern int sched_get_priority_min(int);extern int sched_get_priority_max(int);# 38 "/usr/include/pthread.h" 2 3 4# 1 "/usr/include/time.h" 1 3 4# 88 "/usr/include/time.h" 3 4struct timespec {        time_t tv_sec;        long tv_nsec;};struct tm {        int tm_sec;        int tm_min;        int tm_hour;        int tm_mday;        int tm_mon;        int tm_year;        int tm_wday;        int tm_yday;        int tm_isdst;        long tm_gmtoff;        char *tm_zone;};# 115 "/usr/include/time.h" 3 4extern char *tzname[];extern "C" {char *asctime (const struct tm *);clock_t clock (void);char *ctime (const time_t *);double difftime (time_t, time_t);struct tm *gmtime (const time_t *);struct tm *localtime (const time_t *);time_t mktime (struct tm *);size_t strftime (char *, size_t, const char *, const struct tm *);time_t time (time_t *);void tzset (void);char *asctime_r (const struct tm *, char *);char *ctime_r (const time_t *, char *);struct tm *gmtime_r (const time_t *, struct tm *);struct tm *localtime_r (const time_t *, struct tm *);char *strptime (const char *, const char *, struct tm *);char *timezone (int, int);void tzsetwall (void);time_t timelocal (struct tm * const);time_t timegm (struct tm * const);int nanosleep (const struct timespec *, struct timespec *);}# 39 "/usr/include/pthread.h" 2 3 4# 1 "/usr/include/unistd.h" 1 3 4# 72 "/usr/include/unistd.h" 3 4# 1 "/usr/include/sys/unistd.h" 1 3 4# 73 "/usr/include/unistd.h" 2 3 4# 91 "/usr/include/unistd.h" 3 4extern "C" { void         _exit (int);int access (const char *, int);unsigned int alarm (unsigned int);int chdir (const char *);int chown (const char *, uid_t, gid_t);int close (int);size_t confstr (int, char *, size_t);int dup (int);int dup2 (int, int);int execl (const char *, const char *, ...);int execle (const char *, const char *, ...);int execlp (const char *, const char *, ...);int execv (const char *, char * const *);int execve (const char *, char * const *, char * const *);int execvp (const char *, char * const *);pid_t fork (void);long fpathconf (int, int);char *getcwd (char *, size_t);gid_t getegid (void);uid_t geteuid (void);gid_t getgid (void);int getgroups (int, gid_t []);char *getlogin (void);pid_t getpgrp (void);pid_t getpid (void);pid_t getppid (void);uid_t getuid (void);int isatty (int);int link (const char *, const char *);off_t lseek (int, off_t, int);long pathconf (const char *, int);int pause (void);int pipe (int *);ssize_t read (int, void *, size_t);int rmdir (const char *);int setgid (gid_t);int setpgid (pid_t, pid_t);pid_t setsid (void);int setuid (uid_t);unsigned int sleep (unsigned int);long sysconf (int);pid_t tcgetpgrp (int);int tcsetpgrp (int, pid_t);char *ttyname (int);int unlink (const char *);ssize_t write (int, const void *, size_t);extern char *optarg;extern int optind, opterr, optopt, optreset;int getopt (int, char * const [], const char *);struct timeval;int acct (const char *);int async_daemon (void);char *brk (const char *);int chroot (const char *);char *crypt (const char *, const char *);int des_cipher (const char *, char *, long, int);int des_setkey (const char *key);int encrypt (char *, int);void endusershell (void);int exect (const char *, char * const *, char * const *);int fchdir (int);int fchown (int, int, int);char *fflagstostr (u_long);int fsync (int);int ftruncate (int, off_t);int getdtablesize (void);int getgrouplist (const char *, int, int *, int *);long gethostid (void);int gethostname (char *, int);mode_t getmode (const void *, mode_t); int         getpagesize (void);char *getpass (const char *);int getpgid (pid_t _pid);int getsid (pid_t _pid);char *getusershell (void);char *getwd (char *);int initgroups (const char *, int);int iruserok (unsigned long, int, const char *, const char *);int issetugid (void);char *mkdtemp (char *);int mknod (const char *, mode_t, dev_t);int mkstemp (char *);int mkstemps (char *, int);char *mktemp (char *);int nfssvc (int, void *);int nice (int);ssize_t pread (int, void *, size_t, off_t);# 1 "/usr/include/signal.h" 1 3 4# 62 "/usr/include/signal.h" 3 4# 1 "/usr/include/sys/signal.h" 1 3 4# 72 "/usr/include/sys/signal.h" 3 4# 1 "/usr/include/machine/signal.h" 1 3 4# 27 "/usr/include/machine/signal.h" 3 4# 1 "/usr/include/ppc/signal.h" 1 3 4# 32 "/usr/include/ppc/signal.h" 3 4typedef int sig_atomic_t;# 50 "/usr/include/ppc/signal.h" 3 4typedef enum {        REGS_SAVED_NONE,        REGS_SAVED_CALLER,        REGS_SAVED_ALL} regs_saved_t;# 66 "/usr/include/ppc/signal.h" 3 4struct sigcontext {    int sc_onstack;    int sc_mask;        int sc_ir;    int sc_psw;    int sc_sp;        void *sc_regs;};# 28 "/usr/include/machine/signal.h" 2 3 4# 73 "/usr/include/sys/signal.h" 2 3 4# 134 "/usr/include/sys/signal.h" 3 4typedef unsigned int sigset_t;union sigval {        int sigval_int;        void *sigval_ptr;};typedef struct __siginfo {        int si_signo;        int si_errno;        int si_code;        int si_pid;        unsigned int si_uid;        int si_status;        void *si_addr;        union sigval si_value;        long si_band;        int pad[7];} siginfo_t;# 208 "/usr/include/sys/signal.h" 3 4union __sigaction_u {        void (*__sa_handler)(int);        void (*__sa_sigaction)(int, struct __siginfo *,                       void *);};struct __sigaction {        union __sigaction_u __sigaction_u;        void (*sa_tramp)(void *, int, int, siginfo_t *, void *);        sigset_t sa_mask;        int sa_flags;};struct sigaction {        union __sigaction_u __sigaction_u;        sigset_t sa_mask;        int sa_flags;};# 263 "/usr/include/sys/signal.h" 3 4typedef void (*sig_t) (int);struct sigaltstack {        char *ss_sp;        int ss_size;        int ss_flags;};typedef struct sigaltstack stack_t;# 285 "/usr/include/sys/signal.h" 3 4struct sigvec {        void (*sv_handler)(int);        int sv_mask;        int sv_flags;};# 303 "/usr/include/sys/signal.h" 3 4struct sigstack {        char *ss_sp;        int ss_onstack;};# 336 "/usr/include/sys/signal.h" 3 4extern "C" {void (*signal (int, void (*) (int))) (int);}# 63 "/usr/include/signal.h" 2 3 4extern const char *const sys_signame[32];extern const char *const sys_siglist[32];extern "C" {int raise (int);int kill (pid_t, int);int sigaction (int, const struct sigaction *, struct sigaction *);int sigaddset (sigset_t *, int);int sigdelset (sigset_t *, int);int sigemptyset (sigset_t *);int sigfillset (sigset_t *);int sigismember (const sigset_t *, int);int sigpending (sigset_t *);int sigprocmask (int, const sigset_t *, sigset_t *);int sigsuspend (const sigset_t *);int killpg (pid_t, int);int sigblock (int);int siginterrupt (int, int);int sighold (int);int sigrelse (int);int sigpause (int);int sigreturn (struct sigcontext *);int sigsetmask (int);int sigvec (int, struct sigvec *, struct sigvec *);void psignal (unsigned int, const char *);}# 191 "/usr/include/unistd.h" 2 3 4int profil (char *, int, int, int);ssize_t pwrite (int, const void *, size_t, off_t);int rcmd (char **, int, const char *, const char *, const char *, int *);char *re_comp (const char *);int re_exec (const char *);int readlink (const char *, char *, int);int reboot (int);int revoke (const char *);int rresvport (int *);int ruserok (const char *, int, const char *, const char *);char *sbrk (int);int select (int, fd_set *, fd_set *, fd_set *, struct timeval *);int setegid (gid_t);int seteuid (uid_t);int setgroups (int, const gid_t *);void sethostid (long);int sethostname (const char *, int);int setkey (const char *);int setlogin (const char *);void *setmode (const char *);int setpgrp (pid_t pid, pid_t pgrp);int setregid (gid_t, gid_t);int setreuid (uid_t, uid_t);int setrgid (gid_t);int setruid (uid_t);void setusershell (void);int strtofflags (char **, u_long *, u_long *);int swapon (const char *);int symlink (const char *, const char *);void sync (void);int syscall (int, ...);int truncate (const char *, off_t);int ttyslot (void);unsigned int ualarm (unsigned int, unsigned int);int unwhiteout (const char *);int usleep (unsigned int);void *valloc (size_t);pid_t vfork (void);extern char *suboptarg;int getsubopt (char **, char * const *, char **);int getattrlist (const char*,void*,void*,size_t,unsigned long);int setattrlist (const char*,void*,void*,size_t,unsigned long);int exchangedata (const char*,const char*,unsigned long);int checkuseraccess (const char*,uid_t,gid_t*,int,int,unsigned long);int getdirentriesattr (int,void*,void*,size_t,unsigned long*,unsigned long*,unsigned long*,unsigned long);int searchfs (const char*,void*,void*,unsigned long,unsigned long,void*);int fsctl (const char *,unsigned long,void*,unsigned long);}# 40 "/usr/include/pthread.h" 2 3 4# 1 "/usr/include/mach/mach_types.h" 1 3 4# 64 "/usr/include/mach/mach_types.h" 3 4# 1 "/usr/include/gcc/darwin/3.3/stdint.h" 1 3 4# 34 "/usr/include/gcc/darwin/3.3/stdint.h" 3 4typedef u_int8_t uint8_t;typedef u_int16_t uint16_t;typedef u_int32_t uint32_t;typedef u_int64_t uint64_t;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -