Home
last modified time | relevance | path

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

/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/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
Dcv-symline.c737 yasm_intnum *intn, *cval; in cv8_symhead_bc_tobytes() local
739 cval = yasm_intnum_create_uint(4); in cv8_symhead_bc_tobytes()
742 yasm_arch_intnum_tobytes(object->arch, cval, buf, 4, 32, 0, bc, 0); in cv8_symhead_bc_tobytes()
747 yasm_intnum_set_uint(cval, head->type); in cv8_symhead_bc_tobytes()
748 yasm_arch_intnum_tobytes(object->arch, cval, buf, 4, 32, 0, bc, 0); in cv8_symhead_bc_tobytes()
752 yasm_intnum_set_uint(cval, bc->len); in cv8_symhead_bc_tobytes()
754 yasm_intnum_calc(intn, YASM_EXPR_SUB, cval); in cv8_symhead_bc_tobytes()
761 yasm_intnum_destroy(cval); in cv8_symhead_bc_tobytes()
811 yasm_intnum *cval; in cv8_fileinfo_bc_tobytes() local
815 cval = yasm_intnum_create_uint(fi->fn->str_off); in cv8_fileinfo_bc_tobytes()
[all …]
Dcv-type.c611 unsigned char **bufp, yasm_intnum *cval) in cv_leaf_tobytes() argument
619 yasm_intnum_set_uint(cval, leaf->type); in cv_leaf_tobytes()
620 yasm_arch_intnum_tobytes(arch, cval, buf, 2, 16, 0, bc, 0); in cv_leaf_tobytes()
630 yasm_intnum_set_uint(cval, leaf->args[arg++].i); in cv_leaf_tobytes()
631 yasm_arch_intnum_tobytes(arch, cval, buf, 2, 16, 0, bc, 0); in cv_leaf_tobytes()
635 yasm_intnum_set_uint(cval, leaf->args[arg++].i); in cv_leaf_tobytes()
636 yasm_arch_intnum_tobytes(arch, cval, buf, 4, 32, 0, bc, 0); in cv_leaf_tobytes()
641 &buf, cval); in cv_leaf_tobytes()
644 yasm_intnum_set_uint(cval, in cv_leaf_tobytes()
646 yasm_arch_intnum_tobytes(arch, cval, buf, 4, 32, 0, bc, 0); in cv_leaf_tobytes()
[all …]
/external/chromium_org/third_party/bintrees/bintrees/
Dctrees.c212 int direction, cval; in ct_bintree_insert() local
231 cval = ct_compare(key, KEY(node)); in ct_bintree_insert()
232 if (cval == 0) { in ct_bintree_insert()
241 direction = (cval < 0) ? LEFT : RIGHT; in ct_bintree_insert()
670 int cval; in ct_succ_node() local
673 cval = ct_compare(key, KEY(node)); in ct_succ_node()
674 if (cval == 0) in ct_succ_node()
676 else if (cval < 0) { in ct_succ_node()
705 int cval; in ct_prev_node() local
708 cval = ct_compare(key, KEY(node)); in ct_prev_node()
[all …]
Dcwalker.pyx48 cdef int cval
51 cval = ct_compare(key, <object> self.node.key)
52 if cval == 0:
54 elif cval < 0:
/external/openssl/crypto/engine/
Deng_cnf.c219 CONF_VALUE *cval; in int_engine_module_init() local
236 cval = sk_CONF_VALUE_value(elist, i); in int_engine_module_init()
237 if (!int_engine_configure(cval->name, cval->value, cnf)) in int_engine_module_init()
/external/chromium_org/third_party/openssl/openssl/crypto/engine/
Deng_cnf.c219 CONF_VALUE *cval; in int_engine_module_init() local
236 cval = sk_CONF_VALUE_value(elist, i); in int_engine_module_init()
237 if (!int_engine_configure(cval->name, cval->value, cnf)) in int_engine_module_init()
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
Ddwarf2-dbgfmt.c259 yasm_intnum *intn, *cval; in dwarf2_head_bc_tobytes() local
269 cval = yasm_intnum_create_uint(dbgfmt_dwarf2->sizeof_offset); in dwarf2_head_bc_tobytes()
271 yasm_intnum_calc(intn, YASM_EXPR_SUB, cval); in dwarf2_head_bc_tobytes()
279 yasm_intnum_set_uint(cval, 2); in dwarf2_head_bc_tobytes()
280 yasm_arch_intnum_tobytes(object->arch, cval, buf, 2, 16, 0, bc, 0); in dwarf2_head_bc_tobytes()
305 yasm_intnum_destroy(cval); in dwarf2_head_bc_tobytes()
Ddwarf2-line.c788 yasm_intnum *cval; in dwarf2_spp_bc_tobytes() local
792 cval = yasm_intnum_create_uint(bc->len - (unsigned long)(buf-*bufp) - in dwarf2_spp_bc_tobytes()
794 yasm_arch_intnum_tobytes(object->arch, cval, buf, in dwarf2_spp_bc_tobytes()
834 yasm_intnum_destroy(cval); in dwarf2_spp_bc_tobytes()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
DConstructorTest.java28 int cval; field in ConstructorTest.ConstructorTestHelper
31 cval = 99; in ConstructorTestHelper()
44 return cval; in check()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
Dr600_llvm.c29 LLVMValueRef cval = build_intrinsic(bld_base->base.gallivm->builder, in llvm_fetch_const() local
33 return bitcast(bld_base, type, cval); in llvm_fetch_const()
65 LLVMValueRef cval = ctx->system_values[reg->Register.Index]; in llvm_fetch_system_value() local
66 return bitcast(bld_base, type, cval); in llvm_fetch_system_value()
/external/mesa3d/src/gallium/drivers/r600/
Dr600_llvm.c29 LLVMValueRef cval = build_intrinsic(bld_base->base.gallivm->builder, in llvm_fetch_const() local
33 return bitcast(bld_base, type, cval); in llvm_fetch_const()
65 LLVMValueRef cval = ctx->system_values[reg->Register.Index]; in llvm_fetch_system_value() local
66 return bitcast(bld_base, type, cval); in llvm_fetch_system_value()
/external/tremolo/Tremolo/
Dfloor1.c309 int cval=0; in floor1_inverse1() local
313 cval=vorbis_book_decode(books+info->klass[classv].class_book,&vd->opb); in floor1_inverse1()
315 if(cval==-1)goto eop; in floor1_inverse1()
319 int book=info->klass[classv].class_subbook[cval&(csub-1)]; in floor1_inverse1()
320 cval>>=csubbits; in floor1_inverse1()
/external/libvorbis/lib/
Dfloor1.c866 int cval=0; in floor1_encode() local
889 cval|= bookas[k]<<cshift; in floor1_encode()
894 vorbis_book_encode(books+info->class_book[class],cval,opb); in floor1_encode()
903 fprintf(of,"%d\n",cval); in floor1_encode()
989 int cval=0; in floor1_inverse1() local
993 cval=vorbis_book_decode(books+info->class_book[class],&vb->opb); in floor1_inverse1()
995 if(cval==-1)goto eop; in floor1_inverse1()
999 int book=info->class_subbook[class][cval&(csub-1)]; in floor1_inverse1()
1000 cval>>=csubbits; in floor1_inverse1()
/external/svox/pico/lib/
Dpicopal.c183 picopal_char cval; in picopal_vslprintf() local
200 cval = va_arg(args,int); in picopal_vslprintf()
201 picopal_sprintf(buf,(picopal_char *)"%c",cval); in picopal_vslprintf()
/external/libvorbis/doc/
D07-floor1.tex196 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/perf/
Dtinycc.c8090 CValue cval; in tok_str_add_tok() local
8095 cval.i = s->last_line_num; in tok_str_add_tok()
8096 tok_str_add2(s, TOK_LINENUM, &cval); in tok_str_add_tok()
8294 CValue cval; in tok_print() local
8297 TOK_GET(t, str, cval); in tok_print()
8300 printf(" %s", get_tok_str(t, &cval)); in tok_print()
9596 CValue cval; in macro_arg_subst() local
9603 TOK_GET(t, macro_str, cval); in macro_arg_subst()
9608 TOK_GET(t, macro_str, cval); in macro_arg_subst()
9619 TOK_GET(t, st, cval); in macro_arg_subst()
[all …]
/external/valgrind/main/coregrind/m_debuginfo/
Dreaddwarf.c1062 ULong cval = -1LL; /* Constant value read */ in read_unitinfo_dwarf2() local
1088 case 0x05: /* FORM_data2 */ cval = ML_(read_UShort)(p); p +=2; break; in read_unitinfo_dwarf2()
1089 case 0x06: /* FORM_data4 */ cval = ML_(read_UInt)(p); p +=4; break; in read_unitinfo_dwarf2()
1102 case 0x0b: /* FORM_data1 */ cval = *p; p++; break; in read_unitinfo_dwarf2()
1104 cval = ML_(read_ULong)(p); p += 8; in read_unitinfo_dwarf2()
1106 cval = ML_(read_UInt)(p); p += 4; in read_unitinfo_dwarf2()
1109 case 0x07: /* FORM_data8 */ if (ui->dw64) cval = ML_(read_ULong)(p); in read_unitinfo_dwarf2()
1151 else if ( name == 0x10 ) ui->stmt_list = cval; /* DW_AT_stmt_list */ in read_unitinfo_dwarf2()
/external/chromium_org/third_party/libxml/src/
Dxmlschemastypes.c2255 xmlChar cval[25]; in xmlSchemaValAtomicType() local
2256 xmlChar *cptr = cval; in xmlSchemaValAtomicType()
2349 cptr = cval; in xmlSchemaValAtomicType()
/external/libxml2/
Dxmlschemastypes.c2255 xmlChar cval[25]; in xmlSchemaValAtomicType() local
2256 xmlChar *cptr = cval; in xmlSchemaValAtomicType()
2349 cptr = cval; in xmlSchemaValAtomicType()