| /src/tests/usr.bin/indent/ |
| lsym_postfix_op.c | 12 int decl = lvalue ++; 13 int decl = lvalue --; 17 int decl = lvalue++; 18 int decl = lvalue--; 26 int decl = lvalue **; 30 int decl = lvalue * *;
|
| lsym_unary_op.c | 71 int *address = &lvalue;
|
| /src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| data.cc | 224 /* Assign the initial value RVALUE to LVALUE's symbol->value. If the 225 LVALUE already has an initialization, we extend this, otherwise we 227 consecutive values in LVALUE the same value in RVALUE. In that case, 228 LVALUE must refer to a full array, not an array section. */ 231 gfc_assign_data_value (gfc_expr *lvalue, gfc_expr *rvalue, mpz_t index, 246 symbol = lvalue->symtree->n.sym; 250 symbol->name, &lvalue->where); 260 for (ref = lvalue->ref; ref; ref = ref->next) 292 lvalue->symtree->n.sym->name, &lvalue->where [all...] |
| expr.cc | 3670 gfc_check_assign (gfc_expr *lvalue, gfc_expr *rvalue, int conform, 3677 sym = lvalue->symtree->n.sym; 3682 for (ref = lvalue->ref; ref; ref = ref->next) 3691 "allowed", &lvalue->where); 3746 gfc_error ("%qs at %L is not a VALUE", sym->name, &lvalue->where); 3758 &lvalue->where); 3763 if (rvalue->rank != 0 && lvalue->rank != rvalue->rank) 3766 lvalue->rank, rvalue->rank, &lvalue->where); 3770 if (lvalue->ts.type == BT_UNKNOWN 4566 gfc_expr lvalue; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| data.cc | 256 /* Assign the initial value RVALUE to LVALUE's symbol->value. If the 257 LVALUE already has an initialization, we extend this, otherwise we 259 consecutive values in LVALUE the same value in RVALUE. In that case, 260 LVALUE must refer to a full array, not an array section. */ 263 gfc_assign_data_value (gfc_expr *lvalue, gfc_expr *rvalue, mpz_t index, 278 symbol = lvalue->symtree->n.sym; 285 for (ref = lvalue->ref; ref; ref = ref->next) 317 lvalue->symtree->n.sym->name, &lvalue->where, 344 &lvalue->where) [all...] |
| expr.cc | 3686 gfc_check_assign (gfc_expr *lvalue, gfc_expr *rvalue, int conform, 3693 sym = lvalue->symtree->n.sym; 3698 for (ref = lvalue->ref; ref; ref = ref->next) 3707 "allowed", &lvalue->where); 3762 gfc_error ("%qs at %L is not a VALUE", sym->name, &lvalue->where); 3774 &lvalue->where); 3779 if (rvalue->rank != 0 && lvalue->rank != rvalue->rank) 3782 lvalue->rank, rvalue->rank, &lvalue->where); 3786 if (lvalue->ts.type == BT_UNKNOWN 4582 gfc_expr lvalue; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/jit/ |
| jit-playback.h | 126 lvalue * 135 lvalue * 157 global_set_init_rvalue (lvalue* variable, 215 lvalue * 338 lvalue * 528 lvalue * 613 lvalue *lvalue, 705 lvalue * 709 lvalue * 717 class lvalue : public rvalue class in namespace:gcc::jit::playback 720 lvalue (context *ctxt, tree inner) function in class:gcc::jit::playback::lvalue [all...] |
| jit-common.h | 70 instances. Hence you can't ask a recording rvalue or lvalue what its 71 type is, whereas you can for a playback rvalue of lvalue (since it 127 class lvalue; 153 class lvalue;
|
| libgccjit++.h | 46 class lvalue; 181 lvalue new_global (enum gcc_jit_global_kind kind, 326 lvalue new_array_access (rvalue ptr, 394 lvalue new_local (type type_, 426 void add_assignment (lvalue lvalue, 430 void add_assignment_op (lvalue lvalue, 492 lvalue dereference_field (field field, 495 lvalue dereference (location loc = location ()) 505 class lvalue : public rvalue class in namespace:gccjit 1820 inline lvalue::lvalue () : rvalue () {} function in class:gccjit::lvalue 1821 inline lvalue::lvalue (gcc_jit_lvalue *inner) function in class:gccjit::lvalue [all...] |
| jit-recording.h | 150 lvalue * 164 new_global_init_rvalue (lvalue *variable, 220 lvalue * 1188 lvalue * 1192 lvalue * 1228 class lvalue : public rvalue class in namespace:gcc::jit::recording 1231 lvalue (context *ctxt, function in class:gcc::jit::recording::lvalue 1242 playback::lvalue * 1245 return static_cast <playback::lvalue *> (m_playback_obj); 1248 lvalue * [all...] |
| libgccjit.h | 761 /* Upcasting from param to lvalue. */ 1050 gcc_jit_lvalue_as_object (gcc_jit_lvalue *lvalue); 1053 gcc_jit_lvalue_as_rvalue (gcc_jit_lvalue *lvalue); 1299 gcc_jit_lvalue_set_alignment (gcc_jit_lvalue *lvalue, 1308 gcc_jit_lvalue_get_alignment (gcc_jit_lvalue *lvalue); 1318 /* Accessing a field of an lvalue of struct type, analogous to: 1349 /* Taking the address of an lvalue; analogous to: 1353 gcc_jit_lvalue_get_address (gcc_jit_lvalue *lvalue, 1364 gcc_jit_lvalue_set_tls_model (gcc_jit_lvalue *lvalue, 1378 gcc_jit_lvalue_set_link_section (gcc_jit_lvalue *lvalue, [all...] |
| libgccjit.cc | 91 struct gcc_jit_lvalue : public gcc::jit::recording::lvalue 1150 gcc::jit::recording::lvalue::as_rvalue method (a param is an rvalue), 1778 "lvalue \"%s\" not a global", 1832 "lvalue \"%s\" not a global", 1874 gcc::jit::recording::memento::as_object method (an lvalue is a 1878 gcc_jit_lvalue_as_object (gcc_jit_lvalue *lvalue) 1880 RETURN_NULL_IF_FAIL (lvalue, NULL, NULL, "NULL lvalue"); 1882 return static_cast <gcc_jit_object *> (lvalue->as_object ()); 1888 gcc::jit::recording::lvalue::as_rvalue method in jit-recording.h. * [all...] |
| jit-playback.cc | 793 playback::lvalue * 799 return new lvalue (this, inner); 802 /* Construct a playback::lvalue instance (wrapping a tree). */ 804 playback::lvalue * 822 global_set_init_rvalue (lvalue* variable, 948 /* Construct an initialized playback::lvalue instance (wrapping a 951 playback::lvalue * 1619 /* Construct a playback::lvalue instance (wrapping a tree) for an 1622 playback::lvalue * 1650 return new lvalue (this, t_result) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/jit/ |
| jit-playback.h | 109 lvalue * 116 lvalue * 134 global_set_init_rvalue (lvalue* variable, 189 lvalue * 310 lvalue * 494 lvalue * 577 lvalue *lvalue, 669 lvalue * 673 lvalue * 681 class lvalue : public rvalue class in namespace:gcc::jit::playback 684 lvalue (context *ctxt, tree inner) function in class:gcc::jit::playback::lvalue [all...] |
| jit-common.h | 70 instances. Hence you can't ask a recording rvalue or lvalue what its 71 type is, whereas you can for a playback rvalue of lvalue (since it 127 class lvalue; 153 class lvalue;
|
| libgccjit++.h | 46 class lvalue; 181 lvalue new_global (enum gcc_jit_global_kind kind, 326 lvalue new_array_access (rvalue ptr, 393 lvalue new_local (type type_, 425 void add_assignment (lvalue lvalue, 429 void add_assignment_op (lvalue lvalue, 491 lvalue dereference_field (field field, 494 lvalue dereference (location loc = location ()) 504 class lvalue : public rvalue class in namespace:gccjit 1813 inline lvalue::lvalue () : rvalue () {} function in class:gccjit::lvalue 1814 inline lvalue::lvalue (gcc_jit_lvalue *inner) function in class:gccjit::lvalue [all...] |
| jit-recording.h | 146 lvalue * 160 new_global_init_rvalue (lvalue *variable, 213 lvalue * 1126 lvalue * 1130 lvalue * 1166 class lvalue : public rvalue class in namespace:gcc::jit::recording 1169 lvalue (context *ctxt, function in class:gcc::jit::recording::lvalue 1179 playback::lvalue * 1182 return static_cast <playback::lvalue *> (m_playback_obj); 1185 lvalue * [all...] |
| libgccjit.h | 752 /* Upcasting from param to lvalue. */ 1041 gcc_jit_lvalue_as_object (gcc_jit_lvalue *lvalue); 1044 gcc_jit_lvalue_as_rvalue (gcc_jit_lvalue *lvalue); 1278 gcc_jit_lvalue_set_alignment (gcc_jit_lvalue *lvalue, 1287 gcc_jit_lvalue_get_alignment (gcc_jit_lvalue *lvalue); 1297 /* Accessing a field of an lvalue of struct type, analogous to: 1328 /* Taking the address of an lvalue; analogous to: 1332 gcc_jit_lvalue_get_address (gcc_jit_lvalue *lvalue, 1343 gcc_jit_lvalue_set_tls_model (gcc_jit_lvalue *lvalue, 1357 gcc_jit_lvalue_set_link_section (gcc_jit_lvalue *lvalue, [all...] |
| libgccjit.cc | 91 struct gcc_jit_lvalue : public gcc::jit::recording::lvalue 1135 gcc::jit::recording::lvalue::as_rvalue method (a param is an rvalue), 1763 "lvalue \"%s\" not a global", 1817 "lvalue \"%s\" not a global", 1859 gcc::jit::recording::memento::as_object method (an lvalue is a 1863 gcc_jit_lvalue_as_object (gcc_jit_lvalue *lvalue) 1865 RETURN_NULL_IF_FAIL (lvalue, NULL, NULL, "NULL lvalue"); 1867 return static_cast <gcc_jit_object *> (lvalue->as_object ()); 1873 gcc::jit::recording::lvalue::as_rvalue method in jit-recording.h. * [all...] |
| /src/external/gpl3/gcc/dist/gcc/jit/docs/examples/ |
| tut03-sum-of-squares.cc | 54 gccjit::lvalue i = func.new_local (the_type, "i"); 55 gccjit::lvalue sum = func.new_local (the_type, "sum");
|
| /src/external/gpl3/gcc.old/dist/gcc/jit/docs/examples/ |
| tut03-sum-of-squares.cc | 54 gccjit::lvalue i = func.new_local (the_type, "i"); 55 gccjit::lvalue sum = func.new_local (the_type, "sum");
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGAtomic.cpp | 40 LValue LVal; 43 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue) 46 assert(!lvalue.isGlobalReg()); 48 if (lvalue.isSimple()) { 49 AtomicTy = lvalue.getType(); 71 if (lvalue.getAlignment().isZero()) 72 lvalue.setAlignment(AtomicAlign); 74 LVal = lvalue; 75 } else if (lvalue.isBitField()) 799 LValue lvalue = MakeAddrLValue(Ptr, AtomicTy); local [all...] |
| CGExprComplex.cpp | 78 ComplexPairTy EmitLoadOfLValue(LValue LV, SourceLocation Loc); 82 void EmitStoreOfComplex(ComplexPairTy Val, LValue LV, bool isInit); 193 LValue LV = CGF.EmitLValue(E->getSubExpr()); 257 LValue EmitCompoundAssignLValue(const CompoundAssignOperator *E, 309 LValue EmitBinAssignLValue(const BinaryOperator *E, 349 ComplexPairTy ComplexExprEmitter::EmitLoadOfLValue(LValue lvalue, 351 assert(lvalue.isSimple() && "non-simple complex l-value?"); 352 if (lvalue.getType()->isAtomicType()) 353 return CGF.EmitAtomicLoad(lvalue, loc).getComplexVal() [all...] |
| /src/external/gpl3/gcc/dist/gcc/jit/docs/examples/tut04-toyvm/ |
| toyvm.cc | 463 gccjit::lvalue lvalue, 482 gccjit::lvalue stack; 483 gccjit::lvalue stack_depth; 484 gccjit::lvalue x; 485 gccjit::lvalue y; 536 gccjit::lvalue lvalue, 546 /* "LVALUE = stack[stack_depth];". */ 548 lvalue, [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/jit/docs/examples/tut04-toyvm/ |
| toyvm.cc | 463 gccjit::lvalue lvalue, 482 gccjit::lvalue stack; 483 gccjit::lvalue stack_depth; 484 gccjit::lvalue x; 485 gccjit::lvalue y; 536 gccjit::lvalue lvalue, 546 /* "LVALUE = stack[stack_depth];". */ 548 lvalue, [all...] |