| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | escape.c | 24 VarDeclarations byref; // array into which variables being returned by ref are inserted member 77 if (!er.byref.dim && !er.byvalue.dim && !er.byfunc.dim && !er.byexp.dim) in checkParamArgumentEscape() 114 for (size_t i = 0; i < er.byref.dim; i++) in checkParamArgumentEscape() 116 VarDeclaration *v = er.byref[i]; in checkParamArgumentEscape() 205 if (!er.byref.dim && !er.byvalue.dim && !er.byfunc.dim && !er.byexp.dim) in checkAssignEscape() 312 for (size_t i = 0; i < er.byref.dim; i++) in checkAssignEscape() 314 VarDeclaration *v = er.byref[i]; in checkAssignEscape() 436 if (!er.byref.dim && !er.byvalue.dim && !er.byexp.dim) in checkThrowEscape() 531 if (!er.byref.dim && !er.byvalue.dim && !er.byexp.dim) in checkReturnEscapeImpl() 598 for (size_t i = 0; i < er.byref.dim; i++) in checkReturnEscapeImpl() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/bindings/python/llvm/ |
| H A D | bit_reader.py | 10 from ctypes import byref 19 result = lib.LLVMParseBitcode2(mem_buffer, byref(module))
|
| H A D | core.py | 17 from ctypes import byref 164 byref(memory), byref(out)) 270 result = lib.LLVMPrintModuleToFile(self, filename, byref(out))
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | escape.d | 133 eb.er.byref.push(var); in checkMutableArguments() 176 foreach (VarDeclaration v; byval ? eb.er.byvalue : eb.er.byref) in checkMutableArguments() 187 foreach (VarDeclaration v2; byval ? eb2.er.byvalue : eb2.er.byref) in checkMutableArguments() 282 if (!er.byref.dim && !er.byvalue.dim && !er.byfunc.dim && !er.byexp.dim) in checkParamArgumentEscape() 354 foreach (VarDeclaration v; er.byref) in checkParamArgumentEscape() 552 if (!er.byref.dim && !er.byvalue.dim && !er.byfunc.dim && !er.byexp.dim) in checkAssignEscape() 752 foreach (VarDeclaration v; er.byref) in checkAssignEscape() 953 if (!er.byref.dim && !er.byvalue.dim && !er.byexp.dim) in checkThrowEscape() 1005 if (!er.byref.dim && !er.byvalue.dim && !er.byexp.dim) in checkNewEscape() 1061 foreach (VarDeclaration v; er.byref) in checkNewEscape() [all …]
|
| H A D | ob.d | 1310 foreach (VarDeclaration v2; er.byref) in genKill() 1489 foreach (VarDeclaration v2; er.byref) in genKill() 1522 foreach (VarDeclaration v2; er.byref) in genKill() 2020 foreach (VarDeclaration v2; er.byref) in checkObErrors() 2197 foreach (VarDeclaration v2; er.byref) in checkObErrors() 2236 foreach (VarDeclaration v2; er.byref) in checkObErrors() 2558 foreach (VarDeclaration v2; er.byref) in checkObErrors()
|
| /netbsd-src/external/bsd/file/dist/python/ |
| H A D | magic.py | 257 i = _getparam(self._magic_t, param, byref(v)) 267 return _setparam(self._magic_t, param, byref(v))
|
| /netbsd-src/external/apache2/llvm/dist/clang/bindings/python/clang/ |
| H A D | cindex.py | 242 conf.lib.clang_getInstantiationLocation(self, byref(f), byref(l), 243 byref(c), byref(o)) 434 byref(range)) 478 conf.lib.clang_getDiagnosticOption(self, byref(disable)) 550 conf.lib.clang_tokenize(tu, extent, byref(tokens_memory), 551 byref(tokens_count)) 3250 byref(errorCode)) 3315 conf.lib.clang_annotateTokens(self._tu, byref(self), 1, byref(cursor))
|
| /netbsd-src/external/apache2/llvm/dist/clang/docs/ |
| H A D | Block-ABI-Apple.rst | 483 the ``byref`` data block using the functions ``_Block_object_assign`` and 674 for the block ``byref`` part and: 887 BLOCK_BYREF_CALLER = 128, // called from byref copy/dispose helpers 909 pointers to byref structures, and objects (including 917 field of the byref data structure. (Currently the implementation only 918 packs one field into the byref structure but in principle there could be
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/vim/syntax/ |
| H A D | llvm.vim | 59 \ byref
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| H A D | trans-types.c | 2208 int byref; in gfc_sym_type() local 2250 byref = 1; in gfc_sym_type() 2252 byref = 0; in gfc_sym_type() 2270 byref ? PACKED_FULL in gfc_sym_type() 2273 byref = 0; in gfc_sym_type() 2298 if (byref) in gfc_sym_type()
|
| H A D | trans-decl.c | 1506 int byref; in gfc_get_symbol_decl() local 1519 byref = gfc_return_by_reference (sym->ns->proc_name); in gfc_get_symbol_decl() 1521 byref = 0; in gfc_get_symbol_decl() 1553 if (!byref && sym->attr.function in gfc_get_symbol_decl() 1568 fun_or_res = byref && (sym->attr.result in gfc_get_symbol_decl() 1573 if (sym->attr.result && byref in gfc_get_symbol_decl() 1606 if (sym->ts.deferred && byref) in gfc_get_symbol_decl()
|
| H A D | trans-expr.c | 5577 int byref; in gfc_conv_procedure_call() local 6947 byref = (comp && (comp->attr.dimension in gfc_conv_procedure_call() 6950 if (byref) in gfc_conv_procedure_call() 7179 if (!byref && sym->ts.type != BT_CHARACTER in gfc_conv_procedure_call() 7195 if (!se->want_pointer && !byref in gfc_conv_procedure_call() 7217 if (byref) in gfc_conv_procedure_call() 7285 if (byref) in gfc_conv_procedure_call()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/fortran/ |
| H A D | trans-types.cc | 2268 int byref; in gfc_sym_type() local 2311 byref = 1; in gfc_sym_type() 2313 byref = 0; in gfc_sym_type() 2335 byref ? PACKED_FULL in gfc_sym_type() 2338 byref = 0; in gfc_sym_type() 2363 if (byref) in gfc_sym_type()
|
| H A D | trans-decl.cc | 1540 int byref; in gfc_get_symbol_decl() local 1561 byref = gfc_return_by_reference (sym->ns->proc_name); in gfc_get_symbol_decl() 1563 byref = 0; in gfc_get_symbol_decl() 1595 if (!byref && sym->attr.function in gfc_get_symbol_decl() 1607 fun_or_res = byref && (sym->attr.result in gfc_get_symbol_decl() 1612 if (sym->attr.result && byref in gfc_get_symbol_decl() 1645 if (sym->ts.deferred && byref) in gfc_get_symbol_decl()
|
| H A D | trans-expr.cc | 6011 int byref; in gfc_conv_procedure_call() local 7483 byref = (comp && (comp->attr.dimension in gfc_conv_procedure_call() 7486 if (byref) in gfc_conv_procedure_call() 7715 if (!byref && sym->ts.type != BT_CHARACTER in gfc_conv_procedure_call() 7731 if (!se->want_pointer && !byref in gfc_conv_procedure_call() 7753 if (byref) in gfc_conv_procedure_call() 7821 if (byref) in gfc_conv_procedure_call()
|
| H A D | ChangeLog-2004 | 1354 * trans-expr.c (gfc_conv_function_call): Always add byref call
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/lit/ |
| H A D | TestRunner.py | 437 from ctypes import addressof, byref, c_void_p, create_unicode_buffer 472 result = SHFileOperationW(byref(operation))
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | Attributes.td | 55 def ByRef : TypeAttr<"byref">;
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/ |
| H A D | oaidl.d | 219 void* byref; member
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/ |
| H A D | LLLexer.cpp | 707 KEYWORD(byref); in LexIdentifier()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | TokenKinds.def | 744 // bycopy/byref/in/inout/oneway/out?
|
| H A D | Attr.td | 905 let Args = [EnumArgument<"Type", "BlockType", ["byref"], ["ByRef"]>];
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/ |
| H A D | objc.texi | 431 @item @code{byref}
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/doc/ |
| H A D | objc.texi | 431 @item @code{byref}
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
| H A D | BitCodeFormat.rst | 1073 * code 69: ``byref``
|