| /OK3568_Linux_fs/kernel/drivers/gpu/arm/mali400/mali/linux/ |
| H A D | mali_sync.c | 28 struct mali_sync_flag *flag; member 37 * The sync flag is used to connect sync fences to the Mali Timeline system. Sync fences can be 38 * created from a sync flag, and when the flag is signaled, the sync fences will also be signaled. 42 struct sync_timeline *sync_tl; /**< Sync timeline this flag is connected to. */ 44 struct mali_internal_sync_timeline *sync_tl; /**< Sync timeline this flag is connected to. */ 93 MALI_DEBUG_ASSERT_POINTER(mpt->flag); in timeline_has_signaled() 95 return mpt->flag->status; in timeline_has_signaled() 109 mali_sync_flag_put(mpt->flag); in timeline_free_pt() 153 mali_sync_flag_get(mpt->flag); in timeline_dup() 154 new_mpt->flag = mpt->flag; in timeline_dup() [all …]
|
| H A D | mali_sync.h | 76 * Create a sync flag. 80 * @return New sync flag if successful, NULL if not. 85 * Create a sync fence attached to given sync flag. 87 * @param flag Sync flag. 90 struct sync_fence *mali_sync_flag_create_fence(struct mali_sync_flag *flag); 128 * Create a sync flag. 132 * @return New sync flag if successful, NULL if not. 137 * Create a sync fence attached to given sync flag. 139 * @param flag Sync flag. 142 struct mali_internal_sync_fence *mali_sync_flag_create_fence(struct mali_sync_flag *flag); [all …]
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | thread_info.h | 62 * flag set/clear/test wrappers 66 static inline void set_ti_thread_flag(struct thread_info *ti, int flag) in set_ti_thread_flag() argument 68 set_bit(flag, (unsigned long *)&ti->flags); in set_ti_thread_flag() 71 static inline void clear_ti_thread_flag(struct thread_info *ti, int flag) in clear_ti_thread_flag() argument 73 clear_bit(flag, (unsigned long *)&ti->flags); in clear_ti_thread_flag() 76 static inline void update_ti_thread_flag(struct thread_info *ti, int flag, in update_ti_thread_flag() argument 80 set_ti_thread_flag(ti, flag); in update_ti_thread_flag() 82 clear_ti_thread_flag(ti, flag); in update_ti_thread_flag() 85 static inline int test_and_set_ti_thread_flag(struct thread_info *ti, int flag) in test_and_set_ti_thread_flag() argument 87 return test_and_set_bit(flag, (unsigned long *)&ti->flags); in test_and_set_ti_thread_flag() [all …]
|
| H A D | kbd_kern.h | 17 * kbd->xxx contains the VC-local things (flag settings etc..) 83 static inline int vc_kbd_mode(struct kbd_struct * kbd, int flag) in vc_kbd_mode() argument 85 return ((kbd->modeflags >> flag) & 1); in vc_kbd_mode() 88 static inline int vc_kbd_led(struct kbd_struct * kbd, int flag) in vc_kbd_led() argument 90 return ((kbd->ledflagstate >> flag) & 1); in vc_kbd_led() 93 static inline void set_vc_kbd_mode(struct kbd_struct * kbd, int flag) in set_vc_kbd_mode() argument 95 kbd->modeflags |= 1 << flag; in set_vc_kbd_mode() 98 static inline void set_vc_kbd_led(struct kbd_struct * kbd, int flag) in set_vc_kbd_led() argument 100 kbd->ledflagstate |= 1 << flag; in set_vc_kbd_led() 103 static inline void clr_vc_kbd_mode(struct kbd_struct * kbd, int flag) in clr_vc_kbd_mode() argument [all …]
|
| /OK3568_Linux_fs/kernel/net/mac80211/ |
| H A D | debugfs.c | 357 #define FLAG(F) [IEEE80211_HW_##F] = #F macro 358 FLAG(HAS_RATE_CONTROL), 359 FLAG(RX_INCLUDES_FCS), 360 FLAG(HOST_BROADCAST_PS_BUFFERING), 361 FLAG(SIGNAL_UNSPEC), 362 FLAG(SIGNAL_DBM), 363 FLAG(NEED_DTIM_BEFORE_ASSOC), 364 FLAG(SPECTRUM_MGMT), 365 FLAG(AMPDU_AGGREGATION), 366 FLAG(SUPPORTS_PS), [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/arm/midgard/ |
| H A D | mali_kbase_context.h | 27 * kbase_ctx_flag - Check if @flag is set on @kctx 29 * @flag: Flag to check 31 * Return: true if @flag is set on @kctx, false if not. 34 enum kbase_context_flags flag) in kbase_ctx_flag() argument 36 return atomic_read(&kctx->flags) & flag; in kbase_ctx_flag() 40 * kbase_ctx_flag_clear - Clear @flag on @kctx 42 * @flag: Flag to clear 44 * Clear the @flag on @kctx. This is done atomically, so other flags being 51 enum kbase_context_flags flag) in kbase_ctx_flag_clear() argument 59 * Use a compare-exchange loop to clear the flag on pre 4.3 kernels, in kbase_ctx_flag_clear() [all …]
|
| /OK3568_Linux_fs/yocto/meta-clang/recipes-devtools/clang/clang/ |
| H A D | 0030-clang-Fix-how-driver-finds-GCC-installation-path-on-.patch | 41 - Multilib Ilp32 = makeMultilib("lib32/ilp32").flag("+m32").flag("+mabi=ilp32"); 46 + Multilib OpenEmbeddedIlp32d = makeMultilib("").flag("+m32").flag("+mabi=ilp32d"); 47 + Multilib OpenEmbeddedLp64d = makeMultilib("").flag("+m64").flag("+mabi=lp64d"); 53 + Multilib Ilp32 = makeMultilib("lib32/ilp32").flag("+m32").flag("+mabi=ilp32"); 55 makeMultilib("lib32/ilp32f").flag("+m32").flag("+mabi=ilp32f"); 58 makeMultilib("lib32/ilp32d").flag("+m32").flag("+mabi=ilp32d"); 59 - Multilib Lp64 = makeMultilib("lib64/lp64").flag("+m64").flag("+mabi=lp64"); 60 - Multilib Lp64f = makeMultilib("lib64/lp64f").flag("+m64").flag("+mabi=lp64f"); 61 - Multilib Lp64d = makeMultilib("lib64/lp64d").flag("+m64").flag("+mabi=lp64d"); 66 + Multilib Lp64 = makeMultilib("lib64/lp64").flag("+m64").flag("+mabi=lp64"); [all …]
|
| /OK3568_Linux_fs/external/xserver/hw/xfree86/x86emu/x86emu/ |
| H A D | regs.h | 176 /* flag conditions */ 177 #define FB_CF 0x0001 /* CARRY flag */ 178 #define FB_PF 0x0004 /* PARITY flag */ 179 #define FB_AF 0x0010 /* AUX flag */ 180 #define FB_ZF 0x0040 /* ZERO flag */ 181 #define FB_SF 0x0080 /* SIGN flag */ 182 #define FB_TF 0x0100 /* TRAP flag */ 183 #define FB_IF 0x0200 /* INTERRUPT ENABLE flag */ 184 #define FB_DF 0x0400 /* DIR flag */ 185 #define FB_OF 0x0800 /* OVERFLOW flag */ [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/bios_emulator/include/x86emu/ |
| H A D | regs.h | 178 /* flag conditions */ 179 #define FB_CF 0x0001 /* CARRY flag */ 180 #define FB_PF 0x0004 /* PARITY flag */ 181 #define FB_AF 0x0010 /* AUX flag */ 182 #define FB_ZF 0x0040 /* ZERO flag */ 183 #define FB_SF 0x0080 /* SIGN flag */ 184 #define FB_TF 0x0100 /* TRAP flag */ 185 #define FB_IF 0x0200 /* INTERRUPT ENABLE flag */ 186 #define FB_DF 0x0400 /* DIR flag */ 187 #define FB_OF 0x0800 /* OVERFLOW flag */ [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/mmc/ |
| H A D | mmc-controller.yaml | 38 $ref: /schemas/types.yaml#/definitions/flag 47 $ref: /schemas/types.yaml#/definitions/flag 63 # using the GPIO_ACTIVE_LOW flag. This creates an ambiguity in the 66 # example leaving the GPIO_ACTIVE_LOW flag clear and specifying the 71 $ref: /schemas/types.yaml#/definitions/flag 76 $ref: /schemas/types.yaml#/definitions/flag 97 $ref: /schemas/types.yaml#/definitions/flag 116 $ref: /schemas/types.yaml#/definitions/flag 122 $ref: /schemas/types.yaml#/definitions/flag 127 $ref: /schemas/types.yaml#/definitions/flag [all …]
|
| /OK3568_Linux_fs/kernel/drivers/isdn/mISDN/ |
| H A D | layer2.c | 113 return ((test_bit(FLG_MOD128, &l2->flag) && (!ui)) ? 2 : 1) + in l2headersize() 114 (test_bit(FLG_LAPD, &l2->flag) ? 2 : 1); in l2headersize() 120 return test_bit(FLG_LAPD, &l2->flag) ? 2 : 1; in l2addrsize() 196 if (test_and_set_bit(FLG_L1_NOTREADY, &l2->flag)) { in l2down_raw() 241 if (test_bit(FLG_L1_NOTREADY, &l2->flag)) { in ph_data_confirm() 257 test_and_clear_bit(FLG_L1_NOTREADY, &l2->flag); in ph_data_confirm() 262 if (!test_and_set_bit(FLG_L1_NOTREADY, &l2->flag)) { in ph_data_confirm() 269 test_and_clear_bit(FLG_L1_NOTREADY, &l2->flag); in ph_data_confirm() 272 test_and_clear_bit(FLG_L1_NOTREADY, &l2->flag); in ph_data_confirm() 308 if (test_bit(FLG_LAPD, &l2->flag) && in l2mgr() [all …]
|
| /OK3568_Linux_fs/u-boot/arch/arm/cpu/armv7/bcm235xx/ |
| H A D | clk-core.h | 85 * Utility macros for object flag management. If possible, flags 88 #define FLAG(type, flag) BCM_CLK_ ## type ## _FLAGS_ ## flag argument 89 #define FLAG_SET(obj, type, flag) ((obj)->flags |= FLAG(type, flag)) argument 90 #define FLAG_CLEAR(obj, type, flag) ((obj)->flags &= ~(FLAG(type, flag))) argument 91 #define FLAG_FLIP(obj, type, flag) ((obj)->flags ^= FLAG(type, flag)) argument 92 #define FLAG_TEST(obj, type, flag) (!!((obj)->flags & FLAG(type, flag))) argument 181 .flags = FLAG(GATE, HW)|FLAG(GATE, SW)| \ 182 FLAG(GATE, SW_MANAGED)|FLAG(GATE, ENABLED)| \ 183 FLAG(GATE, EXISTS), \ 193 .flags = FLAG(GATE, HW)|FLAG(GATE, SW)| \ [all …]
|
| /OK3568_Linux_fs/u-boot/arch/arm/cpu/armv7/bcm281xx/ |
| H A D | clk-core.h | 85 * Utility macros for object flag management. If possible, flags 88 #define FLAG(type, flag) BCM_CLK_ ## type ## _FLAGS_ ## flag argument 89 #define FLAG_SET(obj, type, flag) ((obj)->flags |= FLAG(type, flag)) argument 90 #define FLAG_CLEAR(obj, type, flag) ((obj)->flags &= ~(FLAG(type, flag))) argument 91 #define FLAG_FLIP(obj, type, flag) ((obj)->flags ^= FLAG(type, flag)) argument 92 #define FLAG_TEST(obj, type, flag) (!!((obj)->flags & FLAG(type, flag))) argument 181 .flags = FLAG(GATE, HW)|FLAG(GATE, SW)| \ 182 FLAG(GATE, SW_MANAGED)|FLAG(GATE, ENABLED)| \ 183 FLAG(GATE, EXISTS), \ 193 .flags = FLAG(GATE, HW)|FLAG(GATE, SW)| \ [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/context/ |
| H A D | mali_kbase_context.h | 83 * kbase_ctx_flag - Check if @flag is set on @kctx 85 * @flag: Flag to check 87 * Return: true if @flag is set on @kctx, false if not. 90 enum kbase_context_flags flag) in kbase_ctx_flag() argument 92 return atomic_read(&kctx->flags) & flag; in kbase_ctx_flag() 109 * kbase_ctx_flag_clear - Clear @flag on @kctx 111 * @flag: Flag to clear 113 * Clear the @flag on @kctx. This is done atomically, so other flags being 120 enum kbase_context_flags flag) in kbase_ctx_flag_clear() argument 122 atomic_andnot(flag, &kctx->flags); in kbase_ctx_flag_clear() [all …]
|
| /OK3568_Linux_fs/kernel/include/trace/events/ |
| H A D | mmflags.h | 61 #define IF_HAVE_PG_MLOCK(flag,string) ,{1UL << flag, string} argument 63 #define IF_HAVE_PG_MLOCK(flag,string) argument 67 #define IF_HAVE_PG_UNCACHED(flag,string) ,{1UL << flag, string} argument 69 #define IF_HAVE_PG_UNCACHED(flag,string) argument 73 #define IF_HAVE_PG_HWPOISON(flag,string) ,{1UL << flag, string} argument 75 #define IF_HAVE_PG_HWPOISON(flag,string) argument 79 #define IF_HAVE_PG_IDLE(flag,string) ,{1UL << flag, string} argument 81 #define IF_HAVE_PG_IDLE(flag,string) argument 85 #define IF_HAVE_PG_ARCH_2(flag,string) ,{1UL << flag, string} argument 87 #define IF_HAVE_PG_ARCH_2(flag,string) argument [all …]
|
| /OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/ |
| H A D | atomisp_cmd.h | 105 int atomisp_gdc_cac(struct atomisp_sub_device *asd, int flag, 111 int atomisp_low_light(struct atomisp_sub_device *asd, int flag, 118 int atomisp_xnr(struct atomisp_sub_device *asd, int flag, int *arg); 120 int atomisp_formats(struct atomisp_sub_device *asd, int flag, 126 int atomisp_nr(struct atomisp_sub_device *asd, int flag, 132 int atomisp_tnr(struct atomisp_sub_device *asd, int flag, 138 int atomisp_black_level(struct atomisp_sub_device *asd, int flag, 144 int atomisp_ee(struct atomisp_sub_device *asd, int flag, 150 int atomisp_gamma(struct atomisp_sub_device *asd, int flag, 155 int atomisp_ctc(struct atomisp_sub_device *asd, int flag, [all …]
|
| /OK3568_Linux_fs/kernel/drivers/clk/bcm/ |
| H A D | clk-kona.h | 37 * Utility macros for object flag management. If possible, flags 40 #define FLAG(type, flag) BCM_CLK_ ## type ## _FLAGS_ ## flag argument 41 #define FLAG_SET(obj, type, flag) ((obj)->flags |= FLAG(type, flag)) argument 42 #define FLAG_CLEAR(obj, type, flag) ((obj)->flags &= ~(FLAG(type, flag))) argument 43 #define FLAG_FLIP(obj, type, flag) ((obj)->flags ^= FLAG(type, flag)) argument 44 #define FLAG_TEST(obj, type, flag) (!!((obj)->flags & FLAG(type, flag))) argument 165 .flags = FLAG(GATE, HW)|FLAG(GATE, SW)| \ 166 FLAG(GATE, SW_MANAGED)|FLAG(GATE, ENABLED)| \ 167 FLAG(GATE, EXISTS), \ 177 .flags = FLAG(GATE, HW)|FLAG(GATE, SW)| \ [all …]
|
| /OK3568_Linux_fs/kernel/tools/lib/traceevent/ |
| H A D | event-parse-api.c | 54 * tep_set_flag - set event parser flag 56 * @flag: flag, or combination of flags to be set 59 * This sets a flag or combination of flags from enum tep_flag 61 void tep_set_flag(struct tep_handle *tep, int flag) in tep_set_flag() argument 64 tep->flags |= flag; in tep_set_flag() 68 * tep_clear_flag - clear event parser flag 70 * @flag: flag to be cleared 72 * This clears a tep flag 74 void tep_clear_flag(struct tep_handle *tep, enum tep_flag flag) in tep_clear_flag() argument 77 tep->flags &= ~flag; in tep_clear_flag() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/hfi1/ |
| H A D | trace_iowait.h | 17 TP_PROTO(struct iowait *wait, u32 flag), 18 TP_ARGS(wait, flag), 22 __field(u32, flag) 28 __entry->flag = (1 << flag); 32 "iowait 0x%lx qp %u flags 0x%lx flag 0x%x", 36 __entry->flag 41 TP_PROTO(struct iowait *wait, u32 flag), 42 TP_ARGS(wait, flag)); 45 TP_PROTO(struct iowait *wait, u32 flag), 46 TP_ARGS(wait, flag));
|
| /OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/ |
| H A D | buffer.rst | 52 ``V4L2_CTRL_FLAG_MODIFY_LAYOUT`` flag. 58 ``V4L2_CTRL_FLAG_GRABBED`` flag when calling 76 allocation and the ``V4L2_CTRL_FLAG_GRABBED`` flag is cleared once the 85 allocated. After freeing all buffers the ``V4L2_CTRL_FLAG_GRABBED`` flag 218 - When the ``V4L2_BUF_FLAG_TIMECODE`` flag is set in ``flags``, this 295 - The file descriptor of the request to queue the buffer to. If the flag 297 queued to this request. If the flag is not set, then this field will 300 The ``V4L2_BUF_FLAG_REQUEST_FD`` flag and this field are only used by 466 * .. _`V4L2-BUF-FLAG-MAPPED`: 472 Drivers set or clear this flag when the [all …]
|
| H A D | vidioc-enum-fmt.rst | 162 This flag can only be used in combination with the 163 ``V4L2_FMT_FLAG_COMPRESSED`` flag, since this applies to compressed 164 formats only. This flag is valid for stateful decoders only. 172 This flag can only be used in combination with the 173 ``V4L2_FMT_FLAG_COMPRESSED`` flag, since this applies to 174 compressed formats only. This flag is valid for stateful codecs only. 181 If this flag is set, then the ``CAPTURE`` coded frame interval can be 188 This flag can only be used in combination with the 189 ``V4L2_FMT_FLAG_COMPRESSED`` flag, since this applies to 190 compressed formats only. This flag is valid for stateful encoders only. [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | maketype.py | 6 Types are defined in the metadata by name, using the 'type' flag on a 18 """A particular flag is required to construct the type, but has not been 20 def __init__(self, flag, type): argument 21 self.flag = flag 26 return "Type '%s' requires flag '%s'" % (self.type, self.flag) 44 for flag in obj.flags: 45 if flag not in flags: 46 if flag not in obj.optflags: 47 raise MissingFlag(flag, var_type) 49 objflags[flag] = flags[flag]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/libtool/libtool/ |
| H A D | 0005-ltmain.in-Don-t-encode-RATHS-which-match-default-lin.patch | 23 - eval flag=\"$hardcode_libdir_flag_spec\" 24 - func_append dep_rpath " $flag" 31 + *) eval flag=\"$hardcode_libdir_flag_spec\" 32 + func_append dep_rpath " $flag" 42 - eval flag=\"$hardcode_libdir_flag_spec\" 43 - func_append rpath " $flag" 50 + *) eval flag=\"$hardcode_libdir_flag_spec\" 51 + rpath+=" $flag" 61 - eval flag=\"$hardcode_libdir_flag_spec\" 62 - func_append rpath " $flag" [all …]
|
| /OK3568_Linux_fs/kernel/include/uapi/linux/ |
| H A D | tipc_netlink.h | 108 TIPC_NLA_UDP_MULTI_REMOTEIP, /* flag */ 119 TIPC_NLA_SOCK_HAS_PUBL, /* flag */ 126 TIPC_NLA_SOCK_PAD, /* flag */ 139 TIPC_NLA_LINK_BROADCAST, /* flag */ 140 TIPC_NLA_LINK_UP, /* flag */ 141 TIPC_NLA_LINK_ACTIVE, /* flag */ 165 TIPC_NLA_NODE_UP, /* flag */ 168 TIPC_NLA_NODE_KEY_MASTER, /* flag */ 182 TIPC_NLA_NET_ADDR_LEGACY, /* flag */ 202 TIPC_NLA_MON_ACTIVE, /* flag */ [all …]
|
| /OK3568_Linux_fs/external/mpp/osal/inc/ |
| H A D | mpp_debug.h | 36 #define _mpp_dbg(debug, flag, fmt, ...) mpp_log_c((debug) & (flag), fmt, ## __VA_ARGS__) argument 37 #define _mpp_dbg_f(debug, flag, fmt, ...) mpp_log_cf((debug) & (flag), fmt, ## __VA_ARGS__) argument 39 #define mpp_dbg(flag, fmt, ...) _mpp_dbg(mpp_debug, flag, fmt, ## __VA_ARGS__) argument 40 #define mpp_dbg_f(flag, fmt, ...) _mpp_dbg_f(mpp_debug, flag, fmt, ## __VA_ARGS__) argument 51 * in h264d module define module debug flag variable like: h265d_debug 62 * #define h265d_dbg(flag, fmt, ...) mpp_dbg(h265d_debug, flag, fmt, ## __VA_ARGS__) 64 * finally use environment control the debug flag 70 * sub-module debug flag usage example:
|