/kernel/linux/linux-6.6/drivers/gpu/drm/ |
H A D | drm_plane.c | 425 void *container; in __drmm_universal_plane_alloc() local 433 container = drmm_kzalloc(dev, size, GFP_KERNEL); in __drmm_universal_plane_alloc() 434 if (!container) in __drmm_universal_plane_alloc() 437 plane = container + offset; in __drmm_universal_plane_alloc() 452 return container; in __drmm_universal_plane_alloc() 464 void *container; in __drm_universal_plane_alloc() local 472 container = kzalloc(size, GFP_KERNEL); in __drm_universal_plane_alloc() 473 if (!container) in __drm_universal_plane_alloc() 476 plane = container + offset; in __drm_universal_plane_alloc() 486 return container; in __drm_universal_plane_alloc() [all...] |
H A D | drm_crtc.c | 463 void *container; in __drmm_crtc_alloc_with_planes() local 471 container = drmm_kzalloc(dev, size, GFP_KERNEL); in __drmm_crtc_alloc_with_planes() 472 if (!container) in __drmm_crtc_alloc_with_planes() 475 crtc = container + offset; in __drmm_crtc_alloc_with_planes() 484 return container; in __drmm_crtc_alloc_with_planes()
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | surface9.c | 70 pParams->container = pContainer; in NineSurface9_ctor() 99 * container info (in the pContainer case). Some refactoring is in NineSurface9_ctor() 317 if (!This->base.base.container) in NineSurface9_Dump() 319 NineUnknown_QueryInterface(This->base.base.container, ref, (void **)&tex); in NineSurface9_Dump() 343 hr = NineUnknown_QueryInterface(NineUnknown(This)->container ? in NineSurface9_GetContainer() 344 NineUnknown(This)->container : &NineUnknown(This)->device->base, in NineSurface9_GetContainer() 356 NineBaseTexture9(This->base.base.container); in NineSurface9_MarkContainerDirty() 404 NineTexture9(This->base.base.container); in NineSurface9_AddDirtyRect() 409 NineCubeTexture9(This->base.base.container); in NineSurface9_AddDirtyRect() 522 !(This->base.base.container in NineSurface9_LockRect() [all...] |
/third_party/libphonenumber/java/demoapp/app/src/main/java/com/google/phonenumbers/demoapp/result/ |
H A D | FormattableFragment.java | 39 LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { in onCreateView() 40 root = inflater.inflate(R.layout.fragment_formattable, container, false); in onCreateView() 38 onCreateView( LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) onCreateView() argument
|
H A D | NotFormattableFragment.java | 44 LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { in onCreateView() 45 root = inflater.inflate(R.layout.fragment_not_formattable, container, false); in onCreateView() 43 onCreateView( LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) onCreateView() argument
|
/third_party/protobuf/python/google/protobuf/ |
H A D | message.py | 404 container = message_descriptor 405 return (_InternalConstructMessage, (container.full_name,),
|
/third_party/googletest/googlemock/include/gmock/ |
H A D | gmock-matchers.h | 2293 // Implements a matcher that checks the size of an STL-style container. 2321 bool MatchAndExplain(Container container, 2323 SizeType size = container.size(); 2341 // container. 2374 bool MatchAndExplain(Container container, 2378 DistanceType distance = std::distance(begin(container), end(container)); 2396 // Implements an equality matcher for any STL-style container whose elements 2398 // more detailed information that is useful when the container is used as a set. 2404 // Uses the container' 2709 MatchAndExplainImpl(bool all_elements_should_match, Container container, MatchResultListener* listener) const MatchAndExplainImpl() argument 2728 MatchAndExplainImpl(const Matcher<size_t>& count_matcher, Container container, MatchResultListener* listener) const MatchAndExplainImpl() argument 4216 UnorderedElementsAreArray(const Container& container) UnorderedElementsAreArray() argument 4880 IsSupersetOf(const Container& container) IsSupersetOf() argument 4937 IsSubsetOf(const Container& container) IsSubsetOf() argument 5184 AnyOfArray( const Container& container) AnyOfArray() argument 5190 AllOfArray( const Container& container) AllOfArray() argument [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | class_use_as.hpp | 14 struct container { struct
|
H A D | opaque_in_struct.hpp | 9 struct container { struct
|
/kernel/linux/linux-6.6/sound/soc/qcom/qdsp6/ |
H A D | audioreach.c | 37 /* container config */ 335 struct audioreach_container *container, in apm_populate_module_list_obj() 342 obj->container_id = container->container_id; in apm_populate_module_list_obj() 343 obj->num_modules = container->num_modules; in apm_populate_module_list_obj() 345 list_for_each_entry(module, &container->modules_list, node) { in apm_populate_module_list_obj() 364 struct audioreach_container *container; in audioreach_populate_graph() local 389 list_for_each_entry(container, &sg->container_list, node) { in audioreach_populate_graph() 392 apm_populate_container_config(cobj, container); in audioreach_populate_graph() 393 apm_populate_module_list_obj(mlobj, container, sg->sub_graph_id); in audioreach_populate_graph() 395 list_for_each_entry(module, &container in audioreach_populate_graph() 334 apm_populate_module_list_obj(struct apm_mod_list_obj *obj, struct audioreach_container *container, int sub_graph_id) apm_populate_module_list_obj() argument 431 struct audioreach_container *container; audioreach_alloc_graph_pkt() local [all...] |
/third_party/python/Lib/ |
H A D | argparse.py | 826 - choices -- A container of values that should be allowed. If not None, 1486 action.container = self 1504 def _add_container_actions(self, container): 1515 for group in container._action_groups: 1518 # create a new group matching the container's group 1529 # add container's mutually exclusive groups 1532 for group in container._mutually_exclusive_groups: 1540 # add all actions to this container or their group 1541 for action in container._actions: 1640 # container holdin [all...] |
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/ |
H A D | name_table.cc | 245 if (name_index_ < container()->NameCount()) { in HasNext() 250 for (; name_index_ < container()->NameCount(); ++name_index_) { in HasNext() 251 if (filter_->Accept(container()->PlatformId(name_index_), in HasNext() 252 container()->EncodingId(name_index_), in HasNext() 253 container()->LanguageId(name_index_), in HasNext() 254 container()->NameId(name_index_))) { in HasNext() 264 return container()->GetNameEntry(name_index_++); in Next()
|
/kernel/linux/linux-6.6/drivers/vfio/ |
H A D | vfio.h | 82 struct vfio_container *container; member 242 int vfio_container_attach_group(struct vfio_container *container, 274 static inline int vfio_container_attach_group(struct vfio_container *container, in vfio_container_attach_group() argument
|
/third_party/node/deps/v8/third_party/inspector_protocol/ |
H A D | check_protocol_compatibility.py | 70 def named_list_to_map(container, name, key): 71 if name in container: 72 return list_to_map(container[name], key)
|
/third_party/node/tools/inspector_protocol/ |
H A D | check_protocol_compatibility.py | 70 def named_list_to_map(container, name, key): 71 if name in container: 72 return list_to_map(container[name], key)
|
/third_party/node/test/fixtures/wpt/resources/ |
H A D | check-layout.js | 217 var container = node.parentNode.className == 'container' ? node.parentNode : node; 224 pre.appendChild(document.createTextNode(failures.length ? "FAIL:\n" + failures.join('\n') + '\n\n' + container.outerHTML : "PASS")); 226 var referenceNode = container;
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_shader.h | 151 typedef std::vector<T> container; typedef in r600_sb::queue 152 container cont; 157 typedef typename container::iterator iterator;
|
/kernel/linux/linux-5.10/drivers/base/ |
H A D | container.c | 9 #include <linux/container.h> 13 #define CONTAINER_BUS_NAME "container"
|
/kernel/linux/linux-6.6/drivers/base/ |
H A D | container.c | 9 #include <linux/container.h> 13 #define CONTAINER_BUS_NAME "container"
|
/third_party/node/deps/v8/src/objects/ |
H A D | code-inl.h | 222 // Concurrent marker needs to access kind specific flags in code data container. 675 CodeDataContainer container = code_data_container(kAcquireLoad); in set_can_have_weak_objects() local 676 int32_t previous = container.kind_specific_flags(kRelaxedLoad); in set_can_have_weak_objects() 678 container.set_kind_specific_flags(updated, kRelaxedStore); in set_can_have_weak_objects() 690 CodeDataContainer container = code_data_container(kAcquireLoad); in set_is_promise_rejection() local 691 int32_t previous = container.kind_specific_flags(kRelaxedLoad); in set_is_promise_rejection() 693 container.set_kind_specific_flags(updated, kRelaxedStore); in set_is_promise_rejection() 784 CodeDataContainer container = code_data_container(kAcquireLoad); in set_embedded_objects_cleared() local 785 int32_t previous = container.kind_specific_flags(kRelaxedLoad); in set_embedded_objects_cleared() 787 container in set_embedded_objects_cleared() [all...] |
/third_party/skia/tests/ |
H A D | RegionTest.cpp | 67 SkRegion container; in test_fromchrome() local 68 Union(&container, SkIRect::MakeXYWH(0, 0, 40, 20)); in test_fromchrome() 69 Union(&container, SkIRect::MakeXYWH(30, 20, 10, 20)); in test_fromchrome() 70 TEST_NO_CONTAINS(container, SkIRect::MakeXYWH(0, 0, 10, 39)); in test_fromchrome() 71 TEST_NO_CONTAINS(container, SkIRect::MakeXYWH(29, 0, 10, 39)); in test_fromchrome()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fLifetimeTests.cpp | 215 void attach (GLuint element, GLuint container); 216 void detach (GLuint element, GLuint container); 219 GLuint getAttachment (GLuint container); 294 void drawContainer (GLuint container, Surface& dst); 359 void setupContainer (GLuint seed, GLuint container);
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/bitmap/ |
H A D | bitmap_size_table.cc | 483 BitmapSizeTable::Builder* container) in BitmapGlyphInfoIterator() 484 : RefIterator<BitmapGlyphInfo, BitmapSizeTable::Builder>(container) { in BitmapGlyphInfoIterator() 485 sub_table_iter_ = container->IndexSubTableBuilders()->begin(); in BitmapGlyphInfoIterator() 493 while (++sub_table_iter_ != container()->IndexSubTableBuilders()->end()) { in HasNext() 482 BitmapGlyphInfoIterator( BitmapSizeTable::Builder* container) BitmapGlyphInfoIterator() argument
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | ICUResourceBundle.java | 83 private ICUResourceBundle container; field in ICUResourceBundle 1097 return (container == null) ? 0 : container.getResDepth() + 1; in getResDepth() 1111 b = b.container; in getResPathKeys() 1112 assert (depth == 0) == (b.container == null); in getResPathKeys() 1582 protected ICUResourceBundle(ICUResourceBundle container, String key) { in ICUResourceBundle() argument 1584 wholeBundle = container.wholeBundle; in ICUResourceBundle() 1585 this.container = container; in ICUResourceBundle() 1586 parent = container in ICUResourceBundle() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/v3d/ |
H A D | v3d_gem.c | 401 void **container, size_t size, void (*free)(struct kref *ref), in v3d_job_init() 409 *container = kcalloc(1, size, GFP_KERNEL); in v3d_job_init() 410 if (!*container) { in v3d_job_init() 415 job = *container; in v3d_job_init() 458 kfree(*container); in v3d_job_init() 459 *container = NULL; in v3d_job_init() 400 v3d_job_init(struct v3d_dev *v3d, struct drm_file *file_priv, void **container, size_t size, void (*free)(struct kref *ref), u32 in_sync, struct v3d_submit_ext *se, enum v3d_queue queue) v3d_job_init() argument
|