| /src/external/gpl3/gcc/dist/libobjc/ |
| ivars.c | 1 /* GNU Objective C Runtime ivar related functions. 47 struct objc_ivar *ivar = &(ivars->ivar_list[i]); local 49 if (!strcmp (ivar->ivar_name, name)) 50 return ivar; 237 struct objc_ivar *ivar = &(ivars->ivar_list[i]); local 239 if (strcmp (ivar->ivar_name, ivar_name) == 0) 272 struct objc_ivar *ivar = &(ivars->ivar_list[ivars->ivar_count - 1]); local 276 ivar->ivar_name = objc_malloc (strlen (ivar_name) + 1); 277 strcpy ((char *)ivar->ivar_name, ivar_name); 279 ivar->ivar_type = objc_malloc (strlen (type) + 1) [all...] |
| gc.c | 183 encoding and sets the bits in mask according to each ivar type. */ 269 struct objc_ivar *ivar = &(ivars->ivar_list[i]); local 270 const char *ivar_type = ivar->ivar_type; 276 contains this ivar's type. */ 382 struct objc_ivar *ivar = &(ivars->ivar_list[i]); local 385 if (! ivar->ivar_name || strcmp (ivar->ivar_name, ivarname)) 388 assert (ivar->ivar_type); 389 type = ivar->ivar_type; 408 new_type = objc_atomic_malloc (strlen(ivar->ivar_type)) [all...] |
| class.c | 657 struct objc_ivar *ivar = &(class_->ivars->ivar_list[i]); local 659 objc_free ((char *)ivar->ivar_name); 660 objc_free ((char *)ivar->ivar_type);
|
| /src/external/gpl3/gcc.old/dist/libobjc/ |
| ivars.c | 1 /* GNU Objective C Runtime ivar related functions. 47 struct objc_ivar *ivar = &(ivars->ivar_list[i]); local 49 if (!strcmp (ivar->ivar_name, name)) 50 return ivar; 237 struct objc_ivar *ivar = &(ivars->ivar_list[i]); local 239 if (strcmp (ivar->ivar_name, ivar_name) == 0) 272 struct objc_ivar *ivar = &(ivars->ivar_list[ivars->ivar_count - 1]); local 276 ivar->ivar_name = objc_malloc (strlen (ivar_name) + 1); 277 strcpy ((char *)ivar->ivar_name, ivar_name); 279 ivar->ivar_type = objc_malloc (strlen (type) + 1) [all...] |
| gc.c | 183 encoding and sets the bits in mask according to each ivar type. */ 269 struct objc_ivar *ivar = &(ivars->ivar_list[i]); local 270 const char *ivar_type = ivar->ivar_type; 276 contains this ivar's type. */ 382 struct objc_ivar *ivar = &(ivars->ivar_list[i]); local 385 if (! ivar->ivar_name || strcmp (ivar->ivar_name, ivarname)) 388 assert (ivar->ivar_type); 389 type = ivar->ivar_type; 408 new_type = objc_atomic_malloc (strlen(ivar->ivar_type)) [all...] |
| class.c | 657 struct objc_ivar *ivar = &(class_->ivars->ivar_list[i]); local 659 objc_free ((char *)ivar->ivar_name); 660 objc_free ((char *)ivar->ivar_type);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/ |
| vla-type.f90 | 25 integer :: ivar component in type:three 30 integer :: ivar component in type:four 66 threev%ivar = 3 ! twov-filled 77 fourv%ivar = 3
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/ |
| vla-type.f90 | 25 integer :: ivar component in type:three 30 integer :: ivar component in type:four 66 threev%ivar = 3 ! twov-filled 77 fourv%ivar = 3
|
| /src/external/gpl3/gcc/dist/gcc/objc/ |
| objc-runtime-shared-support.cc | 532 vec<constructor_elt, va_gc> *ivar = NULL; local 537 CONSTRUCTOR_APPEND_ELT (ivar, NULL_TREE, 541 /* Unnamed bit-field ivar (yuck). */ 542 CONSTRUCTOR_APPEND_ELT (ivar, NULL_TREE, 548 CONSTRUCTOR_APPEND_ELT (ivar, NULL_TREE, id); 551 CONSTRUCTOR_APPEND_ELT (ivar, NULL_TREE, byte_position (field_decl)); 553 objc_build_constructor (type, ivar));
|
| objc-act.cc | 3142 /* Declare pointers to method and ivar lists. */ 3193 /* Ensure that the ivar list for NSConstantString/NXConstantString 3332 correct ivar layout. */ 3344 /* The NSConstantString/NXConstantString ivar layout is now known. */ 3878 /* Handle ivar assignments. */ 3881 /* if the struct to the left of the ivar is not an Objective-C object (__strong 4064 tree ivar; local 4065 for (ivar = CLASS_RAW_IVARS (objc_interface_context); 4066 ivar; ivar = DECL_CHAIN (ivar) 4094 tree ivar; local 4115 tree ivar; local 4135 tree ivar; local 4146 ivar); local 4162 tree ivar; local 4174 ivar); local 4614 tree fn, body, compound_stmt, ivar; local 4684 tree ivar; local 7410 tree cmd, ivar, offset, is_atomic; local 7607 tree cmd, ivar, offset, is_atomic, should_copy; local 7785 tree ivar = is_ivar (CLASS_IVARS (interface), ivar_name); local 9567 tree ivar; local 9586 tree ivar; local [all...] |
| objc-next-runtime-abi-02.cc | 1358 /* This routine returns the ivar declaration, if component is a valid 1359 ivar field; NULL_TREE otherwise. On finding an ivar, it also 1401 /* This routine generates new abi's ivar reference tree. It amounts 1403 generate pObj->IVAR. OFFSET_IVAR is an 'extern' variable holding 1404 the offset for 'IVAR' field. TYPE is type of IVAR field. */ 1457 /* IVAR refs are made via an externally referenceable offset and built 1464 tree ivar; 1465 if ((ivar = objc_v2_build_ivar_ref (base, id)) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/objc/ |
| objc-runtime-shared-support.cc | 532 vec<constructor_elt, va_gc> *ivar = NULL; local 537 CONSTRUCTOR_APPEND_ELT (ivar, NULL_TREE, 541 /* Unnamed bit-field ivar (yuck). */ 542 CONSTRUCTOR_APPEND_ELT (ivar, NULL_TREE, 548 CONSTRUCTOR_APPEND_ELT (ivar, NULL_TREE, id); 551 CONSTRUCTOR_APPEND_ELT (ivar, NULL_TREE, byte_position (field_decl)); 553 objc_build_constructor (type, ivar));
|
| objc-act.cc | 3144 /* Declare pointers to method and ivar lists. */ 3195 /* Ensure that the ivar list for NSConstantString/NXConstantString 3334 correct ivar layout. */ 3346 /* The NSConstantString/NXConstantString ivar layout is now known. */ 3880 /* Handle ivar assignments. */ 3883 /* if the struct to the left of the ivar is not an Objective-C object (__strong 4066 tree ivar; local 4067 for (ivar = CLASS_RAW_IVARS (objc_interface_context); 4068 ivar; ivar = DECL_CHAIN (ivar) 4096 tree ivar; local 4117 tree ivar; local 4137 tree ivar; local 4148 ivar); local 4164 tree ivar; local 4176 ivar); local 4616 tree fn, body, compound_stmt, ivar; local 4686 tree ivar; local 7412 tree cmd, ivar, offset, is_atomic; local 7609 tree cmd, ivar, offset, is_atomic, should_copy; local 7787 tree ivar = is_ivar (CLASS_IVARS (interface), ivar_name); local 9569 tree ivar; local 9588 tree ivar; local [all...] |
| objc-next-runtime-abi-02.cc | 1358 /* This routine returns the ivar declaration, if component is a valid 1359 ivar field; NULL_TREE otherwise. On finding an ivar, it also 1401 /* This routine generates new abi's ivar reference tree. It amounts 1403 generate pObj->IVAR. OFFSET_IVAR is an 'extern' variable holding 1404 the offset for 'IVAR' field. TYPE is type of IVAR field. */ 1457 /* IVAR refs are made via an externally referenceable offset and built 1464 tree ivar; 1465 if ((ivar = objc_v2_build_ivar_ref (base, id)) [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| expprint.c | 110 dump_for_expression (struct ui_file *stream, int depth, internalvar *ivar) 113 internalvar_name (ivar));
|
| /src/external/gpl3/gdb/dist/gdb/ |
| expprint.c | 110 dump_for_expression (struct ui_file *stream, int depth, internalvar *ivar) 113 internalvar_name (ivar));
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGObjC.cpp | 815 static void emitStructGetterCall(CodeGenFunction &CGF, ObjCIvarDecl *ivar, 820 CGF.EmitLValueForIvar(CGF.TypeOfSelfObject(), CGF.LoadObjCSelf(), ivar, 0) 824 // sizeof (Type of Ivar), isAtomic, false); 833 CharUnits size = CGF.getContext().getTypeSizeInChars(ivar->getType()); 921 // Evaluate the ivar's size and alignment. 922 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local 923 QualType ivarType = ivar->getType(); 946 // acceptable if the ivar is __strong, which won't be true if 979 if (ivar->isBitField()) { 994 // Compute whether the ivar has strong members 1124 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local 1135 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local 1403 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl(); local 1592 const ObjCIvarDecl *ivar; member in struct:__anon2819::final [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaDeclObjC.cpp | 2124 /// Add implementations's ivar to the synthesize class's ivar list. 2127 // Add ivar's to class's DeclContext. 2130 // In a 'fragile' runtime the ivar was added to the implicit 2131 // ObjCInterfaceDecl while in a 'non-fragile' runtime the ivar is 2132 // only in the ObjCImplementationDecl. In the non-fragile case the ivar 2141 // If implementation has empty ivar list, just return. 2166 // Instance ivar to Implementation's DeclContext. 2173 // Check interface's Ivar list against those in the implementation. 2182 assert (ImplIvar && "missing implementation ivar"); [all...] |
| SemaObjCProperty.cpp | 723 ObjCIvarDecl *ivar) { 724 if (property->isInvalidDecl() || ivar->isInvalidDecl()) return; 726 QualType ivarType = ivar->getType(); 737 // None isn't a valid lifetime for an object ivar in ARC, and 744 // If the ivar is private, and it's implicitly __unsafe_unretained 750 ivar->getAccessControl() == ObjCIvarDecl::Private) { 756 ivar->setType(ivarType); 763 S.Diag(ivar->getLocation(), diag::err_arc_strong_property_ownership) 765 << ivar->getDeclName() 770 S.Diag(ivar->getLocation(), diag::err_weak_property [all...] |
| /src/sys/dev/hid/ |
| hidkbd.c | 702 unsigned int i, ivar = 0; local 713 ivar++; 717 if (ivar > MAXVARS) { 719 ivar = MAXVARS; 722 kbd->sc_nvar = ivar; 778 if (kbd->sc_nkeycode == 0 && ivar == 0)
|
| /src/sys/dev/pci/igc/ |
| if_igc.c | 2631 uint32_t ivar; local 2656 ivar = IGC_READ_REG_ARRAY(hw, IGC_IVAR0, 0); 2657 DPRINTF(CFG, "ivar(0)=0x%x\n", ivar); 2658 ivar = IGC_READ_REG_ARRAY(hw, IGC_IVAR0, 1); 2659 DPRINTF(CFG, "ivar(1)=0x%x\n", ivar); 2663 ivar = (sc->linkvec | IGC_IVAR_VALID) << 8; 2665 IGC_WRITE_REG(hw, IGC_IVAR_MISC, ivar); 2673 uint32_t ivar = IGC_READ_REG_ARRAY(hw, IGC_IVAR0, index) local [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| omp-low.cc | 4566 omplow_simd_context *sctx, tree &ivar, 4627 ivar = lvar = new_var; 4631 ivar = lvar = create_tmp_var (type); 4632 TREE_ADDRESSABLE (ivar) = 1; 4633 DECL_ATTRIBUTES (ivar) = tree_cons (get_identifier ("omp simt private"), 4634 NULL, DECL_ATTRIBUTES (ivar)); 4635 sctx->simt_eargs.safe_push (build1 (ADDR_EXPR, ptype, ivar)); 4637 gimple *g = gimple_build_assign (ivar, clobber); 4689 ivar = build4 (ARRAY_REF, TREE_TYPE (new_var), iavar, sctx->idx, 4693 TREE_THIS_NOTRAP (ivar) = 1 4842 tree ivar = NULL_TREE, lvar = NULL_TREE, uid = NULL_TREE; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| omp-low.cc | 4608 omplow_simd_context *sctx, tree &ivar, 4669 ivar = lvar = new_var; 4673 ivar = lvar = create_tmp_var (type); 4674 TREE_ADDRESSABLE (ivar) = 1; 4675 DECL_ATTRIBUTES (ivar) = tree_cons (get_identifier ("omp simt private"), 4676 NULL, DECL_ATTRIBUTES (ivar)); 4677 sctx->simt_eargs.safe_push (build1 (ADDR_EXPR, ptype, ivar)); 4679 gimple *g = gimple_build_assign (ivar, clobber); 4731 ivar = build4 (ARRAY_REF, TREE_TYPE (new_var), iavar, sctx->idx, 4735 TREE_THIS_NOTRAP (ivar) = 1 4884 tree ivar = NULL_TREE, lvar = NULL_TREE, uid = NULL_TREE; local [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| DeclObjC.cpp | 77 /// getIvarDecl - This method looks up an ivar in this ContextDecl. 82 for (lookup_iterator Ivar = R.begin(), IvarEnd = R.end(); 83 Ivar != IvarEnd; ++Ivar) { 84 if (auto *ivar = dyn_cast<ObjCIvarDecl>(*Ivar)) 85 return ivar; 1605 ObjCIvarDecl *Ivar; 1607 SynthesizeIvarChunk(uint64_t size, ObjCIvarDecl *ivar) 1608 : Size(size), Ivar(ivar) { [all...] |
| /src/sys/dev/pci/ixgbe/ |
| ixv.c | 2361 * Setup the correct IVAR register for a particular MSI-X interrupt 2370 u32 ivar, index; local 2374 if (type == -1) { /* MISC IVAR */ 2375 ivar = IXGBE_READ_REG(hw, IXGBE_VTIVAR_MISC); 2376 ivar &= ~0xFF; 2377 ivar |= vector; 2378 IXGBE_WRITE_REG(hw, IXGBE_VTIVAR_MISC, ivar); 2381 ivar = IXGBE_READ_REG(hw, IXGBE_VTIVAR(entry >> 1)); 2382 ivar &= ~(0xffUL << index); 2383 ivar |= ((u32)vector << index) [all...] |