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

1 2

  /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...]
  /dalvik/dx/src/com/android/dx/cf/iface/
StdField.java 45 AttConstantValue cval = (AttConstantValue) local
48 if (cval == null) {
52 return cval.getConstantValue();
  /dalvik/dexgen/src/com/android/dexgen/rop/
StdField.java 73 AttConstantValue cval = (AttConstantValue) local
76 if (cval == null) {
80 return cval.getConstantValue();
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-symline.c 737 yasm_intnum *intn, *cval; local
739 cval = yasm_intnum_create_uint(4);
742 yasm_arch_intnum_tobytes(object->arch, cval, buf, 4, 32, 0, bc, 0);
747 yasm_intnum_set_uint(cval, head->type);
748 yasm_arch_intnum_tobytes(object->arch, cval, buf, 4, 32, 0, bc, 0);
752 yasm_intnum_set_uint(cval, bc->len);
754 yasm_intnum_calc(intn, YASM_EXPR_SUB, cval);
761 yasm_intnum_destroy(cval);
811 yasm_intnum *cval; local
815 cval = yasm_intnum_create_uint(fi->fn->str_off)
879 yasm_intnum *cval; local
1036 yasm_intnum *cval; local
    [all...]
cv-type.c 611 unsigned char **bufp, yasm_intnum *cval)
619 yasm_intnum_set_uint(cval, leaf->type);
620 yasm_arch_intnum_tobytes(arch, cval, buf, 2, 16, 0, bc, 0);
630 yasm_intnum_set_uint(cval, leaf->args[arg++].i);
631 yasm_arch_intnum_tobytes(arch, cval, buf, 2, 16, 0, bc, 0);
635 yasm_intnum_set_uint(cval, leaf->args[arg++].i);
636 yasm_arch_intnum_tobytes(arch, cval, buf, 4, 32, 0, bc, 0);
641 &buf, cval);
644 yasm_intnum_set_uint(cval,
646 yasm_arch_intnum_tobytes(arch, cval, buf, 4, 32, 0, bc, 0)
742 yasm_intnum *cval; local
    [all...]
  /external/chromium_org/third_party/bintrees/bintrees/
cwalker.pyx 48 cdef int cval
51 cval = ct_compare(key, <object> self.node.key)
52 if cval == 0:
54 elif cval < 0:
ctrees.c 212 int direction, cval; local
231 cval = ct_compare(key, KEY(node));
232 if (cval == 0) {
241 direction = (cval < 0) ? LEFT : RIGHT;
670 int cval; local
673 cval = ct_compare(key, KEY(node));
674 if (cval == 0)
676 else if (cval < 0) {
705 int cval; local
708 cval = ct_compare(key, KEY(node))
740 int cval; local
762 int cval; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/engine/
eng_cnf.c 219 CONF_VALUE *cval; local
236 cval = sk_CONF_VALUE_value(elist, i);
237 if (!int_engine_configure(cval->name, cval->value, cnf))
  /external/openssl/crypto/engine/
eng_cnf.c 219 CONF_VALUE *cval; local
236 cval = sk_CONF_VALUE_value(elist, i);
237 if (!int_engine_configure(cval->name, cval->value, cnf))
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-dbgfmt.c 259 yasm_intnum *intn, *cval; local
269 cval = yasm_intnum_create_uint(dbgfmt_dwarf2->sizeof_offset);
271 yasm_intnum_calc(intn, YASM_EXPR_SUB, cval);
279 yasm_intnum_set_uint(cval, 2);
280 yasm_arch_intnum_tobytes(object->arch, cval, buf, 2, 16, 0, bc, 0);
305 yasm_intnum_destroy(cval);
dwarf2-line.c 788 yasm_intnum *cval; local
792 cval = yasm_intnum_create_uint(bc->len - (unsigned long)(buf-*bufp) -
794 yasm_arch_intnum_tobytes(object->arch, cval, buf,
834 yasm_intnum_destroy(cval);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
complexobject.h 42 Py_complex cval; member in struct:__anon62236
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
complexobject.h 42 Py_complex cval; member in struct:__anon62359
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_llvm.c 29 LLVMValueRef cval = build_intrinsic(bld_base->base.gallivm->builder, local
33 return bitcast(bld_base, type, cval);
65 LLVMValueRef cval = ctx->system_values[reg->Register.Index]; local
66 return bitcast(bld_base, type, cval);
  /external/mesa3d/src/gallium/drivers/r600/
r600_llvm.c 29 LLVMValueRef cval = build_intrinsic(bld_base->base.gallivm->builder, local
33 return bitcast(bld_base, type, cval);
65 LLVMValueRef cval = ctx->system_values[reg->Register.Index]; local
66 return bitcast(bld_base, type, cval);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
ConstructorTest.java 28 int cval; field in class:ConstructorTest.ConstructorTestHelper
31 cval = 99;
44 return cval;
  /external/tremolo/Tremolo/
floor1.c 309 int cval=0; local
313 cval=vorbis_book_decode(books+info->klass[classv].class_book,&vd->opb);
315 if(cval==-1)goto eop;
319 int book=info->klass[classv].class_subbook[cval&(csub-1)];
320 cval>>=csubbits;
  /external/svox/pico/lib/
picopal.c 183 picopal_char cval; local
200 cval = va_arg(args,int);
201 picopal_sprintf(buf,(picopal_char *)"%c",cval);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
Cookie.py 591 rval, cval = self.value_encode(value)
592 self.__set(key, rval, cval)
664 rval, cval = self.value_decode(V)
665 self.__set(K, rval, cval)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
Cookie.py 591 rval, cval = self.value_encode(value)
592 self.__set(key, rval, cval)
664 rval, cval = self.value_decode(V)
665 self.__set(K, rval, cval)
  /external/libvorbis/lib/
floor1.c 866 int cval=0; local
889 cval|= bookas[k]<<cshift;
894 vorbis_book_encode(books+info->class_book[class],cval,opb);
903 fprintf(of,"%d\n",cval);
989 int cval=0; local
993 cval=vorbis_book_decode(books+info->class_book[class],&vb->opb);
995 if(cval==-1)goto eop;
999 int book=info->class_subbook[class][cval&(csub-1)];
1000 cval>>=csubbits;
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ConstructorTest.java 57 int cval; field in class:ConstructorTest.ConstructorTestHelper
64 cval = 99;
84 return cval;
  /external/libvorbis/doc/
07-floor1.tex 196 10) [cval] = 0
199 12) [cval] = read from packet using codebook number
205 14) [book] = array [floor1_subclass_books] element [class],([cval] bitwise AND [csub])
206 15) [cval] = [cval] right shifted [cbits] bits
  /external/valgrind/main/coregrind/m_debuginfo/
readdwarf.c 1062 ULong cval = -1LL; \/* Constant value read *\/ local
    [all...]
  /external/valgrind/main/perf/
tinycc.c 8090 CValue cval; local
8294 CValue cval; local
9596 CValue cval; local
9700 CValue cval; local
9848 CValue cval; local
9983 CValue cval; local
10127 CValue cval; local
10150 CValue cval; local
10194 CValue cval; local
10204 CValue cval; local
14453 CValue cval; local
    [all...]

Completed in 523 milliseconds

1 2