Home
last modified time | relevance | path

Searched refs:byref (Results 1 – 25 of 33) sorted by relevance

12

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Descape.c24 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 Dbit_reader.py10 from ctypes import byref
19 result = lib.LLVMParseBitcode2(mem_buffer, byref(module))
H A Dcore.py17 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 Descape.d133 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 Dob.d1310 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 Dmagic.py257 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 Dcindex.py242 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 DBlock-ABI-Apple.rst483 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 Dllvm.vim59 \ byref
/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/
H A Dtrans-types.c2208 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 Dtrans-decl.c1506 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 Dtrans-expr.c5577 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 Dtrans-types.cc2268 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 Dtrans-decl.cc1540 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 Dtrans-expr.cc6011 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 DChangeLog-20041354 * trans-expr.c (gfc_conv_function_call): Always add byref call
/netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/lit/
H A DTestRunner.py437 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 DAttributes.td55 def ByRef : TypeAttr<"byref">;
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Doaidl.d219 void* byref; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLLexer.cpp707 KEYWORD(byref); in LexIdentifier()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTokenKinds.def744 // bycopy/byref/in/inout/oneway/out?
H A DAttr.td905 let Args = [EnumArgument<"Type", "BlockType", ["byref"], ["ByRef"]>];
/netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/
H A Dobjc.texi431 @item @code{byref}
/netbsd-src/external/gpl3/gcc/dist/gcc/doc/
H A Dobjc.texi431 @item @code{byref}
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DBitCodeFormat.rst1073 * code 69: ``byref``

12