/third_party/mesa3d/src/compiler/glsl/ |
H A D | ir_expression_operation.py | 352 self.flags = frozenset() 354 self.flags = frozenset([flags]) 356 self.flags = frozenset(flags) 547 operation("unpack_snorm_2x16", 1, printable_name="unpackSnorm2x16", source_types=(uint_type,), dest_type=float_type, c_expression="unpack_2x16(unpack_snorm_1x16, op[0]->value.u[0], &data.f[0], &data.f[1])", flags=frozenset((horizontal_operation, non_assign_operation))), 548 operation("unpack_snorm_4x8", 1, printable_name="unpackSnorm4x8", source_types=(uint_type,), dest_type=float_type, c_expression="unpack_4x8(unpack_snorm_1x8, op[0]->value.u[0], &data.f[0], &data.f[1], &data.f[2], &data.f[3])", flags=frozenset((horizontal_operation, non_assign_operation))), 549 operation("unpack_unorm_2x16", 1, printable_name="unpackUnorm2x16", source_types=(uint_type,), dest_type=float_type, c_expression="unpack_2x16(unpack_unorm_1x16, op[0]->value.u[0], &data.f[0], &data.f[1])", flags=frozenset((horizontal_operation, non_assign_operation))), 550 operation("unpack_unorm_4x8", 1, printable_name="unpackUnorm4x8", source_types=(uint_type,), dest_type=float_type, c_expression="unpack_4x8(unpack_unorm_1x8, op[0]->value.u[0], &data.f[0], &data.f[1], &data.f[2], &data.f[3])", flags=frozenset((horizontal_operation, non_assign_operation))), 551 operation("unpack_half_2x16", 1, printable_name="unpackHalf2x16", source_types=(uint_type,), dest_type=float_type, c_expression="unpack_2x16(unpack_half_1x16, op[0]->value.u[0], &data.f[0], &data.f[1])", flags=frozenset((horizontal_operation, non_assign_operation))), 563 operation("pack_double_2x32", 1, printable_name="packDouble2x32", source_types=(uint_type,), dest_type=double_type, c_expression="data.u64[0] = pack_2x32(op[0]->value.u[0], op[0]->value.u[1])", flags=frozenset((horizontal_operation, non_assign_operation))), 564 operation("unpack_double_2x32", 1, printable_name="unpackDouble2x32", source_types=(double_type,), dest_type=uint_type, c_expression="unpack_2x32(op[0]->value.u64[0], &data.u[0], &data.u[1])", flags=frozenset((horizontal_operatio [all...] |
/third_party/mbedtls/tests/scripts/ |
H A D | set_psa_test_dependencies.py | 25 CLASSIC_DEPENDENCIES = frozenset([ 106 WITHOUT_SYSTEMATIC_DEPENDENCIES = frozenset([ 119 'PSA_ALG_ECDSA_ANY': frozenset(['PSA_WANT_ALG_ECDSA']), 120 'PSA_ALG_RSA_PKCS1V15_SIGN_RAW': frozenset(['PSA_WANT_ALG_RSA_PKCS1V15_SIGN']), 126 return frozenset() 133 return frozenset()
|
H A D | check_files.py | 47 suffix_exemptions = frozenset() #type: FrozenSet[str] 231 suffix_exemptions = frozenset([".vcxproj", ".sln"]) 312 suffix_exemptions = frozenset([".dsp", ".md"]) 322 suffix_exemptions = frozenset([
|
H A D | generate_psa_tests.py | 55 ALWAYS_SUPPORTED = frozenset([ 252 not_deps: FrozenSet[str] = frozenset(), 306 not_deps=frozenset([dep])) 324 kt=kt, not_deps=frozenset([dep])) 757 incompatible_alg_keyword = frozenset(['RAW', 'ANY', 'PURE']) 758 incompatible_key_type_keywords = frozenset(['MONTGOMERY'])
|
H A D | generate_psa_wrappers.py | 60 _SKIP_FUNCTIONS = frozenset([ 77 _PAKE_STUFF = frozenset([
|
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | crypto_knowledge.py | 40 BLOCK_CIPHERS = frozenset(['AES', 'ARIA', 'CAMELLIA', 'DES']) 41 BLOCK_MAC_MODES = frozenset(['CBC_MAC', 'CMAC']) 42 BLOCK_CIPHER_MODES = frozenset([ 46 BLOCK_AEAD_MODES = frozenset(['CCM', 'GCM']) 223 alg.head in frozenset.union(BLOCK_MAC_MODES, 430 KEY_DERIVATIONS_INCOMPATIBLE_WITH_AGREEMENT = frozenset([ 470 'PSA_ALG_CCM': frozenset([4, 6, 8, 10, 12, 14, 16]), 471 'PSA_ALG_CHACHA20_POLY1305': frozenset([16]), 472 'PSA_ALG_GCM': frozenset([4, 8, 12, 13, 14, 15, 16]), 497 return frozenset(rang [all...] |
H A D | psa_information.py | 68 SYMBOLS_WITHOUT_DEPENDENCY = frozenset([ 122 return frozenset(symbol
|
/third_party/python/Lib/test/ |
H A D | test_reprlib.py | 88 eq(r(frozenset([])), "frozenset()") 89 eq(r(frozenset([1])), "frozenset({1})") 90 eq(r(frozenset([1, 2, 3])), "frozenset({1, 2, 3})") 91 eq(r(frozenset([1, 2, 3, 4, 5, 6])), "frozenset({1, 2, 3, 4, 5, 6})") 92 eq(r(frozenset([1, 2, 3, 4, 5, 6, 7])), "frozenset({ [all...] |
H A D | test_set.py | 42 # Tests common to both set and frozenset 69 s = self.thetype([frozenset(self.letters)]) 80 for C in set, frozenset, dict.fromkeys, str, list, tuple: 94 self.assertEqual(self.s | frozenset(self.otherword), i) 109 for C in set, frozenset, dict.fromkeys, str, list, tuple: 117 if self.thetype == frozenset(): 129 for C in set, frozenset, dict.fromkeys, str, list, tuple: 139 self.assertEqual(self.s & frozenset(self.otherword), i) 155 for C in set, frozenset, dict.fromkeys, str, list, tuple: 166 self.assertEqual(self.s - frozenset(sel [all...] |
H A D | test_pprint.py | 49 class frozenset2(frozenset): 52 class frozenset3(frozenset): 54 return frozenset.__repr__(self) 56 class frozenset_custom_repr(frozenset): 58 return '*'*len(frozenset.__repr__(self)) 232 frozenset(), frozenset2(), frozenset3(), 241 frozenset({8}), frozenset2({8}), frozenset3({8}), 600 self.assertEqual(pprint.pformat(frozenset()), 'frozenset()') 601 self.assertEqual(pprint.pformat(frozenset(rang [all...] |
H A D | test_peepholer.py | 205 # in/not in constants with BUILD_SET should be folded to a frozenset: 206 ('a in {1,2,3}', frozenset({1, 2, 3})), 207 ('a not in {"a","b","c"}', frozenset({'a', 'c', 'b'})), 208 ('a in {None, 1, None}', frozenset({1, None})), 209 ('a not in {(1, 2), 3, 4}', frozenset({(1, 2), 3, 4})), 210 ('a in {1, 2, 3, 3, 2, 1}', frozenset({1, 2, 3})),
|
H A D | test_weakset.py | 79 for C in set, frozenset, dict.fromkeys, list, tuple: 92 self.assertEqual(self.s | frozenset(self.items2), i) 101 for C in set, frozenset, dict.fromkeys, list, tuple: 116 self.assertEqual(self.s & frozenset(self.items2), i) 129 self.assertEqual(self.s - frozenset(self.items2), i) 146 self.assertEqual(self.s ^ frozenset(self.items2), i)
|
H A D | test_marshal.py | 185 for constructor in (set, frozenset): 243 # frozenset([frozenset([frozenset([...None...])])]) 286 for typ in (int, float, complex, tuple, list, dict, set, frozenset): 353 for kind in ("set", "frozenset"): 415 self.check_unmarshallable(frozenset(range(size))) 426 if isinstance(obj, (list, tuple, set, frozenset)): 436 keys = (123, 1.2345, 'abc', (123, 'abc'), frozenset({123, 'abc'})) 504 frozensetobj = frozenset({(ob [all...] |
H A D | test_errno.py | 8 std_c_errors = frozenset(['EDOM', 'ERANGE'])
|
/third_party/jinja2/ |
H A D | sandbox.py | 43 frozenset( 58 frozenset(["clear", "pop", "popitem", "setdefault", "update"]), 62 frozenset(["append", "reverse", "insert", "sort", "extend", "remove"]), 66 frozenset( 235 intercepted_binops: t.FrozenSet[str] = frozenset() 250 intercepted_unops: t.FrozenSet[str] = frozenset()
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | sandbox.py | 85 frozenset( 100 frozenset(["clear", "pop", "popitem", "setdefault", "update"]), 104 frozenset(["append", "reverse", "insert", "sort", "extend", "remove"]), 108 frozenset( 304 intercepted_binops = frozenset() 319 intercepted_unops = frozenset()
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | sandbox.py | 89 (_mutable_set_types, frozenset([ 93 (_mutable_mapping_types, frozenset([ 96 (_mutable_sequence_types, frozenset([ 99 (deque, frozenset([ 282 intercepted_binops = frozenset() 297 intercepted_unops = frozenset()
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | sandbox.py | 85 frozenset( 100 frozenset(["clear", "pop", "popitem", "setdefault", "update"]), 104 frozenset(["append", "reverse", "insert", "sort", "extend", "remove"]), 108 frozenset( 304 intercepted_binops = frozenset() 319 intercepted_unops = frozenset()
|
/third_party/python/Lib/ |
H A D | keyword.py | 62 iskeyword = frozenset(kwlist).__contains__ 63 issoftkeyword = frozenset(softkwlist).__contains__
|
/third_party/python/Lib/tomllib/ |
H A D | _parser.py | 22 ASCII_CTRL = frozenset(chr(i) for i in range(32)) | frozenset(chr(127)) 26 ILLEGAL_BASIC_STR_CHARS = ASCII_CTRL - frozenset("\t") 27 ILLEGAL_MULTILINE_BASIC_STR_CHARS = ASCII_CTRL - frozenset("\t\n") 34 TOML_WS = frozenset(" \t") 35 TOML_WS_AND_NEWLINE = TOML_WS | frozenset("\n") 36 BARE_KEY_CHARS = frozenset(string.ascii_letters + string.digits + "-_") 37 KEY_INITIAL_CHARS = BARE_KEY_CHARS | frozenset("\"'") 38 HEXDIGIT_CHARS = frozenset(string.hexdigits) 246 error_on: frozenset[st [all...] |
/third_party/mesa3d/src/mapi/new/ |
H A D | genCommon.py | 44 "opengl" : frozenset(( "GL_VERSION_1_0", "GL_VERSION_1_1", 50 "glesv1" : frozenset(("GL_VERSION_ES_CM_1_0", "GL_OES_point_size_array")), 51 "glesv2" : frozenset(("GL_ES_VERSION_2_0", "GL_ES_VERSION_3_0",
|
/third_party/python/Lib/idlelib/ |
H A D | hyperparser.py | 13 _ASCII_ID_CHARS = frozenset(string.ascii_letters + string.digits + "_") 15 _ASCII_ID_FIRST_CHARS = frozenset(string.ascii_letters + "_") 160 _ID_KEYWORDS = frozenset({"True", "False", "None"})
|
/third_party/mbedtls/scripts/ |
H A D | code_style.py | 52 return frozenset(word for s in checks for word in s.split()) 208 covered = frozenset(get_src_files(args.since))
|
H A D | config.py | 179 EXCLUDE_FROM_FULL = frozenset([ 257 EXCLUDE_FROM_BAREMETAL = frozenset([ 297 EXCLUDE_FOR_SIZE = frozenset([ 336 DEPRECATED = frozenset([
|
/third_party/littlefs/scripts/ |
H A D | readtree.py | 83 dirtable[frozenset(dir[0].blocks)] = dir 95 nmdir = dirtable[frozenset(nblocks)]
|