Home
last modified time | relevance | path

Searched refs:names (Results 751 - 775 of 1332) sorted by relevance

1...<<31323334353637383940>>...54

/kernel/linux/linux-6.6/drivers/virtio/
H A Dvirtio_input.c191 static const char * const names[] = { "events", "status" }; in virtinput_init_vqs() local
194 err = virtio_find_vqs(vi->vdev, 2, vqs, cbs, names, NULL); in virtinput_init_vqs()
H A Dvirtio_pci_modern.c360 const char * const names[], const bool *ctx, in vp_modern_find_vqs()
365 int rc = vp_find_vqs(vdev, nvqs, vqs, callbacks, names, ctx, desc); in vp_modern_find_vqs()
357 vp_modern_find_vqs(struct virtio_device *vdev, unsigned int nvqs, struct virtqueue *vqs[], vq_callback_t *callbacks[], const char * const names[], const bool *ctx, struct irq_affinity *desc) vp_modern_find_vqs() argument
/kernel/linux/linux-6.6/drivers/cxl/
H A Dcxl.h365 static const char * const names[] = { in cxl_decoder_mode_name() local
373 return names[mode]; in cxl_decoder_mode_name()
/kernel/linux/linux-6.6/drivers/gpu/drm/gma500/
H A Dintel_gmbus.c387 static const char *names[GMBUS_NUM_PORTS] = { in gma_intel_setup_gmbus() local
418 names[i]); in gma_intel_setup_gmbus()
/kernel/linux/linux-6.6/drivers/hwmon/
H A Dtmp421.c307 static const char * const names[] = { in tmp421_detect() local
358 names[kind], client->addr); in tmp421_detect()
/kernel/linux/linux-6.6/sound/pci/oxygen/
H A Dxonar_cs43xx.c286 static const char *const names[2] = { in rolloff_info() local
290 return snd_ctl_enum_info(info, 1, 2, names); in rolloff_info()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DICUServiceThreadTest.java74 * sort the display names, and null for the matchID.
284 Map names = getDisplayNames(service,locale); in iterate()
285 Iterator iter = names.entrySet().iterator(); in iterate()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DICUServiceThreadTest.java71 * sort the display names, and null for the matchID.
281 Map names = getDisplayNames(service,locale); in iterate()
282 Iterator iter = names.entrySet().iterator(); in iterate()
/third_party/mbedtls/scripts/mbedtls_dev/
H A Dmacro_collector.py78 This includes macro names as well as information about their arguments
108 # macro name -> list of argument names
202 def generate_expressions(self, names: Iterable[str]) -> Iterator[str]:
203 """Generate expressions covering values constructed from the given names.
205 `names` can be any iterable collection of macro names.
217 for name in names
330 # Ad hoc skipping of duplicate names for some numerical values
359 This includes macro names as well as information about their arguments
426 # Sets of names pe
[all...]
/third_party/ltp/scripts/
H A Dcheckbashisms.pl254 # Remove "simple" target names
687 q<function names should only contain [a-z0-9_]>,
689 => q<function names should only contain [a-z0-9_]>,
/third_party/icu/icu4c/source/test/perf/collationperf/
H A DCollPerf.pl176 default options. A large list of names is used as data in each test, where the
177 names vary according to language. Each Collation operation over the whole list
/third_party/rust/crates/clap/clap_bench/benches/
H A D05_ripgrep.rs737 enabled, then file names will be shown for every line matched. \
824 "Print NUL byte after file names",
826 This includes printing file names before matches, and when \
848 files.\n\nCapture group indices (e.g., $5) and names \
906 permits specifying one or more other type names (separated by a \
915 Note that type names must consist only of Unicode letters or \
/third_party/python/Tools/c-analyzer/c_common/
H A Dfsutil.py195 for parent, _, names in _walk(root):
196 for name in names:
/third_party/python/Tools/scripts/
H A Dstable_abi.py63 # We assume that stable ABI items do not share names,
323 for ifdef, names in optional_items.items():
326 for name in names:
594 """Ensure limited API doesn't contain private names
/third_party/python/Lib/test/support/
H A Dos_helper.py15 # Jython disallows @ in module names
27 # In Mac OS X's VFS API file names are, by definition, canonically
592 names = os.listdir("/proc/self/fd")
595 return len(names) - 1
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/
H A DFunctionsEGL.cpp498 const EGLint *names, in getCompositorTimingANDROID()
501 return mFnPtrs->getCompositorTimingANDROIDPtr(mEGLDisplay, surface, numTimestamps, names, in getCompositorTimingANDROID()
496 getCompositorTimingANDROID(EGLSurface surface, EGLint numTimestamps, const EGLint *names, EGLnsecsANDROID *values) const getCompositorTimingANDROID() argument
/third_party/skia/src/core/
H A DSkYUVMath.cpp293 const char* names[] = { in dump() local
308 SkDebugf("const float %s_%s[] = {\n", names[cs], dirnames[rgb2yuv]); in dump()
/third_party/python/Lib/test/libregrtest/
H A Druntest.py159 names = os.listdir(testdir)
162 for name in names:
/third_party/python/Lib/test/
H A Dtest_unparse.py426 tree = ast.ImportFrom(module='mod', names=[ast.alias(name='x')])
428 tree = ast.ImportFrom(module='mod', names=[ast.alias(name='x')], level=None)
703 # bpo-31174: Store the names sample to always test the same files.
/third_party/python/Lib/unittest/test/
H A Dtest_suite.py19 def _mk_TestSuite(*names):
20 return unittest.TestSuite(Test.Foo(n) for n in names)
/third_party/python/Lib/unittest/
H A Dloader.py145 The method optionally resolves the names relative to a given module.
216 def loadTestsFromNames(self, names, module=None):
220 suites = [self.loadTestsFromName(name, module) for name in names]
224 """Return a sorted sequence of method names found within testCaseClass
294 # support for discovery from dotted module names
309 'as dotted module names') from None
/third_party/rust/crates/nom/src/
H A Derror.rs725 pub fn print_codes(colors: &HashMap<u32, u8>, names: &HashMap<u32, &str>) -> String {
728 if let Some(&s) = names.get(code) {
/third_party/vk-gl-cts/modules/glshared/
H A DglsLifetimeTests.hpp59 typedef void (CallLogWrapper::*GenFunc) (GLsizei n, GLuint* names);
60 typedef void (CallLogWrapper::*DeleteFunc) (GLsizei n, const GLuint* names);
/kernel/linux/linux-5.10/fs/btrfs/
H A Dioctl.c4745 char *names; in check_feature_bits() local
4752 names = btrfs_printable_features(set, unsupported); in check_feature_bits()
4753 if (names) { in check_feature_bits()
4756 names, strchr(names, ',') ? "s" : ""); in check_feature_bits()
4757 kfree(names); in check_feature_bits()
4767 names = btrfs_printable_features(set, disallowed); in check_feature_bits()
4768 if (names) { in check_feature_bits()
4771 names, strchr(names, ',') in check_feature_bits()
[all...]
/kernel/linux/linux-6.6/fs/btrfs/
H A Dioctl.c4225 char *names; in check_feature_bits() local
4232 names = btrfs_printable_features(set, unsupported); in check_feature_bits()
4233 if (names) { in check_feature_bits()
4236 names, strchr(names, ',') ? "s" : ""); in check_feature_bits()
4237 kfree(names); in check_feature_bits()
4247 names = btrfs_printable_features(set, disallowed); in check_feature_bits()
4248 if (names) { in check_feature_bits()
4251 names, strchr(names, ',') in check_feature_bits()
[all...]

Completed in 33 milliseconds

1...<<31323334353637383940>>...54