| /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);
|
| /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...] |
| 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...] |
| /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;
|
| /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';
|
| /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...] |
| /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
|
| /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");
|
| /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...] |
| /src/lib/libquota/ |
| quota_open.c | 50 int mode; local 85 mode = QUOTA_MODE_NFS; 87 mode = QUOTA_MODE_KERNEL; 89 mode = QUOTA_MODE_OLDFILES; 122 qh->qh_mode = mode;
|
| /src/tests/lib/libc/gen/ |
| h_ctype_abuse.c | 79 } mode; local 85 errx(1, "Usage: %s <function> <mode> [<locale>]", 101 mode = MACRO; 103 mode = FUNCTION; 105 errx(1, "unknown usage mode"); 122 switch (mode) { \
|
| /src/usr.bin/fstat/ |
| fstat.h | 34 mode_t mode; member in struct:filestat
|
| /src/usr.sbin/lptctl/ |
| lptctl.c | 53 int omode, mode, oflags, flags; local 70 if (ioctl(fd, LPTGMODE, &mode) == -1) 72 omode = mode; 85 } else if (strcmp("mode", argv[i]) == 0) { 87 mode = mode_standard; 89 mode = mode_ps2; 91 mode = mode_nibble; 93 mode = mode_fast; 95 mode = mode_ecp; 97 mode = mode_epp [all...] |
| /src/external/bsd/libfido2/dist/fuzz/ |
| preload-fuzz.c | 38 mode_t mode; local 41 mode = va_arg(ap, mode_t); 54 return (open_f(path, flags, mode));
|
| /src/external/bsd/libfido2/dist/openbsd-compat/ |
| posix_win.c | 21 int mode = 0; local 27 mode = va_arg(ap, int); 32 return (open(path, flags, mode));
|
| /src/external/bsd/pkg_install/dist/create/ |
| create.h | 33 mode_t mode; member in struct:memory_file
|
| /src/external/bsd/tmux/dist/ |
| cmd-choose-tree.c | 24 * Enter a mode. 75 .name = "customize-mode", 100 const struct window_mode *mode; local 105 mode = &window_buffer_mode; 109 mode = &window_client_mode; 111 mode = &window_customize_mode; 113 mode = &window_tree_mode; 115 window_pane_set_mode(wp, NULL, mode, target, args);
|
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| copy-file.c | 53 int mode; local 63 mode = statbuf.st_mode & 07777; 113 chmod (dest_filename, mode);
|
| /src/external/gpl3/gcc/dist/gcc/ |
| calls.h | 27 libgcc support functions it might instead be inferred from a mode, 31 the target function. Depending on the context, the MODE field is either 32 the mode of the gimple-level type (whether explicitly given or not) 33 or the mode after promotion has been performed. */ 38 : type (NULL_TREE), mode (VOIDmode), named (false), 42 /* Initialize an argument of mode MODE, either before or after promotion. */ 43 function_arg_info (machine_mode mode, bool named) 44 : type (NULL_TREE), mode (mode), named (named), pass_by_reference (false 101 machine_mode mode; member in class:function_arg_info [all...] |