Home
last modified time | relevance | path

Searched refs:flag (Results 1 – 25 of 487) sorted by relevance

12345678910>>...20

/f-stack/freebsd/contrib/openzfs/module/unicode/
H A Duconv.c256 check_endian(int flag, int *in, int *out) in check_endian() argument
258 *in = flag & UCONV_IN_ENDIAN_MASKS; in check_endian()
267 *out = flag & UCONV_OUT_ENDIAN_MASKS; in check_endian()
315 uint32_t *u32s, size_t *utf32len, int flag) in uconv_u16tou32() argument
350 if ((flag & UCONV_IN_ACCEPT_BOM) && in uconv_u16tou32()
425 uchar_t *u8s, size_t *utf8len, int flag) in uconv_u16tou8() argument
448 if ((flag & UCONV_IN_ACCEPT_BOM) && in uconv_u16tou8()
519 uint16_t *u16s, size_t *utf16len, int flag) in uconv_u32tou16() argument
541 if ((flag & UCONV_IN_ACCEPT_BOM) && in uconv_u32tou16()
602 uchar_t *u8s, size_t *utf8len, int flag) in uconv_u32tou8() argument
[all …]
H A Du8_textprep.c1723 int flag, int *errnum) in do_norm_compare() argument
1742 is_it_toupper = flag & U8_TEXTPREP_TOUPPER; in do_norm_compare()
1857 if (flag == 0) { in u8_strcmp()
1858 flag = U8_STRCMP_CS; in u8_strcmp()
1863 flag |= U8_STRCMP_CS; in u8_strcmp()
1867 flag = U8_STRCMP_CS; in u8_strcmp()
1874 flag = U8_STRCMP_CS; in u8_strcmp()
1878 if (flag == U8_STRCMP_CS) { in u8_strcmp()
1895 if (flag == U8_STRCMP_CI_UPPER) { in u8_strcmp()
1898 } else if (flag == U8_STRCMP_CI_LOWER) { in u8_strcmp()
[all …]
/f-stack/dpdk/app/test/
H A Dtest_alarm.c22 static volatile int flag; variable
27 flag = 1; in test_alarm_callback()
51 flag = (int)((uintptr_t)arg); in test_remove_in_callback()
130 flag = 0; in test_multi_alarms()
140 if (flag != 0) { in test_multi_alarms()
145 while (flag != 2 && count++ < RTE_TEST_MAX_REPEAT) in test_multi_alarms()
148 if (flag != 2) { in test_multi_alarms()
187 flag = 0; in test_alarm()
193 while (flag == 0 && count++ < RTE_TEST_MAX_REPEAT) in test_alarm()
196 if (flag == 0){ in test_alarm()
H A Dtest_interrupts.c29 static volatile int flag; variable
183 flag = -1; in test_interrupt_callback()
189 flag = -1; in test_interrupt_callback()
197 flag = -1; in test_interrupt_callback()
203 flag = 1; in test_interrupt_callback()
215 flag = -1; in test_interrupt_callback_1()
356 flag = 0; in test_interrupt_full_path_check()
369 for (count = 0; flag == 0 && count < 3; count++) in test_interrupt_full_path_check()
381 if (flag == 0) { in test_interrupt_full_path_check()
384 } else if (flag < 0) { in test_interrupt_full_path_check()
/f-stack/dpdk/lib/librte_gso/
H A Dgso_common.h21 #define IS_IPV4_TCP(flag) (((flag) & (PKT_TX_TCP_SEG | PKT_TX_IPV4)) == \ argument
24 #define IS_IPV4_VXLAN_TCP4(flag) (((flag) & (PKT_TX_TCP_SEG | PKT_TX_IPV4 | \ argument
29 #define IS_IPV4_GRE_TCP4(flag) (((flag) & (PKT_TX_TCP_SEG | PKT_TX_IPV4 | \ argument
34 #define IS_IPV4_UDP(flag) (((flag) & (PKT_TX_UDP_SEG | PKT_TX_IPV4)) == \ argument
/f-stack/freebsd/security/mac/
H A Dmac_framework.c352 #define MPC_FLAG(method, flag) \ in mac_policy_getlabeled() argument
354 labeled |= (flag); \ in mac_policy_getlabeled()
417 bool *flag; member
429 .flag = &mac_vnode_check_open_fp_flag },
431 .flag = &mac_vnode_check_stat_fp_flag },
445 .flag = &mac_pipe_check_stat_fp_flag },
447 .flag = &mac_pipe_check_poll_fp_flag },
457 MPASS(*mpfe->flag == false); in mac_policy_fastpath_enable()
458 *mpfe->flag = true; in mac_policy_fastpath_enable()
469 MPASS(*mpfe->flag == true); in mac_policy_fastpath_disable()
[all …]
H A Dmac_inet6.c64 mac_ip6q_label_alloc(int flag) in mac_ip6q_label_alloc() argument
69 label = mac_labelzone_alloc(flag); in mac_ip6q_label_alloc()
73 if (flag & M_WAITOK) in mac_ip6q_label_alloc()
74 MAC_POLICY_CHECK(ip6q_init_label, label, flag); in mac_ip6q_label_alloc()
76 MAC_POLICY_CHECK_NOSLEEP(ip6q_init_label, label, flag); in mac_ip6q_label_alloc()
86 mac_ip6q_init(struct ip6q *q6, int flag) in mac_ip6q_init() argument
90 q6->ip6q_label = mac_ip6q_label_alloc(flag); in mac_ip6q_init()
H A Dmac_inet.c78 mac_inpcb_label_alloc(int flag) in mac_inpcb_label_alloc() argument
83 label = mac_labelzone_alloc(flag); in mac_inpcb_label_alloc()
86 if (flag & M_WAITOK) in mac_inpcb_label_alloc()
99 mac_inpcb_init(struct inpcb *inp, int flag) in mac_inpcb_init() argument
103 inp->inp_label = mac_inpcb_label_alloc(flag); in mac_inpcb_init()
112 mac_ipq_label_alloc(int flag) in mac_ipq_label_alloc() argument
117 label = mac_labelzone_alloc(flag); in mac_ipq_label_alloc()
121 if (flag & M_WAITOK) in mac_ipq_label_alloc()
122 MAC_POLICY_CHECK(ipq_init_label, label, flag); in mac_ipq_label_alloc()
134 mac_ipq_init(struct ipq *q, int flag) in mac_ipq_init() argument
[all …]
H A Dmac_socket.c103 mac_socket_label_alloc(int flag) in mac_socket_label_alloc() argument
108 label = mac_labelzone_alloc(flag); in mac_socket_label_alloc()
112 if (flag & M_WAITOK) in mac_socket_label_alloc()
113 MAC_POLICY_CHECK(socket_init_label, label, flag); in mac_socket_label_alloc()
125 mac_socketpeer_label_alloc(int flag) in mac_socketpeer_label_alloc() argument
130 label = mac_labelzone_alloc(flag); in mac_socketpeer_label_alloc()
134 if (flag & M_WAITOK) in mac_socketpeer_label_alloc()
135 MAC_POLICY_CHECK(socketpeer_init_label, label, flag); in mac_socketpeer_label_alloc()
147 mac_socket_init(struct socket *so, int flag) in mac_socket_init() argument
151 so->so_label = mac_socket_label_alloc(flag); in mac_socket_init()
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/mmc/
H A Dmmc-controller.yaml34 $ref: /schemas/types.yaml#/definitions/flag
43 $ref: /schemas/types.yaml#/definitions/flag
67 $ref: /schemas/types.yaml#/definitions/flag
72 $ref: /schemas/types.yaml#/definitions/flag
93 $ref: /schemas/types.yaml#/definitions/flag
112 $ref: /schemas/types.yaml#/definitions/flag
118 $ref: /schemas/types.yaml#/definitions/flag
123 $ref: /schemas/types.yaml#/definitions/flag
128 $ref: /schemas/types.yaml#/definitions/flag
133 $ref: /schemas/types.yaml#/definitions/flag
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/usb/
H A Dgeneric-ehci.yaml54 $ref: /schemas/types.yaml#/definitions/flag
56 Set this flag for HCDs with big endian descriptors and big
60 $ref: /schemas/types.yaml#/definitions/flag
62 Set this flag for HCDs with big endian descriptors.
65 $ref: /schemas/types.yaml#/definitions/flag
67 Set this flag for HCDs with big endian registers.
70 $ref: /schemas/types.yaml#/definitions/flag
72 Set this flag if EHCI has a Transaction Translator built into
76 $ref: /schemas/types.yaml#/definitions/flag
78 Set this flag to force EHCI reset after resume.
H A Dgeneric-ohci.yaml43 $ref: /schemas/types.yaml#/definitions/flag
45 Set this flag for HCDs with big endian descriptors and big
49 $ref: /schemas/types.yaml#/definitions/flag
51 Set this flag for HCDs with big endian descriptors.
54 $ref: /schemas/types.yaml#/definitions/flag
56 Set this flag for HCDs with big endian registers.
59 $ref: /schemas/types.yaml#/definitions/flag
64 $ref: /schemas/types.yaml#/definitions/flag
/f-stack/dpdk/config/arm/
H A Dmeson.build181 foreach flag: flags_common_default
182 if flag.length() > 0
183 dpdk_conf.set(flag[0], flag[1])
188 foreach flag: machine[1]
189 if flag.length() > 0
190 dpdk_conf.set(flag[0], flag[1])
196 foreach flag: marg[1]
197 if cc.has_argument(flag)
198 machine_args += flag
203 if flag.length() > 0
[all …]
/f-stack/dpdk/doc/guides/cryptodevs/
H A Doverview.rst16 - "In Place SGL" feature flag stands for "In place Scatter-gather list",
20 - "OOP SGL In SGL Out" feature flag stands for
25 - "OOP SGL In LB Out" feature flag stands for
30 - "OOP LB In SGL Out" feature flag stands for
35 - "OOP LB In LB Out" feature flag stands for
40 - "RSA PRIV OP KEY EXP" feature flag means PMD support RSA private key
43 - "RSA PRIV OP KEY QT" feature flag means PMD support RSA private key
46 - "Digest encrypted" feature flag means PMD support hash-cipher cases,
/f-stack/freebsd/contrib/ck/src/
H A Dck_barrier_tournament.c71 rounds[i][0].flag = 0; in ck_barrier_tournament_init()
74 rounds[i][k].flag = 0; in ck_barrier_tournament_init()
90 rounds[i][k].opponent = &rounds[i - twokm1][k].flag; in ck_barrier_tournament_init()
93 rounds[i][k].opponent = &rounds[i + twokm1][k].flag; in ck_barrier_tournament_init()
127 while (ck_pr_load_uint(&rounds[state->vpid][round].flag) != state->sense) in ck_barrier_tournament()
141 while (ck_pr_load_uint(&rounds[state->vpid][round].flag) != state->sense) in ck_barrier_tournament()
150 while (ck_pr_load_uint(&rounds[state->vpid][round].flag) != state->sense) in ck_barrier_tournament()
/f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_dir.c201 (flag & ZCIEXACT)) || in zfs_dirent_lock()
229 if (flag & ZRENAMING) in zfs_dirent_lock()
240 ASSERT(!(flag & ZSHARED) || !(flag & ZHAVELOCK)); in zfs_dirent_lock()
241 if (!(flag & ZHAVELOCK)) in zfs_dirent_lock()
286 if (flag & ZHAVELOCK) in zfs_dirent_lock()
311 if (flag & ZXATTR) { in zfs_dirent_lock()
326 if (flag & ZNEW) { in zfs_dirent_lock()
812 if (!(flag & ZNEW)) { in zfs_link_create()
835 if (!(flag & ZRENAMING) && !(flag & ZNEW)) in zfs_link_create()
846 if (!(flag & ZNEW)) { in zfs_link_create()
[all …]
/f-stack/freebsd/contrib/openzfs/include/os/linux/zfs/sys/
H A Dzfs_vnops_os.h41 extern int zfs_open(struct inode *ip, int mode, int flag, cred_t *cr);
42 extern int zfs_close(struct inode *ip, int flag, cred_t *cr);
48 int mode, znode_t **zpp, cred_t *cr, int flag, vsecattr_t *vsecp);
50 int mode, struct inode **ipp, cred_t *cr, int flag, vsecattr_t *vsecp);
58 extern int zfs_setattr(znode_t *zp, vattr_t *vap, int flag, cred_t *cr);
67 extern int zfs_space(znode_t *zp, int cmd, flock64_t *bfp, int flag,
/f-stack/freebsd/contrib/x86emu/
H A Dx86emu_regs.h118 #define SET_FLAG(flag) (emu->x86.R_FLG |= (flag)) argument
119 #define CLEAR_FLAG(flag) (emu->x86.R_FLG &= ~(flag)) argument
120 #define ACCESS_FLAG(flag) (emu->x86.R_FLG & (flag)) argument
/f-stack/tools/libxo/tests/core/saved/
H A Dtest_02.X.out5 …</val3><val4>44470272</val4><val5>1342172800</val5><flag>one</flag><flag>two</flag><flag>three</fl…
H A Dtest_02.XP.out61 <flag>one</flag>
62 <flag>two</flag>
63 <flag>three</flag>
/f-stack/dpdk/lib/librte_mempool/
H A Dmeson.build6 foreach flag: extra_flags
7 if cc.has_argument(flag)
8 cflags += flag
/f-stack/dpdk/drivers/net/vmxnet3/
H A Dmeson.build13 foreach flag: error_cflags
14 if cc.has_argument(flag)
15 cflags += flag
/f-stack/dpdk/drivers/net/txgbe/base/
H A Dmeson.build17 foreach flag: error_cflags
18 if cc.has_argument(flag)
19 c_args += flag
/f-stack/freebsd/net80211/
H A Dieee80211.c867 ic->ic_flags |= flag; in ieee80211_syncflag_locked()
869 ic->ic_flags &= ~flag; in ieee80211_syncflag_locked()
878 if (flag < 0) { in ieee80211_syncflag()
879 flag = -flag; in ieee80211_syncflag()
882 vap->iv_flags |= flag; in ieee80211_syncflag()
918 if (flag < 0) { in ieee80211_syncflag_ht()
919 flag = -flag; in ieee80211_syncflag_ht()
958 if (flag < 0) { in ieee80211_syncflag_vht()
959 flag = -flag; in ieee80211_syncflag_vht()
998 if (flag < 0) { in ieee80211_syncflag_ext()
[all …]
/f-stack/freebsd/contrib/openzfs/include/os/freebsd/zfs/sys/
H A Dzfs_vnops_os.h41 extern int zfs_setattr(znode_t *zp, vattr_t *vap, int flag, cred_t *cr);
48 extern int zfs_space(znode_t *zp, int cmd, struct flock *bfp, int flag,
51 int mode, znode_t **zpp, cred_t *cr, int flag, vsecattr_t *vsecp);
52 extern int zfs_setsecattr(znode_t *zp, vsecattr_t *vsecp, int flag,

12345678910>>...20