Home
last modified time | relevance | path

Searched refs:get_val (Results 1 – 25 of 36) sorted by relevance

12

/external/libkmsxx/py/tests/
Dkmsmodeview.py66 def get_val(self): member in MyIntEdit
103 pclk_ps_widget = MyIntText(fmt="pclk {:.2f} ps", calc = lambda: khz_to_ps(pclk_khz_widget.get_val()…
111 hdisp_widget = MyIntEdit(u"hdisp ", calc = lambda: hdisp2_widget.get_val())
112 hfp_widget = MyIntEdit(u"hfp ", calc = lambda: hss_widget.get_val() - hdisp_widget.get_val())
113 hsw_widget = MyIntEdit(u"hsw ", calc = lambda: hse_widget.get_val() - hss_widget.get_val())
114 hbp_widget = MyIntEdit(u"hbp ", calc = lambda: htot_widget.get_val() - hse_widget.get_val())
116 hdisp2_widget = MyIntEdit(u"hdisp ", calc = lambda: hdisp_widget.get_val())
118 calc = lambda: hdisp_widget.get_val() + hfp_widget.get_val())
120 calc = lambda: hdisp_widget.get_val() + hfp_widget.get_val() + hsw_widget.get_val())
122 …calc = lambda: hdisp_widget.get_val() + hfp_widget.get_val() + hsw_widget.get_val() + hbp_widget.g…
[all …]
/external/llvm-project/llvm/test/CodeGen/X86/
Dsetjmp-spills.ll4 declare i32 @get_val()
21 %a1 = call i32 @get_val()
22 %a2 = call i32 @get_val()
23 %a3 = call i32 @get_val()
24 %a4 = call i32 @get_val()
25 %a5 = call i32 @get_val()
26 %a6 = call i32 @get_val()
27 %a7 = call i32 @get_val()
28 %a8 = call i32 @get_val()
30 ; X86-32: calll get_val
[all …]
/external/llvm/test/CodeGen/X86/
Dsetjmp-spills.ll4 declare i32 @get_val()
21 %a1 = call i32 @get_val()
22 %a2 = call i32 @get_val()
23 %a3 = call i32 @get_val()
24 %a4 = call i32 @get_val()
25 %a5 = call i32 @get_val()
26 %a6 = call i32 @get_val()
27 %a7 = call i32 @get_val()
28 %a8 = call i32 @get_val()
30 ; X86-32: calll get_val
[all …]
/external/pdfium/xfa/fxfa/fm2js/
Dcxfa_fmparser_unittest.cpp305 pfm_ret = pfm_rt.get_val((function() {
307 return obj.f(pfm_rt.get_val(O));
310 return pfm_rt.get_val(pfm_ret);
338 pfm_ret = pfm_rt.get_val((function() {
340 return obj.f(pfm_rt.get_val((function() {
342 return obj.e(pfm_rt.get_val((function() {
344 return obj.e(pfm_rt.get_val(O));
351 return pfm_rt.get_val(pfm_ret);
382 return pfm_rt.get_val(pfm_ret);
410 pfm_ret = pfm_rt.get_val((function() {
[all …]
/external/ltp/testcases/kernel/syscalls/prctl/
Dprctl03.c36 int get_val; in check_get_subreaper() local
38 TEST(prctl(PR_GET_CHILD_SUBREAPER, &get_val)); in check_get_subreaper()
44 if (get_val == exp_val) { in check_get_subreaper()
46 get_val); in check_get_subreaper()
49 get_val, exp_val); in check_get_subreaper()
/external/ltp/testcases/lib/
Dtst_checkpoint.c22 static int get_val(const char *name, const char *arg, unsigned int *val) in get_val() function
60 if (get_val("NR_WAKE", argv[4], &nr_wake)) in main()
68 if (get_val("TIMEOUT", argv[2], &timeout) in main()
69 || get_val("ID", argv[3], &id)) { in main()
/external/llvm-project/libcxx/test/libcxx/memory/trivial_abi/
Dshared_ptr_arg.pass.cpp31 __attribute__((noinline)) bool get_val(std::shared_ptr<Node> /*unused*/) { in get_val() function
49 expect_1(&shared, get_val(std::make_shared<Node>(&shared))); in main()
Dunique_ptr_arg.pass.cpp30 __attribute__((noinline)) bool get_val(std::unique_ptr<Node> /*unused*/) { in get_val() function
48 expect_1(&shared, get_val(std::unique_ptr<Node>(new Node(&shared)))); in main()
Dunique_ptr_array.pass.cpp31 __attribute__((noinline)) bool get_val(std::unique_ptr<Node[]> /*unused*/) { in get_val() function
49 expect_3(&shared, get_val(std::unique_ptr<Node[]>(new Node[3]{ in main()
/external/llvm-project/clang/test/OpenMP/
Dtarget_simd_codegen.cpp121 long long get_val() { return 0; } in get_val() function
141 long long k = get_val(); in foo()
176 #pragma omp target simd if(target: 1) linear(lin, a : get_val()) in foo()
Dtarget_parallel_for_simd_codegen.cpp124 long long get_val() { return 0; } in get_val() function
144 long long k = get_val(); in foo()
179 #pragma omp target parallel for simd if(target: 1) linear(lin, a : get_val()) in foo()
Dtarget_parallel_for_codegen.cpp133 long long get_val() { return 0; } in get_val() function
159 long long k = get_val(); in foo()
213 #pragma omp target parallel for if(target: 1) linear(lin, a : get_val()) nowait in foo()
Dparallel_for_simd_codegen.cpp25 long long get_val() { extern void mayThrow(); mayThrow(); return 0; } in get_val() function
82 long long k = get_val(); in simple()
131 #pragma omp parallel for simd linear(lin : get_val()), linear(g_ptr) in simple()
Dfor_simd_codegen.cpp23 long long get_val() { extern void mayThrow(); mayThrow(); return 0; } in get_val() function
72 long long k = get_val(); in simple()
124 #pragma omp for simd linear(lin : get_val()), linear(g_ptr) in simple()
Dsimd_codegen.cpp29 long long get_val() { extern void mayThrow(); mayThrow(); return 0; } in get_val() function
76 long long k = get_val(); in simple()
120 #pragma omp simd linear(lin : get_val()), linear(g_ptr) in simple()
/external/llvm-project/pstl/test/std/algorithms/alg.nonmodifying/
Dnth_element.pass.cpp40 get_val() const in get_val() function
59 return x.get_val() == y.get_val(); in is_equal()
169 …const DataType<float32_t>& x, const DataType<float32_t>& y) { return x.get_val() < y.get_val(); }); in main()
/external/clang/test/OpenMP/
Dfor_simd_codegen.cpp10 long long get_val() { return 0; } in get_val() function
55 long long k = get_val(); in simple()
107 #pragma omp for simd linear(lin : get_val()), linear(g_ptr) in simple()
Dparallel_for_simd_codegen.cpp10 long long get_val() { return 0; } in get_val() function
67 long long k = get_val(); in simple()
116 #pragma omp parallel for simd linear(lin : get_val()), linear(g_ptr) in simple()
Dsimd_codegen.cpp12 long long get_val() { return 0; } in get_val() function
41 long long k = get_val(); in simple()
85 #pragma omp simd linear(lin : get_val()), linear(g_ptr) in simple()
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorIndexList.h178 EIGEN_DEVICE_FUNC static constexpr ValType& get_val(IndexTuple<T, O...>& val) {
179 return IndexTupleExtractor<N-1, O...>::get_val(val.others);
182 EIGEN_DEVICE_FUNC static constexpr const ValType& get_val(const IndexTuple<T, O...>& val) {
183 return IndexTupleExtractor<N-1, O...>::get_val(val.others);
197 EIGEN_DEVICE_FUNC static constexpr ValType& get_val(IndexTuple<T, O...>& val) {
200 EIGEN_DEVICE_FUNC static constexpr const ValType& get_val(const IndexTuple<T, O...>& val) {
213 return IndexTupleExtractor<N, T, O...>::get_val(tuple);
217 return IndexTupleExtractor<N, T, O...>::get_val(tuple);
376 return IndexTupleExtractor<N, FirstType, OtherTypes...>::get_val(a);
379 return IndexTupleExtractor<N, FirstType, OtherTypes...>::get_val(a);
/external/llvm-project/llvm/test/Analysis/ValueTracking/
Dassume.ll25 ; CHECK-NEXT: [[TMP0:%.*]] = call i1 @get_val()
31 %0 = call i1 @get_val()
37 declare i1 @get_val()
/external/llvm-project/pstl/test/std/algorithms/alg.modifying.operations/alg.partitions/
Dpartition.pass.cpp36 get_val() const in get_val() function
172 [](const DataType<float32_t>& x) { return x.get_val() < 0; }); in main()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dfunctional_control_flow_to_cfg.cc81 Location loc, const std::function<Value(int)>& get_val, Block* block, in PrepareValsForJump() argument
87 Value val = get_val(i); in PrepareValsForJump()
/external/rust/crates/downcast-rs/src/
Dlib.rs517 fn get_val(base: &$crate::__alloc::boxed::Box<$base_type>) -> u32 {
530 assert_eq!(get_val(&base), 42);
540 assert_eq!(get_val(&base), 6*9);
/external/wpa_supplicant_8/src/utils/
Dxml-utils.c192 static char * get_val(struct xml_node_ctx *ctx, xml_node_t *node) in get_val() function
248 val = get_val(ctx, node); in node_to_tnds()

12