/third_party/node/deps/v8/third_party/jinja2/ |
H A D | parser.py | 146 ext = self.extensions.get(token.value) 147 if ext is not None: 148 return ext(self)
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | msvs_emulation.py | 249 ext = self.spec.get("product_extension", None) 250 if ext: 251 return ext
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | parser.py | 135 ext = self.extensions.get(token.value) 136 if ext is not None: 137 return ext(self)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | msvs_emulation.py | 249 ext = self.spec.get("product_extension", None) 250 if ext: 251 return ext
|
/third_party/mesa3d/src/vulkan/wsi/ |
H A D | wsi_common_wayland.c | 751 vk_foreach_struct(ext, caps->pNext) { in wsi_wl_surface_get_capabilities2() 752 switch (ext->sType) { in wsi_wl_surface_get_capabilities2() 754 VkSurfaceProtectedCapabilitiesKHR *protected = (void *)ext; in wsi_wl_surface_get_capabilities2()
|
/third_party/node/deps/v8/src/codegen/x64/ |
H A D | macro-assembler-x64.h | 313 void Move(Register dst, ExternalReference ext); 378 void Call(ExternalReference ext); 884 void JumpToExternalReference(const ExternalReference& ext,
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/wsi/ |
H A D | vktWsiDisplayControlTests.cpp | 145 for (auto ext: extensions) in createTestDevice() 147 if (!context.isDeviceFunctionalitySupported(ext)) in createTestDevice() 148 TCU_THROW(NotSupportedError, (string(ext) + " is not supported").c_str()); in createTestDevice()
|
/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_glsl.hpp | 241 void require_extension(const std::string &ext); 348 bool has_extension(const std::string &ext) const; 349 void require_extension_internal(const std::string &ext);
|
H A D | spirv_glsl.cpp | 806 for (auto &ext : forced_extensions) 808 if (ext == "GL_EXT_shader_explicit_arithmetic_types_float16") 828 else if (ext == "GL_EXT_shader_explicit_arithmetic_types_int16") 843 else if (ext == "GL_ARB_post_depth_coverage") 856 else if (!options.vulkan_semantics && ext == "GL_ARB_shader_draw_parameters") 859 statement("#ifdef ", ext); 860 statement("#extension ", ext, " : enable"); 863 else if (ext == "GL_EXT_control_flow_attributes") 880 statement("#extension ", ext, " : require"); 900 for (auto &ext [all...] |
/third_party/skia/third_party/externals/jinja2/ |
H A D | parser.py | 146 ext = self.extensions.get(token.value) 147 if ext is not None: 148 return ext(self)
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | json_format_test.py | 260 ext = json_format_pb2.TestExtension.ext 261 message.Extensions[ext].value = 'stuff' 266 '[protobuf_unittest.TestExtension.ext]': {
|
/third_party/skia/bench/ |
H A D | nanobench.cpp | 608 const char* ext, in collect_files() 611 if (SkStrEndsWith(paths[i], ext)) { in collect_files() 614 SkOSFile::Iter it(paths[i], ext); in collect_files() 607 collect_files(const CommandLineFlags::StringArray& paths, const char* ext, SkTArray<SkString>* list) collect_files() argument
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/wsi/ |
H A D | vktWsiDisplayControlTests.cpp | 145 for (auto ext: extensions) in createTestDevice() 147 if (!context.isDeviceFunctionalitySupported(ext)) in createTestDevice() 148 TCU_THROW(NotSupportedError, (string(ext) + " is not supported").c_str()); in createTestDevice()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/ |
H A D | tlsv1_client_read.c | 49 u16 ext, elen; in tls_process_server_hello_extensions() local 56 ext = WPA_GET_BE16(pos); in tls_process_server_hello_extensions() 67 ext); in tls_process_server_hello_extensions()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/ |
H A D | tlsv1_client_read.c | 49 u16 ext, elen; in tls_process_server_hello_extensions() local 56 ext = WPA_GET_BE16(pos); in tls_process_server_hello_extensions() 67 ext); in tls_process_server_hello_extensions()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | TranslatorVulkan.cpp | 1335 TExtension ext = TExtension::OVR_multiview; in writeExtensionBehavior() local 1339 ext = TExtension::OVR_multiview2; in writeExtensionBehavior() 1342 EmitMultiviewGLSL(*this, compileOptions, ext, behavior, sink); in writeExtensionBehavior()
|
/kernel/linux/linux-5.10/drivers/iommu/intel/ |
H A D | iommu.c | 3063 int bus, bool ext) in copy_context_table() 3071 tbl_idx = ext ? bus * 2 : bus; in copy_context_table() 3076 idx = (ext ? devfn * 2 : devfn) % 256; in copy_context_table() 3097 if (ext && devfn == 0) { in copy_context_table() 3171 bool new_ext, ext; in copy_translation_tables() local 3174 ext = !!(rtaddr_reg & DMA_RTADDR_RTT); in copy_translation_tables() 3183 if (new_ext != ext) in copy_translation_tables() 3195 ctxt_table_entries = ext ? 512 : 256; in copy_translation_tables() 3203 ctxt_tbls, bus, ext); in copy_translation_tables() 3215 int idx = ext in copy_translation_tables() 3060 copy_context_table(struct intel_iommu *iommu, struct root_entry *old_re, struct context_entry **tbl, int bus, bool ext) copy_context_table() argument [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/ |
H A D | drm_edid.c | 2265 cea_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure) in cea_for_each_detailed_block() argument 2268 u8 d = ext[0x02]; in cea_for_each_detailed_block() 2269 u8 *det_base = ext + d; in cea_for_each_detailed_block() 2280 vtb_for_each_detailed_block(u8 *ext, detailed_cb *cb, void *closure) in vtb_for_each_detailed_block() argument 2282 unsigned int i, n = min((int)ext[0x02], 6); in vtb_for_each_detailed_block() 2283 u8 *det_base = ext + 5; in vtb_for_each_detailed_block() 2285 if (ext[0x01] != 1) in vtb_for_each_detailed_block() 2305 u8 *ext = raw_edid + (i * EDID_LENGTH); in drm_for_each_detailed_block() local 2307 switch (*ext) { in drm_for_each_detailed_block() 2309 cea_for_each_detailed_block(ext, c in drm_for_each_detailed_block() [all...] |
/kernel/linux/linux-5.10/fs/ext4/ |
H A D | extents.c | 343 static int ext4_valid_extent(struct inode *inode, struct ext4_extent *ext) in ext4_valid_extent() argument 345 ext4_fsblk_t block = ext4_ext_pblock(ext); in ext4_valid_extent() 346 int len = ext4_ext_get_actual_len(ext); in ext4_valid_extent() 347 ext4_lblk_t lblock = le32_to_cpu(ext->ee_block); in ext4_valid_extent() 383 struct ext4_extent *ext = EXT_FIRST_EXTENT(eh); in ext4_valid_extent_entries() local 390 lblk != le32_to_cpu(ext->ee_block)) in ext4_valid_extent_entries() 393 if (!ext4_valid_extent(inode, ext)) in ext4_valid_extent_entries() 397 lblock = le32_to_cpu(ext->ee_block); in ext4_valid_extent_entries() 399 *pblk = ext4_ext_pblock(ext); in ext4_valid_extent_entries() 402 cur = lblock + ext4_ext_get_actual_len(ext); in ext4_valid_extent_entries() [all...] |
/kernel/linux/linux-6.6/fs/ext4/ |
H A D | extents.c | 363 static int ext4_valid_extent(struct inode *inode, struct ext4_extent *ext) in ext4_valid_extent() argument 365 ext4_fsblk_t block = ext4_ext_pblock(ext); in ext4_valid_extent() 366 int len = ext4_ext_get_actual_len(ext); in ext4_valid_extent() 367 ext4_lblk_t lblock = le32_to_cpu(ext->ee_block); in ext4_valid_extent() 403 struct ext4_extent *ext = EXT_FIRST_EXTENT(eh); in ext4_valid_extent_entries() local 410 lblk != le32_to_cpu(ext->ee_block)) in ext4_valid_extent_entries() 413 if (!ext4_valid_extent(inode, ext)) in ext4_valid_extent_entries() 417 lblock = le32_to_cpu(ext->ee_block); in ext4_valid_extent_entries() 419 *pblk = ext4_ext_pblock(ext); in ext4_valid_extent_entries() 422 cur = lblock + ext4_ext_get_actual_len(ext); in ext4_valid_extent_entries() [all...] |
/kernel/linux/linux-6.6/fs/f2fs/ |
H A D | super.c | 553 unsigned char (*ext)[F2FS_EXTENSION_LEN]; in is_compress_extension_exist() 558 ext = F2FS_OPTION(sbi).extensions; in is_compress_extension_exist() 561 ext = F2FS_OPTION(sbi).noextensions; in is_compress_extension_exist() 566 if (!strcasecmp(new_ext, ext[i])) in is_compress_extension_exist() 582 unsigned char (*ext)[F2FS_EXTENSION_LEN]; in f2fs_test_compress_extension() 586 ext = F2FS_OPTION(sbi).extensions; in f2fs_test_compress_extension() 600 if (!strcasecmp(ext[index], noext[no_index])) { in f2fs_test_compress_extension() 602 ext[index]); in f2fs_test_compress_extension() 690 unsigned char (*ext)[F2FS_EXTENSION_LEN]; in parse_options() 1170 ext in parse_options() [all...] |
/kernel/linux/linux-6.6/drivers/iommu/intel/ |
H A D | iommu.c | 2591 int bus, bool ext) in copy_context_table() 2599 tbl_idx = ext ? bus * 2 : bus; in copy_context_table() 2604 idx = (ext ? devfn * 2 : devfn) % 256; in copy_context_table() 2625 if (ext && devfn == 0) { in copy_context_table() 2680 bool new_ext, ext; in copy_translation_tables() local 2683 ext = !!(rtaddr_reg & DMA_RTADDR_SMT); in copy_translation_tables() 2692 if (new_ext != ext) in copy_translation_tables() 2708 ctxt_table_entries = ext ? 512 : 256; in copy_translation_tables() 2716 ctxt_tbls, bus, ext); in copy_translation_tables() 2728 int idx = ext in copy_translation_tables() 2588 copy_context_table(struct intel_iommu *iommu, struct root_entry *old_re, struct context_entry **tbl, int bus, bool ext) copy_context_table() argument [all...] |
/third_party/nghttp2/lib/ |
H A D | nghttp2_session.c | 349 nghttp2_frame_extension_free(&iframe->frame.ext); in session_inbound_frame_reset() 356 nghttp2_frame_altsvc_free(&iframe->frame.ext, mem); in session_inbound_frame_reset() 362 nghttp2_frame_origin_free(&iframe->frame.ext, mem); in session_inbound_frame_reset() 2593 aux_data = &item->aux_data.ext; in session_prep_frame() 2610 nghttp2_frame_pack_altsvc(&session->aob.framebufs, &frame->ext); in session_prep_frame() 2619 rv = nghttp2_frame_pack_origin(&session->aob.framebufs, &frame->ext); in session_prep_frame() 2626 nghttp2_ext_priority_update *priority_update = frame->ext.payload; in session_prep_frame() 2633 nghttp2_frame_pack_priority_update(&session->aob.framebufs, &frame->ext); in session_prep_frame() 3719 frame->ext.payload = payload; in session_call_unpack_extension_callback() 5225 altsvc = frame->ext in nghttp2_session_on_altsvc_received() [all...] |
/third_party/node/deps/nghttp2/lib/ |
H A D | nghttp2_session.c | 349 nghttp2_frame_extension_free(&iframe->frame.ext); in session_inbound_frame_reset() 356 nghttp2_frame_altsvc_free(&iframe->frame.ext, mem); in session_inbound_frame_reset() 362 nghttp2_frame_origin_free(&iframe->frame.ext, mem); in session_inbound_frame_reset() 2588 aux_data = &item->aux_data.ext; in session_prep_frame() 2605 nghttp2_frame_pack_altsvc(&session->aob.framebufs, &frame->ext); in session_prep_frame() 2614 rv = nghttp2_frame_pack_origin(&session->aob.framebufs, &frame->ext); in session_prep_frame() 2621 nghttp2_ext_priority_update *priority_update = frame->ext.payload; in session_prep_frame() 2628 nghttp2_frame_pack_priority_update(&session->aob.framebufs, &frame->ext); in session_prep_frame() 3714 frame->ext.payload = payload; in session_call_unpack_extension_callback() 5220 altsvc = frame->ext in nghttp2_session_on_altsvc_received() [all...] |
/kernel/linux/linux-5.10/arch/s390/include/asm/ |
H A D | kvm_host.h | 610 struct kvm_s390_ext_info ext; member 622 struct kvm_s390_ext_info ext; member
|