/freebsd-src/crypto/openssl/util/ |
H A D | indent.pro | 36 -T ACCESS_DESCRIPTION 37 -T ADDED_OBJ 38 -T AES_KEY 39 -T ARGS 40 -T ASIdOrRange 41 -T ASIdOrRanges 42 -T ASIdentifierChoice 43 -T ASIdentifiers 44 -T ASN1_ADB 45 -T ASN1_ADB_TABLE [all …]
|
/freebsd-src/contrib/ofed/libibverbs/examples/ |
H A D | devinfo.c | 178 …printf("\t\t\tGID[%3d]:\t\t%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x… in print_all_port_gids() 233 printf("\t\t\t\t\tRESIZE_MAX_WR\n"); in print_device_cap_flags() 235 printf("\t\t\t\t\tBAD_PKEY_CNTR\n"); in print_device_cap_flags() 237 printf("\t\t\t\t\tBAD_QKEY_CNTR\n"); in print_device_cap_flags() 239 printf("\t\t\t\t\tRAW_MULTI\n"); in print_device_cap_flags() 241 printf("\t\t\t\t\tAUTO_PATH_MIG\n"); in print_device_cap_flags() 243 printf("\t\t\t\t\tCHANGE_PHY_PORT\n"); in print_device_cap_flags() 245 printf("\t\t\t\t\tUD_AV_PORT_ENFORCE\n"); in print_device_cap_flags() 247 printf("\t\t\t\t\tCURR_QP_STATE_MOD\n"); in print_device_cap_flags() 249 printf("\t\t\t\t\tSHUTDOWN_PORT\n"); in print_device_cap_flags() [all …]
|
/freebsd-src/bin/test/tests/ |
H A D | legacy_test.sh | 35 t () function 56 t 0 'b = b' 57 t 0 'b == b' 58 t 1 'b != b' 59 t 0 '\( b = b \)' 60 t 0 '\( b == b \)' 61 t 1 '! \( b = b \)' 62 t 1 '! \( b == b \)' 63 t 1 '! -f /etc/passwd' 65 t 0 '-h = -h' [all …]
|
/freebsd-src/sys/teken/ |
H A D | teken_subr.h | 36 teken_tab_isset(const teken_t *t, unsigned int col) in teken_tab_isset() argument 46 return (t->t_tabstops[b] & (1U << o)); in teken_tab_isset() 50 teken_tab_clear(teken_t *t, unsigned int col) in teken_tab_clear() argument 60 t->t_tabstops[b] &= ~(1U << o); in teken_tab_clear() 64 teken_tab_set(teken_t *t, unsigned int col) in teken_tab_set() argument 74 t->t_tabstops[b] |= 1U << o; in teken_tab_set() 78 teken_tab_default(teken_t *t) in teken_tab_default() argument 82 memset(t->t_tabstops, 0, T_NUMCOL / 8); in teken_tab_default() 85 teken_tab_set(t, i); in teken_tab_default() 89 teken_subr_do_scroll(const teken_t *t, int amount) in teken_subr_do_scroll() argument [all …]
|
H A D | teken.c | 80 teken_funcs_bell(const teken_t *t) in teken_funcs_bell() argument 83 teken_assert(t->t_funcs->tf_bell != NULL); in teken_funcs_bell() 84 t->t_funcs->tf_bell(t->t_softc); in teken_funcs_bell() 88 teken_funcs_cursor(const teken_t *t) in teken_funcs_cursor() argument 91 teken_assert(t->t_cursor.tp_row < t->t_winsize.tp_row); in teken_funcs_cursor() 92 teken_assert(t->t_cursor.tp_col < t->t_winsize.tp_col); in teken_funcs_cursor() 94 teken_assert(t->t_funcs->tf_cursor != NULL); in teken_funcs_cursor() 95 t->t_funcs->tf_cursor(t->t_softc, &t->t_cursor); in teken_funcs_cursor() 99 teken_funcs_putchar(const teken_t *t, const teken_pos_t *p, teken_char_t c, in teken_funcs_putchar() argument 103 teken_assert(p->tp_row < t->t_winsize.tp_row); in teken_funcs_putchar() [all …]
|
/freebsd-src/usr.sbin/ppp/ |
H A D | throughput.c | 46 throughput_init(struct pppThroughput *t, int period) in throughput_init() argument 48 t->OctetsIn = t->OctetsOut = t->PacketsIn = t->PacketsOut = 0; in throughput_init() 49 t->SamplePeriod = period; in throughput_init() 50 t->in.SampleOctets = (long long *) in throughput_init() 51 calloc(period, sizeof *t->in.SampleOctets); in throughput_init() 52 t->in.OctetsPerSecond = 0; in throughput_init() 53 t->out.SampleOctets = (long long *) in throughput_init() 54 calloc(period, sizeof *t->out.SampleOctets); in throughput_init() 55 t->out.OctetsPerSecond = 0; in throughput_init() 56 t->BestOctetsPerSecond = 0; in throughput_init() [all …]
|
/freebsd-src/contrib/expat/doc/ |
H A D | xmlwf.1 | 2 .if \n(.g .ds T< \\FC 3 .if \n(.g .ds T> \\F[\n[.fam]] 56 \*(T<<?xml version="1.0" standalone="yes"?>\*(T>. 82 external entities (see the \*(T<\fB\-x\fR\*(T> option). 85 separately ("\*(T<\fB\-d\fR\*(T> \fIoutput\fR") or concatenated with the 86 option ("\*(T<\fB\-d\fR\*(T>\fIoutpu [all...] |
/freebsd-src/contrib/llvm-project/libcxx/include/ |
H A D | type_traits | 20 template <class T, T v> struct integral_constant; 30 template <bool, class T = void> struct enable_if; 31 template <bool, class T, class F> struct conditional; 34 template <class T> struct is_void; 35 template <class T> struct is_null_pointer; // C++14 36 template <class T> struct is_integral; 37 template <class T> struct is_floating_point; 38 template <class T> struct is_array; 39 template <class T> struc [all...] |
H A D | atomic | 45 template <class T> T kill_dependency(T y) noexcept; 61 template <class T> 64 using value_type = T; 71 constexpr atomic() noexcept(is_nothrow_default_constructible_v<T>); // since C++20 72 constexpr atomic(T desr) noexcept; 77 T load(memory_order m = memory_order_seq_cst) const volatile noexcept; 78 T load(memory_order m = memory_order_seq_cst) const noexcept; 79 operator T() cons [all...] |
H A D | functional | 34 template <class T> 41 typedef T type; 47 constexpr reference_wrapper(const reference_wrapper<T>& x) noexcept; // constexpr since C++20 51 operator=(const reference_wrapper<T>& x) noexcept; // constexpr since C++20 54 constexpr operator T& () const noexcept; // constexpr since C++20 55 constexpr T& get() const noexcept; // constexpr since C++20 59 constexpr typename result_of<T&(ArgTypes&&...)>::type // constexpr since C++20 61 noexcept(is_nothrow_invocable_v<T&, ArgTypes...>); // noexcept since C++17 64 template <class T> 65 reference_wrapper(T [all...] |
H A D | memory | 24 template <class T, class Alloc> struct uses_allocator; 38 template <class T> 39 struct pointer_traits<T*> 41 typedef T* pointer; 42 typedef T element_type; 50 template <class T> constexpr T* to_address(T* p) noexcept; // C++20 85 template <class T> using rebind_alloc = Alloc::rebind<T> [all...] |
/freebsd-src/contrib/ofed/opensm/opensm/ |
H A D | osm_helper.c | 849 "\t\t\t\tport number..............%u\n" in osm_dump_port_info_to_buf() 850 "\t\t\t\tnode_guid................0x%016" PRIx64 "\n" in osm_dump_port_info_to_buf() 851 "\t\t\t\tport_guid................0x%016" PRIx64 "\n" in osm_dump_port_info_to_buf() 852 "\t\t\t\tm_key....................0x%016" PRIx64 "\n" in osm_dump_port_info_to_buf() 853 "\t\t\t\tsubnet_prefix............0x%016" PRIx64 "\n" in osm_dump_port_info_to_buf() 854 "\t\t\t\tbase_lid.................%u\n" in osm_dump_port_info_to_buf() 855 "\t\t\t\tmaster_sm_base_lid.......%u\n" in osm_dump_port_info_to_buf() 856 "\t\t\t\tcapability_mask..........0x%X\n" in osm_dump_port_info_to_buf() 857 "\t\t\t\tdiag_code................0x%X\n" in osm_dump_port_info_to_buf() 858 "\t\t\t\tm_key_lease_period.......0x%X\n" in osm_dump_port_info_to_buf() [all …]
|
H A D | osm_torus.c | 114 * links, the port value is -1, as those links aren't 371 void teardown_torus(struct torus *t) in teardown_torus() argument 377 if (!t) in teardown_torus() 380 if (t->sw_pool) { in teardown_torus() 385 for (s = 0; s < t->switch_cnt; s++) { in teardown_torus() 386 sw = t->sw_pool[s]; in teardown_torus() 397 free(t->sw_pool); in teardown_torus() 399 if (t->link_pool) in teardown_torus() 400 free(t->link_pool); in teardown_torus() 402 if (t->sw) in teardown_torus() [all …]
|
/freebsd-src/sys/contrib/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_51/ |
H A D | fe.h | 28 uint128_t t[5]; in fe25519_reduce() local 30 t[0] = f[0]; in fe25519_reduce() 31 t[1] = f[1]; in fe25519_reduce() 32 t[2] = f[2]; in fe25519_reduce() 33 t[3] = f[3]; in fe25519_reduce() 34 t[4] = f[4]; in fe25519_reduce() 36 t[1] += t[0] >> 51; in fe25519_reduce() 37 t[0] &= mask; in fe25519_reduce() 38 t[2] += t[1] >> 51; in fe25519_reduce() 39 t[1] &= mask; in fe25519_reduce() [all …]
|
/freebsd-src/contrib/libfido2/tools/ |
H A D | test.sh | 116 ! get_assert no.tld "-u -t up=false" u2f-cred /dev/null /dev/null 124 get_assert no.tld "-t pin=true" wrap-cred /dev/null wrap-assert 127 get_assert no.tld "-t pin=false" wrap-cred /dev/null wrap-assert 129 get_assert no.tld "-t up=true" wrap-cred /dev/null wrap-assert 131 get_assert no.tld "-t up=true -t pin=true" wrap-cred /dev/null wrap-assert 136 get_assert no.tld "-t up=true -t pin=false" wrap-cred /dev/null wrap-assert 139 get_assert no.tld "-t up=false" wrap-cred /dev/null wrap-assert 142 get_assert no.tld "-t up=false -t pin=true" wrap-cred /dev/null wrap-assert 146 get_assert no.tld "-t up=false -t pin=false" wrap-cred /dev/null wrap-assert 151 get_assert no.tld "-h -t pin=true" wrap-cred hmac-salt wrap-assert [all …]
|
/freebsd-src/contrib/cortex-strings/src/thumb-2/ |
H A D | strcpy.c | 50 "pld [r1, #0]\n\t" in strcpy() 51 "eor r2, r0, r1\n\t" in strcpy() 52 "mov ip, r0\n\t" in strcpy() 53 "tst r2, #3\n\t" in strcpy() 54 "bne 4f\n\t" in strcpy() 55 "tst r1, #3\n\t" in strcpy() 57 "5:\n\t" in strcpy() 59 "str r5, [sp, #-4]!\n\t" in strcpy() 60 "mov r5, #0x01\n\t" in strcpy() 61 "orr r5, r5, r5, lsl #8\n\t" in strcpy() [all …]
|
/freebsd-src/contrib/arm-optimized-routines/string/arm/ |
H A D | strcpy.c | 29 "pld [r1, #0]\n\t" in __strcpy_arm() 30 "eor r2, r0, r1\n\t" in __strcpy_arm() 31 "mov ip, r0\n\t" in __strcpy_arm() 32 "tst r2, #3\n\t" in __strcpy_arm() 33 "bne 4f\n\t" in __strcpy_arm() 34 "tst r1, #3\n\t" in __strcpy_arm() 36 "5:\n\t" in __strcpy_arm() 38 "str r5, [sp, #-4]!\n\t" in __strcpy_arm() 39 "mov r5, #0x01\n\t" in __strcpy_arm() 40 "orr r5, r5, r5, lsl #8\n\t" in __strcpy_arm() [all …]
|
/freebsd-src/crypto/openssl/external/perl/Text-Template-1.56/ |
H A D | MANIFEST | 13 t/author-pod-syntax.t 14 t/author-signature.t 15 t/basic.t 16 t/broken.t 17 t/delimiters.t 18 t/error.t 19 t/exported.t 20 t/hash.t 21 t/inline-comment.t 22 t/nested-tags.t [all …]
|
/freebsd-src/contrib/libarchive/libarchive/ |
H A D | archive_read_disk_posix.c | 58 * As the include guards don't agree, the order of include is important. 269 tree_dir_next_posix(struct tree *t); 300 * directory couldn't be opened, for instance). This is returned 302 * fatal error, but it does imply that the relevant subtree won't be 625 struct tree *t = a->tree; in setup_suitable_read_buffer() local 626 struct filesystem *cf = t->current_filesystem; in setup_suitable_read_buffer() 631 /* If we couldn't get a filesystem alignment, in setup_suitable_read_buffer() 632 * we use 4096 as default value but we won't use in setup_suitable_read_buffer() 661 "Couldn't allocate memory"); in setup_suitable_read_buffer() 689 struct tree *t in _archive_read_data_block() local 845 next_entry(struct archive_read_disk * a,struct tree * t,struct archive_entry * entry) next_entry() argument 1124 struct tree *t; _archive_read_next_header2() local 1197 struct tree *t = a->tree; setup_sparse() local 1265 struct tree *t = a->tree; archive_read_disk_can_descend() local 1282 struct tree *t = a->tree; archive_read_disk_descend() local 1401 struct tree *t = a->tree; update_current_filesystem() local 1480 get_xfer_size(struct tree * t,int fd,const char * path) get_xfer_size() argument 1511 get_xfer_size(struct tree * t,int fd,const char * path) get_xfer_size() argument 1561 struct tree *t = a->tree; setup_current_filesystem() local 1689 struct tree *t = a->tree; setup_current_filesystem() local 1758 struct tree *t = a->tree; setup_current_filesystem() local 1890 struct tree *t = a->tree; setup_current_filesystem() local 1976 struct tree *t = a->tree; setup_current_filesystem() local 2029 close_and_restore_time(int fd,struct tree * t,struct restore_time * rt) close_and_restore_time() argument 2085 open_on_current_dir(struct tree * t,const char * path,int flags) open_on_current_dir() argument 2122 tree_push(struct tree * t,const char * path,int filesystem_id,int64_t dev,int64_t ino,struct restore_time * rt) tree_push() argument 2158 tree_append(struct tree * t,const char * name,size_t name_length) tree_append() argument 2185 struct tree *t; tree_open() local 2196 tree_reopen(struct tree * t,const char * path,int restore_time) tree_reopen() argument 2246 tree_descent(struct tree * t) tree_descent() argument 2281 tree_ascend(struct tree * t) tree_ascend() argument 2317 tree_enter_initial_dir(struct tree * t) tree_enter_initial_dir() argument 2335 tree_enter_working_dir(struct tree * t) tree_enter_working_dir() argument 2355 tree_current_dir_fd(struct tree * t) tree_current_dir_fd() argument 2364 tree_pop(struct tree * t) tree_pop() argument 2386 tree_next(struct tree * t) tree_next() argument 2444 tree_dir_next_posix(struct tree * t) global() argument 2538 tree_current_stat(struct tree * t) global() argument 2559 tree_current_lstat(struct tree * t) global() argument 2585 tree_current_is_dir(struct tree * t) global() argument 2623 tree_current_is_physical_dir(struct tree * t) global() argument 2658 tree_target_is_same_as_parent(struct tree * t,const struct stat * st) global() argument 2675 tree_current_is_symblic_link_target(struct tree * t) global() argument 2690 tree_current_access_path(struct tree * t) global() argument 2699 tree_current_path(struct tree * t) global() argument 2708 tree_close(struct tree * t) global() argument 2742 tree_free(struct tree * t) global() argument [all...] |
/freebsd-src/contrib/nvi/common/ |
H A D | encoding.c | 16 #define T 1 /* character appears in plain ASCII text */ macro 22 F, F, F, F, F, F, F, T, T, T, T, F, T, T, F, F, /* 0x0X */ 24 F, F, F, F, F, F, F, F, F, F, F, T, F, F, F, F, /* 0x1X */ 25 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x2X */ 26 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x3X */ 27 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x4X */ 28 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x5X */ 29 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, /* 0x6X */ 30 T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, F, /* 0x7X */ 32 X, X, X, X, X, T, X, X, X, X, X, X, X, X, X, X, /* 0x8X */ [all …]
|
/freebsd-src/usr.sbin/pw/ |
H A D | pw.c | 236 "\t-V etcdir alternate /etc location\n" in cmdhelp() 237 "\t-R rootdir alternate root directory\n" in cmdhelp() 238 "\t-C config configuration file\n" in cmdhelp() 239 "\t-q quiet operation\n" in cmdhelp() 241 "\t-n name login name\n" in cmdhelp() 242 "\t-u uid user id\n" in cmdhelp() 243 "\t-c comment user name/comment\n" in cmdhelp() 244 "\t-d directory home directory\n" in cmdhelp() 245 "\t-e date account expiry date\n" in cmdhelp() 246 "\t-p date password expiry date\n" in cmdhelp() [all …]
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | ArrayRef.h | 27 template<typename T> class [[nodiscard]] MutableArrayRef; 40 template<typename T> 43 using value_type = T; 57 const T *Data = nullptr; 73 /*implicit*/ ArrayRef(const T &OneElt) in ArrayRef() 77 constexpr /*implicit*/ ArrayRef(const T *data, size_t length) in ArrayRef() 81 constexpr ArrayRef(const T *begin, const T *end) in ArrayRef() 87 /// avoid instantiating SmallVectorTemplateCommon<T> whenever we 90 /*implicit*/ ArrayRef(const SmallVectorTemplateCommon<T, argument 96 ArrayRef(const std::vector<T,A> & Vec) ArrayRef() argument 101 ArrayRef(const std::array<T,N> & Arr) ArrayRef() argument 347 MutableArrayRef(std::array<T,N> & Arr) MutableArrayRef() argument 540 makeArrayRef(const SmallVector<T,N> & Vec) makeArrayRef() argument 554 makeArrayRef(const std::array<T,N> & Arr) makeArrayRef() argument 633 makeMutableArrayRef(SmallVector<T,N> & Vec) makeMutableArrayRef() argument 647 makeMutableArrayRef(std::array<T,N> & Arr) makeMutableArrayRef() argument [all...] |
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | CustomizableOptional.h | 28 template <typename T> class CustomizableOptional { 29 optional_detail::OptionalStorage<T> Storage; 32 using value_type = T; 37 constexpr CustomizableOptional(const T &y) : Storage(std::in_place, y) {} in CustomizableOptional() 40 constexpr CustomizableOptional(T &&y) in CustomizableOptional() 48 // Allow conversion from std::optional<T>. 49 constexpr CustomizableOptional(const std::optional<T> &y) in CustomizableOptional() 51 constexpr CustomizableOptional(std::optional<T> &&y) in CustomizableOptional() 54 CustomizableOptional &operator=(T &&y) { 65 CustomizableOptional &operator=(const T [all...] |
/freebsd-src/bin/date/ |
H A D | vary.c | 57 domktime(struct tm *t, char type) in domktime() argument 61 while ((ret = mktime(t)) == -1 && t->tm_year > 68 && t->tm_year < 138) in domktime() 63 adjhour(t, type == '-' ? type : '+', 1, 0); in domktime() 69 trans(const struct trans t[], const char *arg) in trans() argument 73 for (f = 0; t[f].val != -1; f++) in trans() 74 if (!strncasecmp(t[f].str, arg, 3) || in trans() 75 !strncasecmp(t[f].str, arg, strlen(t[f].str))) in trans() 76 return t[f].val; in trans() 104 daysinmonth(const struct tm *t) in daysinmonth() argument 108 year = t->tm_year + 1900; in daysinmonth() [all …]
|
/freebsd-src/contrib/arm-optimized-routines/math/test/ |
H A D | runulp.sh | 22 t() { function 67 # w.r.t. the custom reference impl in ulp_wrappers.h 87 [[ -z $F ]] || t $F $LO $HI $N 97 [[ -z $F ]] || t $F $LO $HI $N -z
|