/openbsd/gnu/llvm/llvm/bindings/python/llvm/ |
H A D | core.py | 453 library.LLVMInitializeCore.restype = None 468 library.LLVMInitializeIPO.restype = None 480 library.LLVMShutdown.restype = None 491 library.LLVMContextDispose.restype = None 510 library.LLVMDisposeModule.restype = None 516 library.LLVMSetDataLayout.restype = None 519 library.LLVMGetTarget.restype = c_char_p 522 library.LLVMSetTarget.restype = None 525 library.LLVMDumpModule.restype = None 548 library.LLVMDumpValue.restype = None [all …]
|
H A D | object.py | 436 library.LLVMGetSections.restype = c_object_p 448 library.LLVMGetSymbols.restype = c_object_p 453 library.LLVMIsSymbolIteratorAtEnd.restype = bool 458 library.LLVMGetSectionName.restype = c_char_p 461 library.LLVMGetSectionSize.restype = c_uint64 468 library.LLVMGetSectionAddress.restype = c_uint64 474 library.LLVMGetRelocations.restype = c_object_p 484 library.LLVMGetSymbolName.restype = c_char_p 487 library.LLVMGetSymbolAddress.restype = c_uint64 490 library.LLVMGetSymbolSize.restype = c_uint64 [all …]
|
H A D | disassembler.py | 151 library.LLVMCreateDisasm.restype = c_object_p 157 library.LLVMDisasmInstruction.restype = c_size_t 160 library.LLVMSetDisasmOptions.restype = c_int
|
H A D | bit_reader.py | 28 library.LLVMParseBitcode2.restype = bool
|
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | remote-rdp.c | 267 int restype; in rdp_init() local 283 while ((restype = serial_readchar (io, 1)) > 0) in rdp_init() 285 switch (restype) in rdp_init() 293 printf_unfiltered ("%c", isgraph (restype) ? restype : ' '); in rdp_init() 298 if (restype == 0) in rdp_init() 310 while (!sync && (restype = serial_readchar (io, 1)) > 0) in rdp_init() 313 fprintf_unfiltered (gdb_stdlog, "[%02x]\n", restype); in rdp_init() 315 switch (restype) in rdp_init() 321 while ((restype = serial_readchar (io, 1)) == RDP_RESET) in rdp_init() 325 printf_unfiltered ("%c", isgraph (restype) ? restype : ' '); in rdp_init() [all …]
|
/openbsd/sys/arch/amd64/pci/ |
H A D | acpipci.c | 260 int restype, tflags = 0; in acpipci_parse_resources() local 265 restype = crs->lr_word.type; in acpipci_parse_resources() 272 restype = crs->lr_dword.type; in acpipci_parse_resources() 279 restype = crs->lr_qword.type; in acpipci_parse_resources() 291 restype = LR_TYPE_MEMORY; in acpipci_parse_resources() 300 switch (restype) { in acpipci_parse_resources()
|
/openbsd/sys/arch/arm64/dev/ |
H A D | acpipci.c | 240 int restype, tflags; in acpipci_parse_resources() local 245 restype = crs->lr_word.type; in acpipci_parse_resources() 252 restype = crs->lr_dword.type; in acpipci_parse_resources() 259 restype = crs->lr_qword.type; in acpipci_parse_resources() 266 restype = LR_TYPE_MEMORY; in acpipci_parse_resources() 277 switch (restype) { in acpipci_parse_resources()
|
/openbsd/usr.sbin/tcpdump/ |
H A D | print-smb.c | 725 int restype; in nbt_udp137_print() local 729 restype = RSVAL(p,0); in nbt_udp137_print() 741 if (restype == 0x21) { in nbt_udp137_print()
|
/openbsd/gnu/usr.bin/gcc/gcc/java/ |
H A D | decl.c | 1696 tree restype = TREE_TYPE (TREE_TYPE (fndecl)); local 1701 if (INTEGRAL_TYPE_P (restype) 1702 && TYPE_PRECISION (restype) < TYPE_PRECISION (integer_type_node)) 1703 restype = integer_type_node; 1704 result = build_decl (RESULT_DECL, NULL_TREE, restype);
|
/openbsd/gnu/usr.bin/gcc/gcc/ |
H A D | c-typeck.c | 848 tree restype = TREE_TYPE (type); local 861 restype 862 = c_build_qualified_type (restype, 868 return convert (TYPE_POINTER_TO (restype), 888 ptrtype = build_pointer_type (restype); 2628 tree restype = ptrdiff_type_node; local 2681 op0 = build_binary_op (MINUS_EXPR, convert (restype, op0), 2682 convert (restype, op1), 0); 2692 result = build (EXACT_DIV_EXPR, restype, op0, convert (restype, op1));
|
H A D | c-decl.c | 5803 tree restype; local 6003 restype = TREE_TYPE (TREE_TYPE (current_function_decl)); 6005 if (c_promoting_integer_type_p (restype)) 6008 if (TREE_UNSIGNED (restype) 6009 && (TYPE_PRECISION (restype) 6011 restype = unsigned_type_node; 6013 restype = integer_type_node; 6016 = build_decl (RESULT_DECL, NULL_TREE, restype);
|
H A D | FSFChangeLog.11 | 10300 doing the minus expression, in case restype is a short type.
|
/openbsd/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
H A D | gdbclientutils.py | 452 libc.ptsname.restype = ctypes.c_char_p
|
/openbsd/gnu/gcc/gcc/ |
H A D | c-decl.c | 6002 tree restype, resdecl; in start_function() local 6273 restype = TREE_TYPE (TREE_TYPE (current_function_decl)); in start_function() 6275 if (c_promoting_integer_type_p (restype)) in start_function() 6278 if (TYPE_UNSIGNED (restype) in start_function() 6279 && (TYPE_PRECISION (restype) in start_function() 6281 restype = unsigned_type_node; in start_function() 6283 restype = integer_type_node; in start_function() 6286 resdecl = build_decl (RESULT_DECL, NULL_TREE, restype); in start_function()
|
H A D | c-typeck.c | 1494 tree restype = TREE_TYPE (type); in array_to_pointer_conversion() local 1504 ptrtype = build_pointer_type (restype); in array_to_pointer_conversion() 2714 tree restype = ptrdiff_type_node; in pointer_diff() local 2777 op0 = build_binary_op (MINUS_EXPR, convert (restype, op0), in pointer_diff() 2778 convert (restype, op1), 0); in pointer_diff() 2787 return fold_build2 (EXACT_DIV_EXPR, restype, op0, convert (restype, op1)); in pointer_diff()
|
/openbsd/gnu/usr.bin/gcc/gcc/cp/ |
H A D | decl.c | 14318 tree restype; local 14375 restype = TREE_TYPE (fntype); 14376 if (CLASS_TYPE_P (restype) && !CLASSTYPE_GOT_SEMICOLON (restype)) 14378 error ("semicolon missing after declaration of `%#T'", restype); 14379 shadow_tag (build_tree_list (NULL_TREE, restype)); 14380 CLASSTYPE_GOT_SEMICOLON (restype) = 1; 14484 restype = TREE_TYPE (fntype); 14486 if (c_promoting_integer_type_p (restype)) 14487 restype = type_promotes_to (restype); 14491 = build_decl (RESULT_DECL, 0, TYPE_MAIN_VARIANT (restype)); [all …]
|
H A D | typeck.c | 3737 tree restype = ptrdiff_type_node; local 3759 cp_convert (restype, op0), 3760 cp_convert (restype, op1)); 3775 result = build (EXACT_DIV_EXPR, restype, op0, cp_convert (restype, op1));
|
/openbsd/gnu/gcc/gcc/cp/ |
H A D | typeck.c | 3791 tree restype = ptrdiff_type_node; in pointer_diff() local 3811 cp_convert (restype, op0), in pointer_diff() 3812 cp_convert (restype, op1)); in pointer_diff() 3824 result = build2 (EXACT_DIV_EXPR, restype, op0, cp_convert (restype, op1)); in pointer_diff()
|
H A D | decl.c | 10505 tree restype; in start_preparsed_function() local 10611 restype = TREE_TYPE (fntype); in start_preparsed_function() 10613 if (c_promoting_integer_type_p (restype)) in start_preparsed_function() 10614 restype = type_promotes_to (restype); in start_preparsed_function() 10619 resdecl = build_decl (RESULT_DECL, 0, TYPE_MAIN_VARIANT (restype)); in start_preparsed_function() 10624 cp_apply_type_quals_to_decl (cp_type_quals (restype), resdecl); in start_preparsed_function()
|
/openbsd/gnu/usr.bin/binutils/gdb/rdi-share/ |
H A D | armdbg.h | 874 Dbg_Error Dbg_TypeOfExpr(Dbg_MCState *state, Dbg_Expr *tree, Dbg_TypeSpec *restype);
|
/openbsd/gnu/usr.bin/gcc/gcc/objc/ |
H A D | objc-act.c | 2994 tree restype = TREE_TYPE (TREE_TYPE (tmp_decl)); local 2996 if (TREE_CODE (restype) == INTEGER_TYPE 2997 && TYPE_PRECISION (restype) < TYPE_PRECISION (integer_type_node)) 2998 restype = integer_type_node; 2999 DECL_RESULT (tmp_decl) = build_decl (RESULT_DECL, 0, restype);
|
/openbsd/gnu/llvm/clang/bindings/python/clang/ |
H A D | cindex.py | 4148 func.restype = item[2]
|
/openbsd/gnu/usr.bin/gcc/gcc/f/ |
H A D | com.c | 13944 tree restype; in start_function() local 13999 restype = TREE_TYPE (TREE_TYPE (current_function_decl)); in start_function() 14001 = build_decl (RESULT_DECL, NULL_TREE, restype); in start_function()
|