Home
last modified time | relevance | path

Searched refs:strict (Results 101 - 125 of 462) sorted by relevance

12345678910>>...19

/kernel/linux/linux-6.6/arch/arm64/kernel/vdso32/
H A DMakefile65 -fno-strict-aliasing -fno-common \
72 VDSO_CFLAGS += -fno-strict-overflow
73 VDSO_CFLAGS += $(call cc32-option,-Werror=strict-prototypes)
/kernel/linux/linux-6.6/net/netfilter/
H A Dutils.c164 bool strict, unsigned short family) in nf_route()
171 ret = nf_ip_route(net, dst, fl, strict); in nf_route()
174 ret = nf_ip6_route(net, dst, fl, strict); in nf_route()
163 nf_route(struct net *net, struct dst_entry **dst, struct flowi *fl, bool strict, unsigned short family) nf_route() argument
/third_party/jerryscript/tests/jerry/es2015/
H A Darray-from.js117 // Assert that calling mapfn with / without thisArg in sloppy and strict modes
122 function strict(){ "use strict"; assert(void 0 === this); } function
123 function strict_null(){ "use strict"; assert(null === this); }
126 Array.from([1], strict);
127 Array.from([1], strict, void 0);
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/t/
H A Drt29928.t6 use strict;
/third_party/openssl/external/perl/Text-Template-1.56/t/
H A Drt29928.t6 use strict;
/third_party/python/Lib/
H A Dipaddress.py57 def ip_network(address, strict=True):
74 return IPv4Network(address, strict)
79 return IPv6Network(address, strict)
1234 # Handle leading zeros as strict as glibc's inet_pton()
1399 self.network = IPv4Network((addr, mask), strict=False)
1475 def __init__(self, address, strict=True):
1507 ValueError: If strict is True and a network address is not
1516 if strict:
2104 self.network = IPv6Network((addr, mask), strict=False)
2189 def __init__(self, address, strict
[all...]
/third_party/node/deps/npm/node_modules/@npmcli/package-json/lib/
H A Dnormalize.js91 const normalize = async (pkg, { strict, steps, root, changes, allowLegacyCase }) => {
101 if (!data.name && !strict) {
108 if (!strict) {
118 (strict && (!allowLegacyCase) && data.name !== data.name.toLowerCase()) ||
127 // allow "loose" semver 1.0 versions in non-strict mode
128 // enforce strict semver 2.0 compliance in strict mode
129 const loose = !strict
/kernel/linux/linux-5.10/drivers/target/tcm_fc/
H A Dtfc_conf.c45 * If strict, we require lower-case hex and colon separators to be sure
49 static ssize_t ft_parse_wwn(const char *name, u64 *wwn, int strict) in ft_parse_wwn() argument
63 if (strict && pos++ == 2 && byte++ < 7) { in ft_parse_wwn()
72 if (strict && byte != 8) in ft_parse_wwn()
78 if (val < 0 || (strict && isupper(c))) in ft_parse_wwn()
/kernel/linux/linux-6.6/drivers/target/tcm_fc/
H A Dtfc_conf.c45 * If strict, we require lower-case hex and colon separators to be sure
49 static ssize_t ft_parse_wwn(const char *name, u64 *wwn, int strict) in ft_parse_wwn() argument
63 if (strict && pos++ == 2 && byte++ < 7) { in ft_parse_wwn()
72 if (strict && byte != 8) in ft_parse_wwn()
78 if (val < 0 || (strict && isupper(c))) in ft_parse_wwn()
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Djpegtran.c48 static boolean strict; /* for -strict switch */ variable
100 fprintf(stderr, " -strict Treat all warnings as fatal\n"); in usage()
157 strict = FALSE; in parse_switches()
384 } else if (keymatch(arg, "strict", 2)) { in parse_switches()
385 strict = TRUE; in parse_switches()
511 if (strict) in jpegtran()
/third_party/python/Lib/test/
H A Dtest_builtin.py1750 z1 = zip(a, b, strict=True)
1758 z1 = zip(a, b, strict=True)
1776 self.assertEqual(tuple(zip((1, 2, 3), 'abc', strict=True)),
1779 zip((1, 2, 3, 4), 'abc', strict=True))
1781 zip((1, 2), 'abc', strict=True))
1783 zip((1, 2), (1, 2), 'abc', strict=True))
1790 (zip(x, y, z, strict=True)))
1810 l1 = self.iter_error(zip("AB", Iter(1), strict=True), Error)
1812 l2 = self.iter_error(zip("AB", Iter(2), "A", strict=True), ValueError)
1814 l3 = self.iter_error(zip("AB", Iter(2), "ABC", strict
[all...]
/drivers/hdf_core/adapter/khdf/liteos/model/bus/usb/
H A DMakefile38 LOCAL_CFLAGS += -fstack-protector-strong -Wextra -Wall -Werror -fsigned-char -fno-strict-aliasing -fno-common
/kernel/linux/linux-5.10/drivers/net/fddi/skfp/
H A DMakefile21 ccflags-y := -DPCI -DMEM_MAPPED_IO -Wno-strict-prototypes
/kernel/linux/linux-5.10/include/linux/pinctrl/
H A Dpinmux.h56 * @strict: do not allow simultaneous use of the same pin for GPIO and another
82 bool strict; member
/kernel/linux/linux-6.6/include/linux/pinctrl/
H A Dpinmux.h55 * @strict: do not allow simultaneous use of the same pin for GPIO and another
81 bool strict; member
/kernel/linux/linux-6.6/drivers/net/fddi/skfp/
H A DMakefile21 ccflags-y := -DPCI -DMEM_MAPPED_IO -Wno-strict-prototypes
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dtranslate_math.js28 return katex.renderToString( he.decode(g1, {'strict': true}), {displayMode: delim.display, output: 'html', strict: true} );
/base/powermgr/thermal_manager/services/native/src/thermal_policy/
H A Dthermal_srv_config_parser.cpp547 xmlChar* strict = xmlGetProp(cur, BAD_CAST("strict")); in ParseActionInfo() local
548 if (strict != nullptr) { in ParseActionInfo()
549 ai.strict = (TrimStr(reinterpret_cast<char*>(strict)) == TRUE_STR); in ParseActionInfo()
550 xmlFree(strict); in ParseActionInfo()
558 "ai.name: %{public}s, ai.strict: %{public}d, ai.params: %{public}s, ai.uid: %{public}s," \ in ParseActionInfo()
559 "ai.strict: %{public}s, ai.enableEvent: %{public}d", in ParseActionInfo()
560 ai.name.c_str(), ai.strict, ai.params.c_str(), ai.uid.c_str(), ai.protocol.c_str(), ai.enableEvent); in ParseActionInfo()
/kernel/linux/linux-6.6/drivers/pinctrl/
H A Dpinmux.c84 * Controllers not defined as strict will always return true,
96 if (ops->strict && desc->mux_usecount) in pinmux_can_be_used_for_gpio()
99 return !(ops->strict && !!desc->gpio_owner); in pinmux_can_be_used_for_gpio()
130 if ((!gpio_range || ops->strict) && in pin_request()
138 if ((gpio_range || ops->strict) && desc->gpio_owner) { in pin_request()
595 if (pmxops->strict) in pinmux_pins_show()
597 "Format: pin (name): mux_owner|gpio_owner (strict) hog?\n"); in pinmux_pins_show()
619 if (pmxops->strict) { in pinmux_pins_show()
631 /* For non-strict controllers */ in pinmux_pins_show()
/drivers/hdf_core/framework/tools/hdi-gen/
H A DMakefile19 export CXXFLAGS = -std=c++14 -O2 -Wall -fno-common -fno-strict-aliasing -s
/kernel/linux/linux-5.10/arch/parisc/math-emu/
H A DMakefile8 -Wno-uninitialized -Wno-strict-prototypes -Wno-return-type \
/third_party/ltp/include/
H A Dsafe_file_ops_fn.h49 void (*cleanup_fn)(void), int strict,
/third_party/ltp/testcases/kernel/hotplug/cpu_hotplug/tools/
H A Dcpuhotplug_report_proc_interrupts3 use strict;
/third_party/rust/crates/syn/src/
H A Dcustom_punctuation.rs89 let _validate_len = 0 $(+ $crate::custom_punctuation_len!(strict, $tt))*;
285 (strict, $tt:tt) => {{ $crate::custom_punctuation_unexpected!($tt); 0 }};
/kernel/linux/linux-6.6/scripts/dtc/
H A Dof_unittest_expect14 use strict 'refs';
15 use strict subs;

Completed in 17 milliseconds

12345678910>>...19