Home
last modified time | relevance | path

Searched refs:mems (Results 1 – 25 of 27) sorted by relevance

12

/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_hierarchy_test/
Dcpuset_hierarchy_test.sh250 cpuset_log "father cpuset.mems $(cat "$CPUSET/father/cpuset.mems")"
251 cpuset_log "child cpuset.mems $(cat "$CPUSET/father/child/cpuset.mems")"
253 test -z "$(cat "$CPUSET/father/cpuset.mems")" || return 1
254 test -z "$(cat "$CPUSET/father/child/cpuset.mems")" || return 1
262 cpuset_log "father cpuset.mems $(cat "$CPUSET/father/cpuset.mems")"
263 cpuset_log "child cpuset.mems $(cat "$CPUSET/father/child/cpuset.mems")"
265 test -z "$(cat "$CPUSET/father/cpuset.mems")" || return 1
266 test -z "$(cat "$CPUSET/father/child/cpuset.mems")" || return 1
274 cpuset_log "father cpuset.mems $(cat "$CPUSET/father/cpuset.mems")"
275 cpuset_log "child cpuset.mems $(cat "$CPUSET/father/child/cpuset.mems")"
[all …]
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_base_ops_test/
Dcpuset_base_ops_testset.sh139 while read mems result
141 base_op_test "$CPUSET/1/cpuset.mems" "$mems" "$result"
194 local mems=$2
220 if [ "$mems" != "NULL" ]; then
221 echo $mems > "$CPUSET/sub_cpuset/cpuset.mems"
232 …tst_resm TFAIL "Attaching Task Test failed!! cpus - \"$cpus\", mems - \"$mems\", Expect - \"$expec…
248 while read cpus mems expect
250 attach_task_test "$cpus" "$mems" "$expect"
261 for filename in cpus mems memory_pressure
/third_party/musl/src/passwd/
Dgetgrent_a.c14 char *s, *mems; in __getgrent_a() local
39 *s++ = 0; mems = s; in __getgrent_a()
54 if (*mems) { in __getgrent_a()
55 mem[0][0] = mems; in __getgrent_a()
56 for (s=mems, i=0; *s; s++) in __getgrent_a()
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
Dlibcpuset.c71 struct bitmask *mems; member
624 if ((cp->mems = bitmask_alloc(nbits)) == NULL) in cpuset_alloc()
631 if (cp && cp->mems) in cpuset_alloc()
632 bitmask_free(cp->mems); in cpuset_alloc()
644 if (cp->mems) in cpuset_free()
645 bitmask_free(cp->mems); in cpuset_free()
680 int cpuset_setmems(struct cpuset *cp, const struct bitmask *mems) in cpuset_setmems() argument
682 if (cp->mems) in cpuset_setmems()
683 bitmask_free(cp->mems); in cpuset_setmems()
684 cp->mems = bitmask_alloc(bitmask_nbits(mems)); in cpuset_setmems()
[all …]
Dcpuset.h192 int cpuset_setmems(struct cpuset *cp, const struct bitmask *mems);
202 int cpuset_getmems(const struct cpuset *cp, struct bitmask *mems);
208 int cpuset_localcpus(const struct bitmask *mems, struct bitmask *cpus);
209 int cpuset_localmems(const struct bitmask *cpus, struct bitmask *mems);
/third_party/gstreamer/gstplugins_good/gst/goom/
Dxmmx.h338 #define mmx_m2m(op, mems, memd) \ argument
341 mmx_trace = (mems); \
342 fprintf(stderr, #op "_m2m(" #mems "=0x%08x%08x, ", \
351 : "X" (mems)); \
390 #define mmx_m2m(op, mems, memd) \ argument
395 : "X" (mems))
Dmmx.h345 #define mmx_m2m(op, mems, memd) \ argument
348 mmx_trace = (mems); \
349 printf(#op "_m2m(" #mems "=0x%08x%08x, ", \
358 : "m" (mems)); \
387 #define mmx_m2m(op, mems, memd) \ argument
392 : "m" (mems))
/third_party/gstreamer/gstplugins_bad/sys/va/
Dgstvaallocator.c100 GstMemory *mems[GST_VIDEO_MAX_PLANES]; member
481 buf->mems[i], gst_dmabuf_memory_get_fd (buf->mems[i]), buf->surface); in gst_va_dmabuf_memory_release()
482 gst_va_memory_pool_push (&self->pool, buf->mems[i]); in gst_va_dmabuf_memory_release()
597 buf->mems[i] = mem; in gst_va_dmabuf_allocator_setup_buffer_full()
656 GstMemory *mems[GST_VIDEO_MAX_PLANES] = { 0, }; in gst_va_dmabuf_allocator_prepare_buffer_unlocked() local
660 mems[0] = gst_va_memory_pool_pop (&self->pool); in gst_va_dmabuf_allocator_prepare_buffer_unlocked()
661 if (!mems[0]) in gst_va_dmabuf_allocator_prepare_buffer_unlocked()
664 buf = gst_mini_object_get_qdata (GST_MINI_OBJECT (mems[0]), in gst_va_dmabuf_allocator_prepare_buffer_unlocked()
695 mems[idx] = gst_va_memory_pool_pop (&self->pool); in gst_va_dmabuf_allocator_prepare_buffer_unlocked()
704 if (buf->mems[i] == mems[j]) { in gst_va_dmabuf_allocator_prepare_buffer_unlocked()
[all …]
Dgstvabasetransform.c640 GstMemory *mems[GST_VIDEO_MAX_PLANES]; in _try_import_dmabuf_unlocked() local
685 mems[i] = gst_buffer_peek_memory (inbuf, mem_idx); in _try_import_dmabuf_unlocked()
688 if (!gst_is_dmabuf_memory (mems[i])) in _try_import_dmabuf_unlocked()
691 offset[i] = mems[i]->offset + mem_skip; in _try_import_dmabuf_unlocked()
692 fd[i] = gst_dmabuf_memory_get_fd (mems[i]); in _try_import_dmabuf_unlocked()
697 mems, fd, offset, VA_SURFACE_ATTRIB_USAGE_HINT_VPP_READ); in _try_import_dmabuf_unlocked()
/third_party/ltp/testcases/kernel/controllers/cpuset/
Dcpuset_funcs.sh233 local mems="$3"
244 /bin/echo $mems > $path/cpuset.mems
DREADME11 cpuset, such as: adding/removing cpus/mems, setting flags, exclusive function,
26 operation of cpuset. such as: adding/removing cpus/mems, setting flags.
/third_party/node/test/fixtures/wpt/resources/webidl2/lib/
Dwebidl2.js712 const mems = [];
717 members: mems
742 const mems = [];
747 members: mems
776 const mems = [];
781 members: mems
810 const mems = [];
815 members: mems
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_inherit_test/
Dcpuset_inherit_testset.sh126 while read inherit mems result
128 inherit_test "$CPUSET/1/cpuset.mems" "$inherit" "$mems" "$result"
/third_party/gstreamer/gstplugins_good/gst/deinterlace/tvtime/
Dsse.h328 #define sse_m2m(op, mems, memd) \ argument
331 sse_trace = (mems); \
332 fprintf(stderr, #op "_m2m(" #mems "=0x%08x%08x, ", \
341 : "X" (mems)); \
376 #define sse_m2m(op, mems, memd, xmmreg) \ argument
381 : "X" (mems))
388 #define sse_m2mi(op, mems, memd, xmmreg, subop) \ argument
393 : "X" (mems))
Dmmx.h345 #define mmx_m2m(op, mems, memd) \ argument
348 mmx_trace = (mems); \
349 fprintf(stderr, #op "_m2m(" #mems "=0x%016llx, ", mmx_trace.q); \
356 : "X" (mems)); \
384 #define mmx_m2m(op, mems, memd) \ argument
389 : "m" (mems))
/third_party/flutter/skia/third_party/externals/sdl/src/render/
Dmmx.h260 #define mmx_m2m(op, mems, memd) \ argument
263 mmx_trace = (mems); \
264 printf(#op "_m2m(" #mems "=0x%08x%08x, ", \
273 : "X" (mems)); \
302 #define mmx_m2m(op, mems, memd) \ argument
307 : "X" (mems))
/third_party/gstreamer/gstplugins_bad/sys/kms/
Dgstkmssink.c1346 GstMemory *mems[GST_VIDEO_MAX_PLANES]; in gst_kms_sink_import_dmabuf() local
1387 mems[i] = gst_buffer_peek_memory (inbuf, mems_idx[i]); in gst_kms_sink_import_dmabuf()
1391 mems_skip[i] += mems[i]->offset; in gst_kms_sink_import_dmabuf()
1394 if (!gst_is_dmabuf_memory (mems[i])) in gst_kms_sink_import_dmabuf()
1400 kmsmem = (GstKMSMemory *) gst_kms_allocator_get_cached (mems[0]); in gst_kms_sink_import_dmabuf()
1403 kmsmem, mems[0], kmsmem->fb_id); in gst_kms_sink_import_dmabuf()
1408 prime_fds[i] = gst_dmabuf_memory_get_fd (mems[i]); in gst_kms_sink_import_dmabuf()
1419 kmsmem, mems[0], kmsmem->fb_id); in gst_kms_sink_import_dmabuf()
1420 gst_kms_allocator_cache (self->allocator, mems[0], GST_MEMORY_CAST (kmsmem)); in gst_kms_sink_import_dmabuf()
/third_party/libwebsockets/lib/misc/
Dlws-struct-sqlite.c41 int n, mems = (int)(ssize_t)a->map_entries_st[0]; in lws_struct_sq3_deser_cb() local
55 while (mems--) { in lws_struct_sq3_deser_cb()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/
Dgstglupload.c625 GstMemory *mems[GST_VIDEO_MAX_PLANES]; in _dma_buf_upload_accept() local
715 mems[i] = gst_buffer_peek_memory (buffer, mem_idx); in _dma_buf_upload_accept()
718 if (!gst_is_dmabuf_memory (mems[i])) { in _dma_buf_upload_accept()
723 offset[i] = mems[i]->offset + mem_skip; in _dma_buf_upload_accept()
724 fd[i] = gst_dmabuf_memory_get_fd (mems[i]); in _dma_buf_upload_accept()
743 dmabuf->eglimage[i] = _get_cached_eglimage (mems[i], cache_id); in _dma_buf_upload_accept()
763 _set_cached_eglimage (mems[i], dmabuf->eglimage[i], cache_id); in _dma_buf_upload_accept()
/third_party/mesa3d/src/gallium/frontends/clover/api/
Dtransfer.cpp918 auto mems = objs<memory_obj>(d_mems, num_mems); in clEnqueueMigrateMemObjects() local
926 }, mems)) in clEnqueueMigrateMemObjects()
932 for (auto &mem: mems) { in clEnqueueMigrateMemObjects()
/third_party/flutter/skia/third_party/externals/opencl-lib/3-0/include/CL/
Dcl.hpp6392 cl_mem * mems = (mem_objects != NULL && mem_objects->size() > 0) in enqueueNativeKernel() local
6396 if (mems != NULL) { in enqueueNativeKernel()
6398 mems[i] = ((*mem_objects)[i])(); in enqueueNativeKernel()
6407 mems, in enqueueNativeKernel()
Dcl2.hpp7926 vector<cl_mem> mems(elements); in enqueueNativeKernel() local
7928 mems[i] = ((*mem_objects)[i])(); in enqueueNativeKernel()
7936 mems.data(), in enqueueNativeKernel()
/third_party/mesa3d/include/CL/
Dcl.hpp6411 cl_mem * mems = (mem_objects != NULL && mem_objects->size() > 0) in enqueueNativeKernel() local
6415 if (mems != NULL) { in enqueueNativeKernel()
6417 mems[i] = ((*mem_objects)[i])(); in enqueueNativeKernel()
6426 mems, in enqueueNativeKernel()
Dcl2.hpp8512 vector<cl_mem> mems(elements);
8514 mems[i] = ((*mem_objects)[i])();
8522 mems.data(),
/third_party/ltp/doc/
Dc-test-api.txt2143 SAFE_CGROUP_READ(cg_child, "cpuset.mems", buf, sizeof(buf));
2145 // Do something with cpuset.mems and memory.current values

12