HomeSort by relevance Sort by last modified time
    Searched defs:cval (Results 1 - 25 of 31) sorted by null

1 2

  /device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt8173/drivers/timer/
mt_cpuxgpt.c 27 uint64_t cval; local
29 cval = read_cntpct_el0();
30 cpuxgpt_set_init_cnt((uint32_t)(cval >> 32),
31 (uint32_t)(cval & 0xffffffff));
  /dalvik/dx/src/com/android/dx/cf/iface/
StdField.java 46 AttConstantValue cval = (AttConstantValue) local
49 if (cval == null) {
53 return cval.getConstantValue();
  /external/python/cpython3/Include/
complexobject.h 35 Py_complex cval; member in struct:__anon37051
  /dalvik/dexgen/src/com/android/dexgen/rop/
StdField.java 73 AttConstantValue cval = (AttConstantValue) local
76 if (cval == null) {
80 return cval.getConstantValue();
  /device/linaro/bootloader/arm-trusted-firmware/bl32/tsp/
tsp_timer.c 16 uint64_t cval; member in struct:timer_context
27 uint64_t cval; local
31 cval = read_cntpct_el0() + (read_cntfrq_el0() >> 1);
32 write_cntps_cval_el1(cval);
73 pcpu_timer_context[linear_id].cval = read_cntps_cval_el1();
86 write_cntps_cval_el1(pcpu_timer_context[linear_id].cval);
  /device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt6795/drivers/timer/
mt_cpuxgpt.c 29 uint64_t cval; local
31 cval = (((read_cntpct_el0() - atf_time_base)*1000)/
33 return cval;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
complexobject.h 42 Py_complex cval; member in struct:__anon5293
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
complexobject.h 42 Py_complex cval; member in struct:__anon5600
  /external/apache-commons-bcel/src/test/java/org/apache/bcel/data/
ComplexAnnotation.java 31 char cval(); method in interface:ComplexAnnotation
  /external/python/cpython2/Include/
complexobject.h 42 Py_complex cval; member in struct:__anon36485
  /external/u-boot/drivers/power/
palmas.c 82 u8 cval = 0, vval = 0; /* Off by default */ local
89 cval = LDO9_BYP_EN | RSC_MODE_SLEEP | RSC_MODE_ACTIVE;
92 cval = RSC_MODE_SLEEP | RSC_MODE_ACTIVE;
102 err = palmas_i2c_write_u8(TWL603X_CHIP_P1, LDO9_CTRL, cval);
105 cval ? "on" : "off", err);
116 u8 cval = 0, vval = 0, c32k = 0; local
121 cval = SMPS_MODE_SLP_AUTO | SMPS_MODE_ACT_AUTO;
132 err = palmas_i2c_write_u8(TWL603X_CHIP_P1, SMPS9_CTRL, cval);
135 cval ? "on" : "off", err);
  /external/linux-kselftest/tools/testing/selftests/breakpoints/
breakpoint_test.c 176 char cval; short sval; int ival; long long lval; local
182 cval = *(char *)&dummy_var[i];
  /external/linux-kselftest/tools/testing/selftests/powerpc/ptrace/
ptrace-hwbreak.c 140 char cval __attribute__((unused)); local
147 cval = *(char *)dummy_var;
  /external/tremolo/Tremolo/
floor1.c 310 int cval=0; local
314 cval=vorbis_book_decode(books+info->klass[classv].class_book,&vd->opb);
316 if(cval==-1)goto eop;
320 int book=info->klass[classv].class_subbook[cval&(csub-1)];
321 cval>>=csubbits;
  /external/clang/test/SemaCXX/
constant-expression.cpp 13 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:
72 case 1000 + (true? 1 + cval * Struct::sval ^
81 template struct C<cval, ceval>
    [all...]
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_l4lb.c 334 struct ctl_value *cval; local
429 cval = bpf_map_lookup_elem(&ctl_array, &v6_intf_pos);
430 if (!cval)
432 ifindex = cval->ifindex;
436 cval = bpf_map_lookup_elem(&ctl_array, &v4_intf_pos);
437 if (!cval)
439 ifindex = cval->ifindex;
test_l4lb_noinline.c 334 struct ctl_value *cval; local
429 cval = bpf_map_lookup_elem(&ctl_array, &v6_intf_pos);
430 if (!cval)
432 ifindex = cval->ifindex;
436 cval = bpf_map_lookup_elem(&ctl_array, &v4_intf_pos);
437 if (!cval)
439 ifindex = cval->ifindex;
test_xdp_noinline.c 289 bool encap_v6(struct xdp_md *xdp, struct ctl_value *cval,
310 memcpy(new_eth->eth_dest, cval->mac, 6);
332 bool encap_v4(struct xdp_md *xdp, struct ctl_value *cval,
358 memcpy(new_eth->eth_dest, cval->mac, 6);
716 struct ctl_value *cval; local
786 cval = bpf_map_lookup_elem(&ctl_array, &mac_addr_pos);
787 if (!cval)
790 if (!encap_v6(xdp, cval, &pckt, dst, pkt_bytes))
793 if (!encap_v4(xdp, cval, &pckt, dst, pkt_bytes))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
getargs.c 813 Py_complex cval; local
814 cval = PyComplex_AsCComplex(arg);
818 *p = cval;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
getargs.c 813 Py_complex cval; local
814 cval = PyComplex_AsCComplex(arg);
818 *p = cval;
    [all...]
  /external/python/cpython2/Python/
getargs.c 832 Py_complex cval; local
833 cval = PyComplex_AsCComplex(arg);
837 *p = cval;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
complexobject.c 223 complex_subtype_from_c_complex(PyTypeObject *type, Py_complex cval)
229 ((PyComplexObject *)op)->cval = cval;
234 PyComplex_FromCComplex(Py_complex cval)
243 op->cval = cval;
269 return ((PyComplexObject *)op)->cval.real;
280 return ((PyComplexObject *)op)->cval.imag;
328 return ((PyComplexObject *)op)->cval;
345 cv = ((PyComplexObject *)newop)->cval;
757 Py_complex cval; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
complexobject.c 219 complex_subtype_from_c_complex(PyTypeObject *type, Py_complex cval)
225 ((PyComplexObject *)op)->cval = cval;
230 PyComplex_FromCComplex(Py_complex cval)
239 op->cval = cval;
265 return ((PyComplexObject *)op)->cval.real;
276 return ((PyComplexObject *)op)->cval.imag;
324 return ((PyComplexObject *)op)->cval;
341 cv = ((PyComplexObject *)newop)->cval;
753 Py_complex cval; local
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_shader_tgsi_setup.c 610 LLVMValueRef cval = ctx->system_values[reg->Register.Index]; local
618 builder, cval, LLVMConstInt(ctx->i32, swizzle, 0), "");
620 builder, cval, LLVMConstInt(ctx->i32, swizzle + 1, 0), "");
626 if (LLVMGetTypeKind(LLVMTypeOf(cval)) == LLVMVectorTypeKind) {
627 cval = LLVMBuildExtractElement(
628 builder, cval, LLVMConstInt(ctx->i32, swizzle, 0), "");
633 return bitcast(bld_base, type, cval);
    [all...]
  /external/python/cpython2/Modules/
audioop.c 1323 unsigned char cval; local
1392 unsigned char cval; local
    [all...]

Completed in 872 milliseconds

1 2