Home
last modified time | relevance | path

Searched refs:flags (Results 1 – 25 of 7559) sorted by relevance

12345678910>>...303

/external/mesa3d/src/compiler/glsl/
Dast_type.cpp45 subroutine_only.flags.i = 0; in has_qualifiers()
46 subroutine_only.flags.q.subroutine = 1; in has_qualifiers()
48 subroutine_only.flags.q.explicit_index = 1; in has_qualifiers()
50 return (this->qualifier.flags.i & ~subroutine_only.flags.i) != 0; in has_qualifiers()
55 return this->flags.q.smooth in has_interpolation()
56 || this->flags.q.flat in has_interpolation()
57 || this->flags.q.noperspective; in has_interpolation()
63 return this->flags.q.origin_upper_left in has_layout()
64 || this->flags.q.pixel_center_integer in has_layout()
65 || this->flags.q.depth_type in has_layout()
[all …]
/external/e2fsprogs/tests/f_jnl_32bit/
Dexpect.04 FS block 2 logged at journal block 2 (flags 0x8)
8 FS block 82 logged at journal block 5 (flags 0x0)
9 FS block 2 logged at journal block 6 (flags 0x2)
10 FS block 99 logged at journal block 7 (flags 0x2)
11 FS block 66 logged at journal block 8 (flags 0x2)
12 FS block 81 logged at journal block 9 (flags 0x2)
13 FS block 98 logged at journal block 10 (flags 0x2)
14 FS block 68 logged at journal block 11 (flags 0x2)
15 FS block 83 logged at journal block 12 (flags 0x2)
16 FS block 354 logged at journal block 13 (flags 0x2)
[all …]
/external/e2fsprogs/tests/f_jnl_64bit/
Dexpect.098 FS block 802 logged at journal block 69 (flags 0x0)
99 FS block 803 logged at journal block 70 (flags 0x2)
100 FS block 131 logged at journal block 71 (flags 0x2)
101 FS block 2 logged at journal block 72 (flags 0x2)
102 FS block 1 logged at journal block 73 (flags 0x2)
103 FS block 147 logged at journal block 74 (flags 0x2)
104 FS block 783 logged at journal block 75 (flags 0x2)
105 FS block 130 logged at journal block 76 (flags 0x2)
106 FS block 807 logged at journal block 77 (flags 0x2)
107 FS block 808 logged at journal block 78 (flags 0x2)
[all …]
/external/linux-kselftest/tools/testing/selftests/membarrier/
Dmembarrier_test.c11 static int sys_membarrier(int cmd, int flags) in sys_membarrier() argument
13 return syscall(__NR_membarrier, cmd, flags); in sys_membarrier()
18 int cmd = -1, flags = 0; in test_membarrier_cmd_fail() local
21 if (sys_membarrier(cmd, flags) != -1) { in test_membarrier_cmd_fail()
24 test_name, cmd, flags); in test_membarrier_cmd_fail()
29 test_name, flags, EINVAL, strerror(EINVAL), in test_membarrier_cmd_fail()
35 test_name, cmd, flags, errno); in test_membarrier_cmd_fail()
41 int cmd = MEMBARRIER_CMD_QUERY, flags = 1; in test_membarrier_flags_fail() local
44 if (sys_membarrier(cmd, flags) != -1) { in test_membarrier_flags_fail()
47 test_name, flags); in test_membarrier_flags_fail()
[all …]
/external/u-boot/arch/arm/include/asm/
Datomic.h42 unsigned long flags = 0; in atomic_add() local
44 local_irq_save(flags); in atomic_add()
46 local_irq_restore(flags); in atomic_add()
51 unsigned long flags = 0; in atomic_sub() local
53 local_irq_save(flags); in atomic_sub()
55 local_irq_restore(flags); in atomic_sub()
60 unsigned long flags = 0; in atomic_inc() local
62 local_irq_save(flags); in atomic_inc()
64 local_irq_restore(flags); in atomic_inc()
69 unsigned long flags = 0; in atomic_dec() local
[all …]
/external/tensorflow/tensorflow/lite/python/
Dtflite_convert.py65 def _get_toco_converter(flags): argument
78 input_arrays = _parse_array(flags.input_arrays)
80 if flags.input_shapes:
83 for shape in flags.input_shapes.split(":")
86 output_arrays = _parse_array(flags.output_arrays)
95 if flags.graph_def_file:
97 converter_kwargs["graph_def_file"] = flags.graph_def_file
98 elif flags.saved_model_dir:
100 converter_kwargs["saved_model_dir"] = flags.saved_model_dir
101 converter_kwargs["tag_set"] = _parse_set(flags.saved_model_tag_set)
[all …]
/external/libnetfilter_conntrack/src/conntrack/
Dcompare.c16 unsigned int flags, in __cmp() argument
19 unsigned int flags), bool strict) in __cmp() argument
24 return cmp(ct1, ct2, flags); in __cmp()
27 } else if (flags & NFCT_CMP_MASK && in __cmp()
29 return strict ? 0 : cmp(ct1, ct2, flags); in __cmp()
30 } else if (flags & NFCT_CMP_STRICT) { in __cmp()
31 return strict ? 0 : cmp(ct1, ct2, flags); in __cmp()
39 unsigned int flags) in cmp_orig_l3proto() argument
47 unsigned int flags) in cmp_icmp_id() argument
55 unsigned int flags) in cmp_icmp_type() argument
[all …]
/external/ImageMagick/MagickCore/
Dgeometry.c112 flags; in GetGeometry() local
117 flags=NoValue; in GetGeometry()
119 return(flags); in GetGeometry()
121 return(flags); in GetGeometry()
135 flags|=PercentValue; in GetGeometry()
141 flags|=AspectValue; in GetGeometry()
147 flags|=LessValue; in GetGeometry()
153 flags|=GreaterValue; in GetGeometry()
159 flags|=MinimumValue; in GetGeometry()
165 flags|=AreaValue; in GetGeometry()
[all …]
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_decompose_tmp.h41 #define LINE_ADJ(flags, a0, i0, i1, a1) LINE(flags, i0, i1) argument
44 #define TRIANGLE_ADJ(flags, i0, a0, i1, a1, i2, a2) TRIANGLE(flags, i0, i1, i2) argument
51 ushort flags; in FUNC() local
71 flags = DRAW_PIPE_RESET_STIPPLE; in FUNC()
75 LINE(flags, idx[0], idx[1]); in FUNC()
82 flags = (prim_flags & DRAW_SPLIT_BEFORE) ? 0 : DRAW_PIPE_RESET_STIPPLE; in FUNC()
86 for (i = 1; i < count; i++, flags = 0) { in FUNC()
89 LINE(flags, idx[0], idx[1]); in FUNC()
93 LINE(flags, idx[1], idx[2]); in FUNC()
98 flags = DRAW_PIPE_RESET_STIPPLE | DRAW_PIPE_EDGE_FLAG_ALL; in FUNC()
[all …]
/external/parameter-framework/asio-1.10.6/include/asio/ip/
Dresolver_query_base.hpp29 enum flags enum in asio::ip::resolver_query_base
42 friend flags operator&(flags x, flags y) in operator &()
44 return static_cast<flags>( in operator &()
48 friend flags operator|(flags x, flags y) in operator |()
50 return static_cast<flags>( in operator |()
54 friend flags operator^(flags x, flags y) in operator ^()
56 return static_cast<flags>( in operator ^()
60 friend flags operator~(flags x) in operator ~()
62 return static_cast<flags>(~static_cast<unsigned int>(x)); in operator ~()
65 friend flags& operator&=(flags& x, flags y) in operator &=()
[all …]
/external/u-boot/drivers/spi/
Dfsl_qspi.c100 u32 flags; member
126 u32 flags; member
146 static u32 qspi_read32(u32 flags, u32 *addr) in qspi_read32() argument
148 return flags & QSPI_FLAG_REGMAP_ENDIAN_BIG ? in qspi_read32()
152 static void qspi_write32(u32 flags, u32 *addr, u32 val) in qspi_write32() argument
154 flags & QSPI_FLAG_REGMAP_ENDIAN_BIG ? in qspi_write32()
166 val = qspi_read32(priv->flags, &priv->regs->sr); in is_controller_busy()
194 qspi_write32(priv->flags, &regs->lutkey, LUT_KEY_VALUE); in qspi_set_lut()
195 qspi_write32(priv->flags, &regs->lckcr, QSPI_LCKCR_UNLOCK); in qspi_set_lut()
199 qspi_write32(priv->flags, &regs->lut[lut_base], OPRND0(QSPI_CMD_WREN) | in qspi_set_lut()
[all …]
/external/tensorflow/tensorflow/core/lib/jpeg/
Djpeg_mem_unittest.cc69 UncompressFlags flags; in TestJPEG() local
70 flags.components = 3; in TestJPEG()
73 flags.min_acceptable_fraction = 0.8; in TestJPEG()
74 imgdata.reset(Uncompress(temp, fsize / 2, flags, &w, &h, &c, nullptr)); in TestJPEG()
78 flags.min_acceptable_fraction = 0.01; in TestJPEG()
79 imgdata.reset(Uncompress(temp, fsize / 2, flags, &w, &h, &c, nullptr)); in TestJPEG()
83 flags.min_acceptable_fraction = 1.0; in TestJPEG()
84 imgdata.reset(Uncompress(temp, fsize, flags, &w, &h, &c, nullptr)); in TestJPEG()
111 UncompressFlags flags = default_flags; in TestCropAndDecodeJpeg() local
112 if (flags.stride == 0) { in TestCropAndDecodeJpeg()
[all …]
/external/ltp/testcases/kernel/io/disktest/
Dparse.c87 args->flags |= CLD_FLG_DUMP; in fill_cld_args()
112 args->flags &= ~CLD_FLG_ALLDIE; in fill_cld_args()
115 args->flags |= CLD_FLG_ERR_MARK; in fill_cld_args()
118 args->flags &= ~CLD_FLG_ERR_REREAD; in fill_cld_args()
121 args->flags &= ~CLD_FLG_LBA_SYNC; in fill_cld_args()
124 args->flags |= CLD_FLG_IO_SERIAL; in fill_cld_args()
127 args->flags |= CLD_FLG_WRITE_ONCE; in fill_cld_args()
130 args->flags |= CLD_FLG_UNIQ_WRT; in fill_cld_args()
133 args->flags |= CLD_FLG_TMO_ERROR; in fill_cld_args()
151 if (args->flags & (CLD_FLG_LINEAR | CLD_FLG_RANDOM)) { in fill_cld_args()
[all …]
/external/libnetfilter_conntrack/src/expect/
Dcompare.c16 unsigned int flags, in exp_cmp() argument
19 unsigned int flags)) in exp_cmp()
25 return cmp(exp1, exp2, flags); in exp_cmp()
28 } else if (flags & NFCT_CMP_MASK && in exp_cmp()
31 } else if (flags & NFCT_CMP_STRICT) { in exp_cmp()
39 unsigned int flags) in cmp_exp_master() argument
42 (struct nf_conntrack *)&exp2->master, flags); in cmp_exp_master()
47 unsigned int flags) in cmp_exp_expected() argument
50 (struct nf_conntrack *)&exp2->expected, flags); in cmp_exp_expected()
55 unsigned int flags) in cmp_exp_mask() argument
[all …]
/external/curl/lib/
Dmprintf.c150 int flags; member
235 int flags; in dprintf_Pass1() local
246 flags = FLAGS_NEW; in dprintf_Pass1()
274 flags |= FLAGS_LONG; in dprintf_Pass1()
278 flags |= FLAGS_LONGLONG; in dprintf_Pass1()
286 flags |= FLAGS_SPACE; in dprintf_Pass1()
289 flags |= FLAGS_SHOWSIGN; in dprintf_Pass1()
292 flags |= FLAGS_LEFT; in dprintf_Pass1()
293 flags &= ~FLAGS_PAD_NIL; in dprintf_Pass1()
296 flags |= FLAGS_ALT; in dprintf_Pass1()
[all …]
/external/iptables/extensions/
Dlibxt_rateest.c113 rateest_parse(int c, char **argv, int invert, unsigned int *flags, in rateest_parse() argument
125 if (*flags & (1 << c)) in rateest_parse()
128 *flags |= 1 << c; in rateest_parse()
138 if (*flags & (1 << c)) in rateest_parse()
141 *flags |= 1 << c; in rateest_parse()
144 info->flags |= XT_RATEEST_MATCH_REL; in rateest_parse()
152 if (*flags & (1 << c)) in rateest_parse()
155 *flags |= 1 << c; in rateest_parse()
157 info->flags |= XT_RATEEST_MATCH_BPS; in rateest_parse()
175 if (*flags & (1 << c)) in rateest_parse()
[all …]
/external/webrtc/webrtc/video/
Dscreenshare_loopback.cc21 namespace flags { namespace
210 pipe_config.loss_percent = flags::LossPercent(); in Loopback()
211 pipe_config.link_capacity_kbps = flags::LinkCapacityKbps(); in Loopback()
212 pipe_config.queue_length_packets = flags::QueueSize(); in Loopback()
213 pipe_config.queue_delay_ms = flags::AvgPropagationDelayMs(); in Loopback()
214 pipe_config.delay_standard_deviation_ms = flags::StdPropagationDelayMs(); in Loopback()
217 call_bitrate_config.min_bitrate_bps = flags::MinBitrateKbps() * 1000; in Loopback()
218 call_bitrate_config.start_bitrate_bps = flags::StartBitrateKbps() * 1000; in Loopback()
219 call_bitrate_config.max_bitrate_bps = flags::MaxBitrateKbps() * 1000; in Loopback()
222 {flags::Width(), flags::Height(), flags::Fps(), in Loopback()
[all …]
Dvideo_loopback.cc21 namespace flags { namespace
199 pipe_config.loss_percent = flags::LossPercent(); in Loopback()
200 pipe_config.link_capacity_kbps = flags::LinkCapacityKbps(); in Loopback()
201 pipe_config.queue_length_packets = flags::QueueSize(); in Loopback()
202 pipe_config.queue_delay_ms = flags::AvgPropagationDelayMs(); in Loopback()
203 pipe_config.delay_standard_deviation_ms = flags::StdPropagationDelayMs(); in Loopback()
206 call_bitrate_config.min_bitrate_bps = flags::MinBitrateKbps() * 1000; in Loopback()
207 call_bitrate_config.start_bitrate_bps = flags::StartBitrateKbps() * 1000; in Loopback()
208 call_bitrate_config.max_bitrate_bps = flags::MaxBitrateKbps() * 1000; in Loopback()
211 {flags::Width(), flags::Height(), flags::Fps(), in Loopback()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/
Dloh.mir25 ; CHECK-NEXT: $x1 = ADRP target-flags(aarch64-page) @g3
26 ; CHECK-NEXT: $x1 = ADRP target-flags(aarch64-page) @g4
28 ; CHECK-NEXT: $x1 = ADRP target-flags(aarch64-page) @g2
29 ; CHECK-NEXT: $x1 = ADRP target-flags(aarch64-page) @g3
31 ; CHECK-NEXT: $x0 = ADRP target-flags(aarch64-page) @g0
32 ; CHECK-NEXT: $x0 = ADRP target-flags(aarch64-page) @g1
33 $x0 = ADRP target-flags(aarch64-page) @g0
34 $x0 = ADRP target-flags(aarch64-page) @g1
35 $x1 = ADRP target-flags(aarch64-page) @g2
36 $x1 = ADRP target-flags(aarch64-page) @g3
[all …]
/external/python/cpython2/Lib/bsddb/
Ddbshelve.py80 def open(filename, flags=db.DB_CREATE, mode=0660, filetype=db.DB_HASH, argument
94 if type(flags) == type(''):
95 sflag = flags
97 flags = db.DB_RDONLY
99 flags = 0
101 flags = db.DB_CREATE
103 flags = db.DB_CREATE
105 flags = db.DB_TRUNCATE | db.DB_CREATE
110 d.open(filename, dbname, filetype, flags, mode)
230 def associate(self, secondaryDB, callback, flags=0): argument
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/MIR/Hexagon/
Dtarget-flags.mir8 ; CHECK: target-flags(hexagon-pcrel)
9 $r0 = A2_tfrsi target-flags (hexagon-pcrel) 0
10 ; CHECK: target-flags(hexagon-got)
11 $r0 = A2_tfrsi target-flags (hexagon-got) 0
12 ; CHECK: target-flags(hexagon-lo16)
13 $r0 = A2_tfrsi target-flags (hexagon-lo16) 0
14 ; CHECK: target-flags(hexagon-hi16)
15 $r0 = A2_tfrsi target-flags (hexagon-hi16) 0
16 ; CHECK: target-flags(hexagon-gprel)
17 $r0 = A2_tfrsi target-flags (hexagon-gprel) 0
[all …]
/external/vboot_reference/firmware/lib/
Dvboot_api_init.c50 VBDEBUG(("VbInit() input flags 0x%x gbb flags 0x%x\n", iparams->flags, in VbInit()
51 gbb.flags)); in VbInit()
68 shared->flags = 0; in VbInit()
69 if (iparams->flags & VB_INIT_FLAG_REC_BUTTON_PRESSED) in VbInit()
70 shared->flags |= VBSD_BOOT_REC_SWITCH_ON; in VbInit()
71 if (iparams->flags & VB_INIT_FLAG_WP_ENABLED) in VbInit()
72 shared->flags |= VBSD_BOOT_FIRMWARE_WP_ENABLED; in VbInit()
73 if (iparams->flags & VB_INIT_FLAG_SW_WP_ENABLED) in VbInit()
74 shared->flags |= VBSD_BOOT_FIRMWARE_SW_WP_ENABLED; in VbInit()
75 if (iparams->flags & VB_INIT_FLAG_S3_RESUME) in VbInit()
[all …]
/external/dnsmasq/src/
Dcache.c60 crecp->flags = 0; in cache_init()
126 if (!(crecp->flags & F_REVERSE)) { in cache_hash()
127 while (*up && ((*up)->flags & F_REVERSE)) up = &((*up)->hash_next); in cache_hash()
129 if (crecp->flags & F_IMMORTAL) in cache_hash()
130 while (*up && !((*up)->flags & F_IMMORTAL)) up = &((*up)->hash_next); in cache_hash()
137 crecp->flags &= ~F_FORWARD; in cache_free()
138 crecp->flags &= ~F_REVERSE; in cache_free()
150 if (crecp->flags & F_BIGNAME) { in cache_free()
153 crecp->flags &= ~F_BIGNAME; in cache_free()
181 if (crecp->flags & F_BIGNAME) in cache_get_name()
[all …]
/external/u-boot/drivers/usb/host/
Dehci-mxc.c64 static int mxc_set_usbcontrol(int port, unsigned int flags) in mxc_set_usbcontrol() argument
74 v |= (flags & MXC_EHCI_INTERFACE_MASK) << MX25_OTG_SIC_SHIFT; in mxc_set_usbcontrol()
76 if (!(flags & MXC_EHCI_POWER_PINS_ENABLED)) in mxc_set_usbcontrol()
79 if (flags & MXC_EHCI_PWR_PIN_ACTIVE_HIGH) in mxc_set_usbcontrol()
82 if (!(flags & MXC_EHCI_OC_PIN_ACTIVE_LOW)) in mxc_set_usbcontrol()
91 v |= (flags & MXC_EHCI_INTERFACE_MASK) << MX25_H1_SIC_SHIFT; in mxc_set_usbcontrol()
93 if (!(flags & MXC_EHCI_POWER_PINS_ENABLED)) in mxc_set_usbcontrol()
96 if (flags & MXC_EHCI_PWR_PIN_ACTIVE_HIGH) in mxc_set_usbcontrol()
99 if (!(flags & MXC_EHCI_OC_PIN_ACTIVE_LOW)) in mxc_set_usbcontrol()
102 if (!(flags & MXC_EHCI_TTL_ENABLED)) in mxc_set_usbcontrol()
[all …]
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_pipe_control.c45 gen8_add_cs_stall_workaround_bits(uint32_t *flags) in gen8_add_cs_stall_workaround_bits() argument
59 if ((*flags & PIPE_CONTROL_CS_STALL) != 0 && (*flags & wa_bits) == 0) in gen8_add_cs_stall_workaround_bits()
60 *flags |= PIPE_CONTROL_STALL_AT_SCOREBOARD; in gen8_add_cs_stall_workaround_bits()
72 gen7_cs_stall_every_four_pipe_controls(struct brw_context *brw, uint32_t flags) in gen7_cs_stall_every_four_pipe_controls() argument
77 if (flags & PIPE_CONTROL_CS_STALL) { in gen7_cs_stall_every_four_pipe_controls()
100 gen10_add_rcpfe_workaround_bits(uint32_t *flags) in gen10_add_rcpfe_workaround_bits() argument
102 if (*flags & PIPE_CONTROL_RENDER_TARGET_FLUSH) { in gen10_add_rcpfe_workaround_bits()
103 *flags = *flags | PIPE_CONTROL_STALL_AT_SCOREBOARD; in gen10_add_rcpfe_workaround_bits()
104 } else if (*flags & in gen10_add_rcpfe_workaround_bits()
108 *flags = *flags | PIPE_CONTROL_DEPTH_STALL; in gen10_add_rcpfe_workaround_bits()
[all …]

12345678910>>...303