| /src/games/hunt/hunt/ |
| connect.c | 50 int32_t mode; local 64 mode = C_MESSAGE; 69 mode = C_MONITOR; 72 mode = C_PLAYER; 73 mode = htonl(mode); 74 (void) write(huntsocket, &mode, sizeof mode);
|
| connect.c | 50 int32_t mode; local 64 mode = C_MESSAGE; 69 mode = C_MONITOR; 72 mode = C_PLAYER; 73 mode = htonl(mode); 74 (void) write(huntsocket, &mode, sizeof mode);
|
| /src/external/apache2/llvm/dist/llvm/utils/emacs/ |
| llvm-mode.el | 1 ;;; llvm-mode.el --- Major mode for the LLVM assembler language. 8 ;; Major mode for editing LLVM IR files. 12 (defvar llvm-mode-syntax-table 19 "Syntax table used while in LLVM mode.") 99 (define-derived-mode llvm-mode prog-mode "LLVM" 100 "Major mode for editing LLVM source files. 101 \\{llvm-mode-map [all...] |
| llvm-mode.el | 1 ;;; llvm-mode.el --- Major mode for the LLVM assembler language. 8 ;; Major mode for editing LLVM IR files. 12 (defvar llvm-mode-syntax-table 19 "Syntax table used while in LLVM mode.") 99 (define-derived-mode llvm-mode prog-mode "LLVM" 100 "Major mode for editing LLVM source files. 101 \\{llvm-mode-map [all...] |
| tablegen-mode.el | 1 ;;; tablegen-mode.el --- Major mode for TableGen description files (part of LLVM project) 6 ;; A major mode for TableGen description files in LLVM. 12 ;; Create mode-specific tables. 47 "Additional expressions to highlight in TableGen mode.") 48 (put 'tablegen-mode 'font-lock-defaults '(tablegen-font-lock-keywords)) 52 (defvar tablegen-mode-syntax-table nil 53 "Syntax table used in `tablegen-mode' buffers.") 54 (when (not tablegen-mode-syntax-table) 55 (setq tablegen-mode-syntax-table (make-syntax-table) [all...] |
| tablegen-mode.el | 1 ;;; tablegen-mode.el --- Major mode for TableGen description files (part of LLVM project) 6 ;; A major mode for TableGen description files in LLVM. 12 ;; Create mode-specific tables. 47 "Additional expressions to highlight in TableGen mode.") 48 (put 'tablegen-mode 'font-lock-defaults '(tablegen-font-lock-keywords)) 52 (defvar tablegen-mode-syntax-table nil 53 "Syntax table used in `tablegen-mode' buffers.") 54 (when (not tablegen-mode-syntax-table) 55 (setq tablegen-mode-syntax-table (make-syntax-table) [all...] |
| /src/usr.sbin/wsmoused/ |
| config_yacc.y | 67 %type <block> main outermode mode 82 Can contain mode properties (common to all modes) and mode definitions. */ 95 /* Defines the aspect of a mode definition. Returns the block given by the 96 mode definition itself. */ 98 TK_MODE TK_STRING TK_LBRACE mode TK_RBRACE 106 /* Matches a mode and returns a block defining it. Contains properties */ 107 mode : label 111 | mode modeprop { block_add_prop($1, $2); } 115 /* Matches a mode property and returns a prop defining it. * [all...] |
| config_yacc.y | 67 %type <block> main outermode mode 82 Can contain mode properties (common to all modes) and mode definitions. */ 95 /* Defines the aspect of a mode definition. Returns the block given by the 96 mode definition itself. */ 98 TK_MODE TK_STRING TK_LBRACE mode TK_RBRACE 106 /* Matches a mode and returns a block defining it. Contains properties */ 107 mode : label 111 | mode modeprop { block_add_prop($1, $2); } 115 /* Matches a mode property and returns a prop defining it. * [all...] |
| /src/external/bsd/elftoolchain/dist/libdwarf/ |
| dwarf_pro_init.c | 39 int mode; local 47 mode = DW_DLC_WRITE; 61 dbg->dbg_mode = mode; 78 int mode; local 86 mode = DW_DLC_WRITE; 100 dbg->dbg_mode = mode;
|
| dwarf_pro_init.c | 39 int mode; local 47 mode = DW_DLC_WRITE; 61 dbg->dbg_mode = mode; 78 int mode; local 86 mode = DW_DLC_WRITE; 100 dbg->dbg_mode = mode;
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_entry_strmode.c | 44 mode_t mode; local 50 mode = archive_entry_mode(entry); 67 if (!(mode & permbits[i])) 70 if (mode & S_ISUID) { 71 if (mode & 0100) bp[3] = 's'; 74 if (mode & S_ISGID) { 75 if (mode & 0010) bp[6] = 's'; 78 if (mode & S_ISVTX) { 79 if (mode & 0001) bp[9] = 't';
|
| archive_entry_strmode.c | 44 mode_t mode; local 50 mode = archive_entry_mode(entry); 67 if (!(mode & permbits[i])) 70 if (mode & S_ISUID) { 71 if (mode & 0100) bp[3] = 's'; 74 if (mode & S_ISGID) { 75 if (mode & 0010) bp[6] = 's'; 78 if (mode & S_ISVTX) { 79 if (mode & 0001) bp[9] = 't';
|
| /src/external/gpl3/autoconf/dist/lib/emacs/ |
| autoconf-mode.el | 1 ;;; autoconf-mode.el --- autoconf code editing commands for Emacs 24 ;; A major mode for editing autoconf input (like configure.in). 25 ;; Derived from m4-mode.el by Andrew Csillag (drew@staff.prodigy.com) 29 ;; (autoload 'autoconf-mode "autoconf-mode" 30 ;; "Major mode for editing autoconf files." t) 31 ;; (setq auto-mode-alist 32 ;; (cons '("\\.ac\\'\\|configure\\.in\\'" . autoconf-mode) 33 ;; auto-mode-alist)) 41 ("\\b\\(m4_\\)?\\(builtin\\|change\\(com\\|quote\\|word\\)\\|d\\(e\\(bug\\(file\\|mode\\)\\|cr\\|f\\(ine\\|n\\)\\)\\|iv\\(ert\\|num\\)\\|nl\\|umpdef\\)\\|e\\(rrprint\\|syscmd\\|val\\)\\ (…) [all...] |
| autotest-mode.el | 1 ;;; autotest-mode.el --- autotest code editing commands for Emacs 25 ;; A major mode for editing autotest input (like testsuite.at). 26 ;; Derived from autoconf-mode.el, by Martin Buchholz (martin@xemacs.org). 30 ;; (autoload 'autotest-mode "autotest-mode" 31 ;; "Major mode for editing autotest files." t) 32 ;; (setq auto-mode-alist 33 ;; (cons '("\\.at\\'" . autotest-mode) auto-mode-alist)) 47 (defvar autotest-mode-syntax-table ni [all...] |
| autoconf-mode.el | 1 ;;; autoconf-mode.el --- autoconf code editing commands for Emacs 24 ;; A major mode for editing autoconf input (like configure.in). 25 ;; Derived from m4-mode.el by Andrew Csillag (drew@staff.prodigy.com) 29 ;; (autoload 'autoconf-mode "autoconf-mode" 30 ;; "Major mode for editing autoconf files." t) 31 ;; (setq auto-mode-alist 32 ;; (cons '("\\.ac\\'\\|configure\\.in\\'" . autoconf-mode) 33 ;; auto-mode-alist)) 41 ("\\b\\(m4_\\)?\\(builtin\\|change\\(com\\|quote\\|word\\)\\|d\\(e\\(bug\\(file\\|mode\\)\\|cr\\|f\\(ine\\|n\\)\\)\\|iv\\(ert\\|num\\)\\|nl\\|umpdef\\)\\|e\\(rrprint\\|syscmd\\|val\\)\\ (…) [all...] |
| autotest-mode.el | 1 ;;; autotest-mode.el --- autotest code editing commands for Emacs 25 ;; A major mode for editing autotest input (like testsuite.at). 26 ;; Derived from autoconf-mode.el, by Martin Buchholz (martin@xemacs.org). 30 ;; (autoload 'autotest-mode "autotest-mode" 31 ;; "Major mode for editing autotest files." t) 32 ;; (setq auto-mode-alist 33 ;; (cons '("\\.at\\'" . autotest-mode) auto-mode-alist)) 47 (defvar autotest-mode-syntax-table ni [all...] |
| /src/sys/arch/powerpc/include/ |
| ofw_machdep.h | 41 * cell mode 43 * "mode" contains PTE WIMG bits. 52 uint32_t mode; member in struct:OF_translation
|
| ofw_machdep.h | 41 * cell mode 43 * "mode" contains PTE WIMG bits. 52 uint32_t mode; member in struct:OF_translation
|
| /src/usr.bin/mkfifo/ |
| mkfifo.c | 62 mode_t mode; local 66 /* The default mode is the value of the bitwise inclusive or of 69 mode = 0666 & ~umask(0); 75 err(1, "Cannot set file mode `%s'", optarg); 78 /* In symbolic mode strings, the + and - operators are 79 interpreted relative to an assumed initial mode of 81 mode = getmode(set, 0666); 94 if (mkfifo(*argv, mode) < 0) { 105 (void)fprintf(stderr, "usage: mkfifo [-m mode] fifoname ...\n");
|
| mkfifo.c | 62 mode_t mode; local 66 /* The default mode is the value of the bitwise inclusive or of 69 mode = 0666 & ~umask(0); 75 err(1, "Cannot set file mode `%s'", optarg); 78 /* In symbolic mode strings, the + and - operators are 79 interpreted relative to an assumed initial mode of 81 mode = getmode(set, 0666); 94 if (mkfifo(*argv, mode) < 0) { 105 (void)fprintf(stderr, "usage: mkfifo [-m mode] fifoname ...\n");
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/ |
| cipher_aria_hw.c | 16 int ret, mode = dat->mode; local 20 if (dat->enc || (mode != EVP_CIPH_ECB_MODE && mode != EVP_CIPH_CBC_MODE)) 35 #define PROV_CIPHER_HW_aria_mode(mode) \ 36 static const PROV_CIPHER_HW aria_##mode = { \ 38 ossl_cipher_hw_chunked_##mode, \ 41 const PROV_CIPHER_HW *ossl_prov_cipher_hw_aria_##mode(size_t keybits) \ 43 return &aria_##mode; \
|
| cipher_camellia_hw.c | 23 int ret, mode = dat->mode; local 33 if (dat->enc || (mode != EVP_CIPH_ECB_MODE && mode != EVP_CIPH_CBC_MODE)) { 35 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? (cbc128_f)Camellia_cbc_encrypt : NULL; 38 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? (cbc128_f)Camellia_cbc_encrypt : NULL; 49 #define PROV_CIPHER_HW_declare(mode) 50 #define PROV_CIPHER_HW_select(mode) 53 #define PROV_CIPHER_HW_camellia_mode(mode) \ 54 static const PROV_CIPHER_HW camellia_##mode = { [all...] |
| /src/crypto/external/apache2/openssl/dist/providers/implementations/kem/ |
| kem_util.c | 17 const char *mode; member in struct:__anon565 32 for (i = 0; eckem_modename_id_map[i].mode != NULL; ++i) { 33 if (OPENSSL_strcasecmp(name, eckem_modename_id_map[i].mode) == 0)
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| cipher_aria_hw.c | 16 int ret, mode = dat->mode; local 20 if (dat->enc || (mode != EVP_CIPH_ECB_MODE && mode != EVP_CIPH_CBC_MODE)) 35 # define PROV_CIPHER_HW_aria_mode(mode) \ 36 static const PROV_CIPHER_HW aria_##mode = { \ 38 ossl_cipher_hw_chunked_##mode, \ 41 const PROV_CIPHER_HW *ossl_prov_cipher_hw_aria_##mode(size_t keybits) \ 43 return &aria_##mode; \
|
| cipher_camellia_hw.c | 23 int ret, mode = dat->mode; local 33 if (dat->enc || (mode != EVP_CIPH_ECB_MODE && mode != EVP_CIPH_CBC_MODE)) { 35 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? 39 dat->stream.cbc = mode == EVP_CIPH_CBC_MODE ? 51 # define PROV_CIPHER_HW_declare(mode) 52 # define PROV_CIPHER_HW_select(mode) 55 #define PROV_CIPHER_HW_camellia_mode(mode) \ 56 static const PROV_CIPHER_HW camellia_##mode = { [all...] |