亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? options.h

?? 早期freebsd實現
?? H
字號:
/* This may look like C code, but it is really -*- C++ -*- *//* Handles parsing the Options provided to the user.   Copyright (C) 1989 Free Software Foundation, Inc.   written by Douglas C. Schmidt (schmidt@ics.uci.edu)This file is part of GNU GPERF.GNU GPERF is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 1, or (at your option)any later version.GNU GPERF is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU GPERF; see the file COPYING.  If not, write tothe Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  *//* This module provides a uniform interface to the various options available   to a user of the gperf hash function generator.  In addition to the   run-time options, found in the Option_Type below, there is also the   hash table Size and the Keys to be used in the hashing.   The overall design of this module was an experiment in using C++   classes as a mechanism to enhance centralization of option and   and error handling, which tend to get out of hand in a C program. */#ifndef options_h#define options_h 1#include "std-err.h"#include "trace.h"/* Enumerate the potential debugging Options. */enum Option_Type{  DEBUG        = 01,            /* Enable debugging (prints diagnostics to Std_Err). */  ORDER        = 02,            /* Apply ordering heuristic to speed-up search time. */  ANSI         = 04,            /* Generate ANSI prototypes. */  ALLCHARS     = 010,           /* Use all characters in hash function. */  GNU          = 020,           /* Assume GNU extensions (primarily function inline). */  TYPE         = 040,           /* Handle user-defined type structured keyword input. */  RANDOM       = 0100,          /* Randomly initialize the associated values table. */  DEFAULTCHARS = 0200,          /* Make default char positions be 1,$ (end of keyword). */  SWITCH       = 0400,          /* Generate switch output to save space. */  POINTER      = 01000,         /* Have in_word_set function return pointer, not boolean. */  NOLENGTH     = 02000,         /* Don't include keyword length in hash computations. */  LENTABLE     = 04000,         /* Generate a length table for string comparison. */  DUP          = 010000,        /* Handle duplicate hash values for keywords. */  FAST         = 020000,        /* Generate the hash function ``fast.'' */  NOTYPE       = 040000,        /* Don't include user-defined type definition in output -- it's already defined elsewhere. */  COMP         = 0100000,       /* Generate strncmp rather than strcmp. */  GLOBAL       = 0200000,       /* Make the keyword table a global variable. */  CONST        = 0400000,       /* Make the generated tables readonly (const). */  CPLUSPLUS    = 01000000,      /* Generate C++ code. */  C            = 02000000,      /* Generate C code. */  ENUM	       = 04000000,	/* Use enum for constants. */};/* Define some useful constants (these don't really belong here, but I'm   not sure where else to put them!).  These should be consts, but g++   doesn't seem to do the right thing with them at the moment... ;-( */enum {  MAX_KEY_POS = 128 - 1,    /* Max size of each word's key set. */  WORD_START = 1,           /* Signals the start of a word. */  WORD_END = 0,             /* Signals the end of a word. */  EOS = MAX_KEY_POS,        /* Signals end of the key list. */};/* Class manager for gperf program Options. */class Options : private Std_Err{public:                      Options (void);                     ~Options (void);  int                 operator[] (Option_Type option);  void                operator() (int argc, char *argv[]);  void                operator= (enum Option_Type);  void                operator!= (enum Option_Type);  static void         print_options (void);  static void         set_asso_max (int r);  static int          get_asso_max (void);  static void         reset (void);  static int          get (void);  static int          get_iterations (void);  static int          get_max_keysig_size (void);  static void         set_keysig_size (int);  static int          get_jump (void);  static int          initial_value (void);  static int          get_total_switches (void);  static const char  *get_function_name (void);  static const char  *get_key_name (void);  static const char  *get_class_name (void);  static const char  *get_hash_name (void);  static const char  *get_delimiter (void);private:  static int          option_word;                        /* Holds the user-specified Options. */  static int          total_switches;                     /* Number of switch statements to generate. */       static int          total_keysig_size;                 /* Total number of distinct key_positions. */  static int          size;                               /* Range of the hash table. */  static int          key_pos;                            /* Tracks current key position for Iterator. */  static int          jump;                               /* Jump length when trying alternative values. */  static int          initial_asso_value;                 /* Initial value for asso_values table. */  static int          argument_count;                     /* Records count of command-line arguments. */  static int          iterations;                         /* Amount to iterate when a collision occurs. */  static char       **argument_vector;                    /* Stores a pointer to command-line vector. */  static const char  *function_name;                      /* Names used for generated lookup function. */  static const char  *key_name;                           /* Name used for keyword key. */  static const char  *class_name;                         /* Name used for generated C++ class. */  static const char  *hash_name;                          /* Name used for generated hash function. */  static const char  *delimiters;                         /* Separates keywords from other attributes. */  static char         key_positions[MAX_KEY_POS];         /* Contains user-specified key choices. */  static int          key_sort (char *base, int len);     /* Sorts key positions in REVERSE order. */  static void         usage (void);                       /* Prints proper program usage. */};/* Global option coordinator for the entire program. */extern Options option;       #ifdef __OPTIMIZE__inline int  Options::operator[] (Option_Type option) /* True if option enable, else false. */{   T (Trace t ("Options::operator[]");)  return option_word & option;}inline voidOptions::operator = (enum Option_Type opt) /* Enables option OPT. */{  option_word |= opt;}inline voidOptions::operator != (enum Option_Type opt) /* Disables option OPT. */{  option_word &= ~opt;}inline void Options::reset (void) /* Initializes the key Iterator. */{   T (Trace t ("Options::reset");)  key_pos = 0;}inline int Options::get (void) /* Returns current key_position and advanced index. */{   T (Trace t ("Options::get");)  return key_positions[key_pos++];}inline void Options::set_asso_max (int r) /* Sets the size of the table size. */{   T (Trace t ("Options::set_asso_max");)  size = r;}inline int Options::get_asso_max (void) /* Returns the size of the table size. */{   T (Trace t ("Options::get_asso_max");)  return size;}inline int Options::get_max_keysig_size (void) /* Returns total distinct key positions. */{   T (Trace t ("Options::get_max_keysig_size");)  return total_keysig_size;}inline voidOptions::set_keysig_size (int size) /* Sets total distinct key positions. */{   T (Trace t ("Options::set_keysig_size");)  total_keysig_size = size;}inline int Options::get_jump (void) /* Returns the jump value. */{   T (Trace t ("Options::get_jump");)  return jump;}inline const char *Options::get_function_name (void) /* Returns the generated function name. */{   T (Trace t ("Options::get_function_name");)  return function_name;}inline const char *Options::get_key_name (void) /* Returns the keyword key name. */{  T (Trace t ("Options::get_key_name");)  return key_name;}inline const char *Options::get_hash_name (void) /* Returns the hash function name. */{  T (Trace t ("Options::get_hash_name");)  return hash_name;}inline const char *Options::get_class_name (void) /* Returns the generated class name. */{  T (Trace t ("Options::get_class_name");)  return class_name;}inline int Options::initial_value (void) /* Returns the initial associated character value. */{   T (Trace t ("Options::initial_value");)  return initial_asso_value;}inline int Options::get_iterations (void) /* Returns the iterations value. */{   T (Trace t ("Options::get_iterations");)  return iterations;}inline const char *Options::get_delimiter () /* Returns the string used to delimit keywords from other attributes. */{  T (Trace t ("Options::get_delimiter");)  return delimiters;}inline intOptions::get_total_switches () /* Gets the total number of switch statements to generate. */{  T (Trace t ("Options::get_total_switches");)  return total_switches;}#endif#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
波多野结衣亚洲| 韩国一区二区在线观看| 中文字幕日本乱码精品影院| 精品日韩在线一区| 精品不卡在线视频| 久久午夜电影网| 国产精品伦理一区二区| 一区二区三区在线观看欧美| 亚洲综合一区二区精品导航| 亚洲韩国一区二区三区| 三级在线观看一区二区 | 偷拍日韩校园综合在线| 午夜精品一区二区三区电影天堂| 亚洲电影中文字幕在线观看| 一区二区三区不卡视频在线观看| 亚洲国产另类精品专区| 麻豆一区二区99久久久久| 国产精品自在在线| 在线视频一区二区三区| 久久久亚洲国产美女国产盗摄| 国产精品久久久久久久久免费相片| 亚洲精品国产成人久久av盗摄| 亚洲国产另类av| 99re成人精品视频| 日韩精品一区二区三区视频| 亚洲欧洲性图库| 国产美女精品一区二区三区| 在线观看av一区二区| 国产欧美一区二区在线| 日韩经典一区二区| 欧美日韩亚洲综合| 依依成人综合视频| 成人久久久精品乱码一区二区三区 | 国产成人精品免费在线| 欧美在线观看视频在线| 日韩理论片网站| 成人综合在线观看| 久久久久国产免费免费| 美女免费视频一区二区| 日韩一区二区电影网| 亚洲大片免费看| 欧美日韩国产大片| 亚洲va韩国va欧美va| 欧美日韩精品一区二区三区蜜桃 | 91精品国产综合久久福利| 一区二区三区不卡在线观看| 欧美色图免费看| 天堂午夜影视日韩欧美一区二区| 91黄色小视频| 人妖欧美一区二区| 久久久久久久久久久久久夜| 国产aⅴ综合色| 亚洲女同一区二区| 色美美综合视频| 亚洲成a人片综合在线| 日韩一区二区在线观看视频| 国产一区二区三区av电影| 国产成人aaa| 午夜电影久久久| av一二三不卡影片| 成人欧美一区二区三区视频网页| 不卡视频在线看| 亚洲女人****多毛耸耸8| 欧洲av一区二区嗯嗯嗯啊| 日本成人中文字幕| 国产欧美精品在线观看| 欧美性感一类影片在线播放| 精品一区二区综合| 亚洲一区在线视频| 国产精品久久久久久久第一福利 | 久久精品一区二区| 在线日韩一区二区| 成人精品高清在线| 色综合久久综合网97色综合| 亚洲一区二区三区三| 日韩限制级电影在线观看| 成人免费视频一区| 亚洲美女视频一区| 欧美成人一区二区| 久久久久久久久久美女| 欧美一区二区三区四区久久 | 中文字幕一区二区三区蜜月 | 精品一区二区影视| 色哟哟亚洲精品| 久久精品夜夜夜夜久久| 亚洲第一av色| 91视频91自| 国产精品视频一二三区| 日韩精品欧美成人高清一区二区| 不卡在线观看av| 久久综合99re88久久爱| 五月天视频一区| 91成人在线精品| 中文字幕 久热精品 视频在线| 免费人成精品欧美精品| 欧美午夜一区二区三区免费大片| 亚洲欧洲国产日韩| 成人综合在线网站| 中文字幕av一区二区三区免费看 | 粉嫩av一区二区三区粉嫩| 欧美一级二级三级乱码| 亚洲va国产va欧美va观看| 色屁屁一区二区| 亚洲理论在线观看| 色婷婷综合久久久久中文一区二区| 国产午夜亚洲精品羞羞网站| 激情丁香综合五月| 久久这里只有精品视频网| 国产精品资源站在线| 国产色产综合产在线视频| 国产成人精品免费网站| 中文字幕免费观看一区| 97se亚洲国产综合自在线| 亚洲人成伊人成综合网小说| 欧美色区777第一页| 日本伊人色综合网| 久久人人97超碰com| 91在线观看污| 日韩精品每日更新| 日本一区免费视频| 欧美日韩一卡二卡三卡| 免费高清视频精品| 国产精品久久看| 欧美日韩情趣电影| 成人免费视频国产在线观看| 亚洲专区一二三| 国产网站一区二区三区| 欧美色爱综合网| 成人亚洲精品久久久久软件| 一级精品视频在线观看宜春院| 日韩一区二区三区视频| 91色.com| 丁香啪啪综合成人亚洲小说| 亚洲444eee在线观看| 国产日韩欧美精品电影三级在线| 在线免费观看日本欧美| 黑人巨大精品欧美黑白配亚洲| 夜夜嗨av一区二区三区四季av| 精品乱人伦小说| 7777精品伊人久久久大香线蕉完整版 | 国产精选一区二区三区| 日韩精品一区第一页| 亚洲色图制服诱惑| 国产精品污www在线观看| 26uuu另类欧美亚洲曰本| 5858s免费视频成人| 在线欧美小视频| 欧美日韩国产三级| 欧美在线小视频| 欧美私模裸体表演在线观看| 一本色道久久综合亚洲91| 91美女蜜桃在线| 91麻豆精东视频| 欧美在线不卡一区| 欧美日本乱大交xxxxx| 欧美日韩高清在线播放| 欧美电影一区二区三区| 91精品国产麻豆国产自产在线 | 成人黄色片在线观看| 成人av影院在线| 欧美系列一区二区| 91精品国产综合久久精品| 26uuu另类欧美亚洲曰本| 国产欧美日韩精品在线| 亚洲男人电影天堂| 午夜精品久久久久久久久久久| 午夜精品久久久| 国产伦精品一区二区三区免费 | 在线观看免费视频综合| 欧美三级视频在线观看| 欧美成人bangbros| 国产精品青草综合久久久久99| 亚洲综合一区二区| 国产精品亚洲а∨天堂免在线| 91在线一区二区三区| 日韩三级高清在线| 中文字幕一区二区三中文字幕| 性欧美疯狂xxxxbbbb| 国产91在线观看| 欧美电影免费观看高清完整版在线| 日本一区二区成人| 麻豆91在线看| 欧美伊人久久久久久久久影院| 久久综合九色综合欧美亚洲| 亚洲欧美区自拍先锋| 成人激情小说网站| 精品国产一区二区在线观看| 五月天网站亚洲| 色8久久人人97超碰香蕉987| 国产亚洲福利社区一区| 激情亚洲综合在线| 日韩视频免费观看高清完整版 | 久久久久久久精| 亚洲福利视频导航| 99国内精品久久| 欧美经典一区二区| 国产精一品亚洲二区在线视频| 91精品国产综合久久久久久 | 亚洲亚洲人成综合网络| 99精品一区二区三区|