Home
last modified time | relevance | path

Searched refs:cval (Results 1 – 25 of 49) sorted by relevance

12

/external/clang/test/SemaCXX/
Dconstant-expression.cpp13 const int cval = 2; variable
24 v3 = cval,
32 v11 = true? 1 + cval * Struct::sval ^ itval / (int)1.5 - sizeof(Struct) : 0
37 b3 : cval,
45 b11 : true? 1 + cval * Struct::sval ^ itval / (int)1.5 - sizeof(Struct) : 0
50 i3 = cval,
58 i11 = true? 1 + cval * Struct::sval ^ itval / (int)1.5 - sizeof(Struct) : 0
64 case 200 + cval: in f()
72 case 1000 + (true? 1 + cval * Struct::sval ^ in f()
81 template struct C<cval, ceval>;
/external/llvm-project/clang/test/SemaCXX/
Dconstant-expression.cpp13 const int cval = 2; variable
24 v3 = cval,
32 v11 = true? 1 + cval * Struct::sval ^ itval / (int)1.5 - sizeof(Struct) : 0
37 b3 : cval,
45 b11 : true? 1 + cval * Struct::sval ^ itval / (int)1.5 - sizeof(Struct) : 0
50 i3 = cval,
58 i11 = true? 1 + cval * Struct::sval ^ itval / (int)1.5 - sizeof(Struct) : 0
64 case 200 + cval: in f()
72 case 1000 + (true? 1 + cval * Struct::sval ^ in f()
81 template struct C<cval, ceval>;
/external/python/cpython2/Objects/
Dcomplexobject.c223 complex_subtype_from_c_complex(PyTypeObject *type, Py_complex cval) in complex_subtype_from_c_complex() argument
229 ((PyComplexObject *)op)->cval = cval; in complex_subtype_from_c_complex()
234 PyComplex_FromCComplex(Py_complex cval) in PyComplex_FromCComplex() argument
243 op->cval = cval; in PyComplex_FromCComplex()
269 return ((PyComplexObject *)op)->cval.real; in PyComplex_RealAsDouble()
280 return ((PyComplexObject *)op)->cval.imag; in PyComplex_ImagAsDouble()
328 return ((PyComplexObject *)op)->cval; in PyComplex_AsCComplex()
345 cv = ((PyComplexObject *)newop)->cval; in PyComplex_AsCComplex()
386 if (v->cval.real == 0. && copysign(1.0, v->cval.real)==1.0) { in complex_format()
388 im = PyOS_double_to_string(v->cval.imag, format_code, in complex_format()
[all …]
/external/arm-trusted-firmware/bl32/tsp/
Dtsp_timer.c19 uint64_t cval; member
30 uint64_t cval; in tsp_generic_timer_start() local
34 cval = read_cntpct_el0() + (read_cntfrq_el0() >> 1); in tsp_generic_timer_start()
35 write_cntps_cval_el1(cval); in tsp_generic_timer_start()
76 pcpu_timer_context[linear_id].cval = read_cntps_cval_el1(); in tsp_generic_timer_save()
89 write_cntps_cval_el1(pcpu_timer_context[linear_id].cval); in tsp_generic_timer_restore()
/external/yapf/yapf/yapflib/
Dunwrapped_line.py393 cval = cur_token.value
395 if pval == 'yield' and cval == 'from':
398 if pval in {'async', 'await'} and cval in {'def', 'with', 'for'}:
406 if cval == ':':
409 if cval == ',':
412 if prev_token.is_name and cval == '(':
415 if prev_token.is_name and cval == '[':
418 if prev_token.is_name and cval == '.':
469 cval = cur_token.value
480 if cval in _LOGICAL_OPERATORS:
[all …]
/external/python/cpython3/Objects/
Dcomplexobject.c219 complex_subtype_from_c_complex(PyTypeObject *type, Py_complex cval) in complex_subtype_from_c_complex() argument
225 ((PyComplexObject *)op)->cval = cval; in complex_subtype_from_c_complex()
230 PyComplex_FromCComplex(Py_complex cval) in PyComplex_FromCComplex() argument
239 op->cval = cval; in PyComplex_FromCComplex()
265 return ((PyComplexObject *)op)->cval.real; in PyComplex_RealAsDouble()
276 return ((PyComplexObject *)op)->cval.imag; in PyComplex_ImagAsDouble()
326 return ((PyComplexObject *)op)->cval; in PyComplex_AsCComplex()
337 cv = ((PyComplexObject *)newop)->cval; in PyComplex_AsCComplex()
371 if (v->cval.real == 0. && copysign(1.0, v->cval.real)==1.0) { in complex_repr()
375 im = PyOS_double_to_string(v->cval.imag, format_code, in complex_repr()
[all …]
/external/arm-trusted-firmware/plat/mediatek/mt8173/drivers/timer/
Dmt_cpuxgpt.c29 uint64_t cval; in generic_timer_backup() local
31 cval = read_cntpct_el0(); in generic_timer_backup()
32 cpuxgpt_set_init_cnt((uint32_t)(cval >> 32), in generic_timer_backup()
33 (uint32_t)(cval & 0xffffffff)); in generic_timer_backup()
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/
Dtable.int.h86 UPB_INLINE void upb_value_set ## name(upb_value *val, type_t cval) { \
87 val->val = (converter)cval; \
110 UPB_INLINE void upb_value_setfloat(upb_value *val, float cval) { in FUNCS()
111 memcpy(&val->val, &cval, sizeof(cval)); in FUNCS()
114 UPB_INLINE void upb_value_setdouble(upb_value *val, double cval) { in upb_value_setdouble() argument
115 memcpy(&val->val, &cval, sizeof(cval)); in upb_value_setdouble()
118 UPB_INLINE upb_value upb_value_float(float cval) { in upb_value_float() argument
120 upb_value_setfloat(&ret, cval); in upb_value_float()
124 UPB_INLINE upb_value upb_value_double(double cval) { in upb_value_double() argument
126 upb_value_setdouble(&ret, cval); in upb_value_double()
/external/llvm-project/llvm/test/Transforms/Scalarizer/
Ddbginfo.ll27 ; CHECK: %cval.i0 = load i32, i32* %c.i0, align 16, !dbg ![[TAG1]], !tbaa ![[TAG2]]
28 ; CHECK: %cval.i1 = load i32, i32* %c.i1, align 4, !dbg ![[TAG1]], !tbaa ![[TAG2]]
29 ; CHECK: %cval.i2 = load i32, i32* %c.i2, align 8, !dbg ![[TAG1]], !tbaa ![[TAG2]]
30 ; CHECK: %cval.i3 = load i32, i32* %c.i3, align 4, !dbg ![[TAG1]], !tbaa ![[TAG2]]
31 ; CHECK: %add.i0 = add i32 %bval.i0, %cval.i0, !dbg ![[TAG1]]
32 ; CHECK: %add.i1 = add i32 %bval.i1, %cval.i1, !dbg ![[TAG1]]
33 ; CHECK: %add.i2 = add i32 %bval.i2, %cval.i2, !dbg ![[TAG1]]
34 ; CHECK: %add.i3 = add i32 %bval.i3, %cval.i3, !dbg ![[TAG1]]
45 %cval = load <4 x i32>, <4 x i32>* %c, align 16, !dbg !21, !tbaa !22
46 %add = add <4 x i32> %bval, %cval, !dbg !21
/external/llvm/test/Transforms/Scalarizer/
Ddbginfo.ll26 ; CHECK: %cval.i0 = load i32, i32* %c.i0, align 16, !dbg ![[TAG1]], !tbaa ![[TAG2]]
27 ; CHECK: %cval.i1 = load i32, i32* %c.i1, align 4, !dbg ![[TAG1]], !tbaa ![[TAG2]]
28 ; CHECK: %cval.i2 = load i32, i32* %c.i2, align 8, !dbg ![[TAG1]], !tbaa ![[TAG2]]
29 ; CHECK: %cval.i3 = load i32, i32* %c.i3, align 4, !dbg ![[TAG1]], !tbaa ![[TAG2]]
30 ; CHECK: %add.i0 = add i32 %bval.i0, %cval.i0, !dbg ![[TAG1]]
31 ; CHECK: %add.i1 = add i32 %bval.i1, %cval.i1, !dbg ![[TAG1]]
32 ; CHECK: %add.i2 = add i32 %bval.i2, %cval.i2, !dbg ![[TAG1]]
33 ; CHECK: %add.i3 = add i32 %bval.i3, %cval.i3, !dbg ![[TAG1]]
44 %cval = load <4 x i32>, <4 x i32>* %c, align 16, !dbg !21, !tbaa !22
45 %add = add <4 x i32> %bval, %cval, !dbg !21
/external/arm-trusted-firmware/plat/mediatek/mt8192/drivers/timer/
Dmt_timer.c24 uint64_t cval; in sched_clock() local
28 cval = ((rel_base * 1000U) / SYS_COUNTER_FREQ_IN_MHZ) in sched_clock()
30 return cval; in sched_clock()
/external/arm-trusted-firmware/plat/mediatek/mt6795/drivers/timer/
Dmt_cpuxgpt.c31 uint64_t cval; in sched_clock() local
33 cval = (((read_cntpct_el0() - atf_time_base)*1000)/ in sched_clock()
35 return cval; in sched_clock()
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.keras.preprocessing.image.pbtxt21 …', \'zy\', \'row_axis\', \'col_axis\', \'channel_axis\', \'fill_mode\', \'cval\', \'order\'], vara…
53 …', \'rg\', \'row_axis\', \'col_axis\', \'channel_axis\', \'fill_mode\', \'cval\', \'interpolation_…
57 …tensity\', \'row_axis\', \'col_axis\', \'channel_axis\', \'fill_mode\', \'cval\', \'interpolation_…
61 …, \'hrg\', \'row_axis\', \'col_axis\', \'channel_axis\', \'fill_mode\', \'cval\', \'interpolation_…
65 …m_range\', \'row_axis\', \'col_axis\', \'channel_axis\', \'fill_mode\', \'cval\', \'interpolation_…
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.keras.preprocessing.image.pbtxt21 …', \'zy\', \'row_axis\', \'col_axis\', \'channel_axis\', \'fill_mode\', \'cval\', \'order\'], vara…
53 …', \'rg\', \'row_axis\', \'col_axis\', \'channel_axis\', \'fill_mode\', \'cval\', \'interpolation_…
57 …tensity\', \'row_axis\', \'col_axis\', \'channel_axis\', \'fill_mode\', \'cval\', \'interpolation_…
61 …, \'hrg\', \'row_axis\', \'col_axis\', \'channel_axis\', \'fill_mode\', \'cval\', \'interpolation_…
65 …m_range\', \'row_axis\', \'col_axis\', \'channel_axis\', \'fill_mode\', \'cval\', \'interpolation_…
/external/llvm-project/mlir/tools/mlir-tblgen/
DOpenMPCommonGen.cpp56 ClauseVal cval{cv}; in emitDecls() local
57 if (!cval.isUserVisible()) in emitDecls()
60 const auto name = cval.getFormattedName(); in emitDecls()
/external/linux-kselftest/tools/testing/selftests/bpf/progs/
Dtest_l4lb_noinline.c334 struct ctl_value *cval; in process_packet() local
429 cval = bpf_map_lookup_elem(&ctl_array, &v6_intf_pos); in process_packet()
430 if (!cval) in process_packet()
432 ifindex = cval->ifindex; in process_packet()
436 cval = bpf_map_lookup_elem(&ctl_array, &v4_intf_pos); in process_packet()
437 if (!cval) in process_packet()
439 ifindex = cval->ifindex; in process_packet()
Dtest_l4lb.c334 struct ctl_value *cval; in process_packet() local
429 cval = bpf_map_lookup_elem(&ctl_array, &v6_intf_pos); in process_packet()
430 if (!cval) in process_packet()
432 ifindex = cval->ifindex; in process_packet()
436 cval = bpf_map_lookup_elem(&ctl_array, &v4_intf_pos); in process_packet()
437 if (!cval) in process_packet()
439 ifindex = cval->ifindex; in process_packet()
Dtest_xdp_noinline.c278 bool encap_v6(struct xdp_md *xdp, struct ctl_value *cval, in encap_v6() argument
299 memcpy(new_eth->eth_dest, cval->mac, 6); in encap_v6()
321 bool encap_v4(struct xdp_md *xdp, struct ctl_value *cval, in encap_v4() argument
347 memcpy(new_eth->eth_dest, cval->mac, 6); in encap_v4()
705 struct ctl_value *cval; in process_packet() local
775 cval = bpf_map_lookup_elem(&ctl_array, &mac_addr_pos); in process_packet()
776 if (!cval) in process_packet()
779 if (!encap_v6(xdp, cval, &pckt, dst, pkt_bytes)) in process_packet()
782 if (!encap_v4(xdp, cval, &pckt, dst, pkt_bytes)) in process_packet()
/external/tremolo/Tremolo/
Dfloor1.c311 int cval=0; in floor1_inverse1() local
315 cval=vorbis_book_decode(books+info->klass[classv].class_book,&vd->opb); in floor1_inverse1()
317 if(cval==-1)goto eop; in floor1_inverse1()
321 int book=info->klass[classv].class_subbook[cval&(csub-1)]; in floor1_inverse1()
322 cval>>=csubbits; in floor1_inverse1()
/external/python/cpython2/Lib/
DCookie.py599 rval, cval = self.value_encode(value)
600 self.__set(key, rval, cval)
676 rval, cval = self.value_decode(V)
677 self.__set(K, rval, cval)
/external/python/cpython3/Lib/http/
Dcookies.py497 rval, cval = self.value_encode(value)
498 self.__set(key, rval, cval)
595 rval, cval = value
596 self.__set(key, rval, cval)
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder.h136 Constant* cval = mpIRBuilder->getInt32(val); in SetMetadata() local
138 llvm::ConstantAsMetadata::get(cval)); in SetMetadata()
/external/llvm/test/CodeGen/X86/
Dcopy-eflags.ll19 %cval = load i32, i32* @c
20 %inc1 = add nsw i32 %cval, 1
/external/mesa3d/src/compiler/nir/
Dnir_search.c541 nir_ssa_def *cval; in construct_value() local
544 cval = nir_imm_floatN_t(build, c->data.d, bit_size); in construct_value()
549 cval = nir_imm_intN_t(build, c->data.i, bit_size); in construct_value()
553 cval = nir_imm_boolN_t(build, c->data.u, bit_size); in construct_value()
560 assert(cval->index == in construct_value()
563 nir_algebraic_automaton(cval->parent_instr, state->states, in construct_value()
567 val.src = nir_src_for_ssa(cval); in construct_value()
/external/llvm/test/CodeGen/SPARC/
Dfp128.ll170 %cval = load fp128, fp128* %c, align 8
171 %1 = fptosi fp128 %cval to i64
194 %cval = load fp128, fp128* %c, align 8
195 %1 = fptoui fp128 %cval to i64

12