OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:return
(Results
1 - 25
of
190
) sorted by relevancy
1
2
3
4
5
6
7
8
/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.go/
handcall.go
4
return
a + b
8
return
a - b
chan.go
12
return
ch
/src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.go/
handcall.go
4
return
a + b
8
return
a - b
chan.go
12
return
ch
/src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
string.go
20
return
"VoidTypeKind"
22
return
"FloatTypeKind"
24
return
"DoubleTypeKind"
26
return
"X86_FP80TypeKind"
28
return
"FP128TypeKind"
30
return
"PPC_FP128TypeKind"
32
return
"LabelTypeKind"
34
return
"IntegerTypeKind"
36
return
"FunctionTypeKind"
38
return
"StructTypeKind
[
all
...]
ir.go
81
func (c Context) IsNil() bool {
return
c.C == nil }
82
func (c Module) IsNil() bool {
return
c.C == nil }
83
func (c Type) IsNil() bool {
return
c.C == nil }
84
func (c Value) IsNil() bool {
return
c.C == nil }
85
func (c BasicBlock) IsNil() bool {
return
c.C == nil }
86
func (c Builder) IsNil() bool {
return
c.C == nil }
87
func (c ModuleProvider) IsNil() bool {
return
c.C == nil }
88
func (c MemoryBuffer) IsNil() bool {
return
c.C == nil }
89
func (c PassManager) IsNil() bool {
return
c.C == nil }
90
func (c Use) IsNil() bool {
return
c.C == nil
[
all
...]
executionengine.go
56
return
(*C.LLVMGenericValueRef)(unsafe.Pointer(t))
65
return
69
return
73
return
75
func (g GenericValue) IntWidth() int {
return
int(C.LLVMGenericValueIntWidth(g.C)) }
77
return
uint64(C.LLVMGenericValueToInt(g.C, boolToLLVMBool(signed)))
80
return
float64(C.LLVMGenericValueToFloat(t.C, g.C))
83
return
C.LLVMGenericValueToPointer(g.C)
99
return
110
return
[
all
...]
target.go
98
return
initializeNativeTargetError
100
return
nil
106
return
initializeNativeTargetError
108
return
nil
121
return
131
return
136
func (td TargetData) ByteOrder() ByteOrdering {
return
ByteOrdering(C.LLVMByteOrder(td.C)) }
140
func (td TargetData) PointerSize() int {
return
int(C.LLVMPointerSize(td.C)) }
144
func (td TargetData) IntPtrType() (t Type) { t.C = C.LLVMIntPtrType(td.C);
return
}
149
return
uint64(C.LLVMSizeOfTypeInBits(td.C, t.C)
[
all
...]
bitwriter.go
28
return
writeBitcodeToFileErr
30
return
nil
35
return
MemoryBuffer{mb}
linker.go
27
return
err
29
return
nil
analysis.go
28
// verifier will print to stderr and
return
1
30
// verifier will just
return
1
45
return
err
47
return
nil
60
return
verifyFunctionError
62
return
nil
bitreader.go
38
return
Module{}, err
44
return
m, nil
49
return
Module{}, err
dibuilder.go
98
return
&DIBuilder{ref: d, m: m}
154
return
Metadata{C: result}
166
return
Metadata{C: result}
185
return
Metadata{C: result}
191
return
Metadata{C: result}
228
return
Metadata{C: result}
257
return
Metadata{C: result}
289
return
Metadata{C: result}
311
return
Metadata{C: result}
336
return
Metadata{C: result
[
all
...]
support.go
37
return
err
39
return
nil
transforms_ipo.go
23
return
1
25
return
0
executionengine_test.go
65
return
76
return
/src/external/apache2/llvm/dist/llvm/utils/vim/indent/
llvm.vim
30
return
searchpair('{', '', '}', 'bW')
41
return
indent(opening_lnum)
49
return
indent(blockbegin)
60
return
0
71
return
ind
/src/external/mit/libcbor/dist/docs/doxygen/search/
search.js
21
return
result;
35
return
x;
49
return
y;
80
{
return
document.getElementById("MSearchField"); }
83
{
return
document.getElementById("MSearchSelect"); }
86
{
return
document.getElementById("MSearchSelectWindow"); }
89
{
return
document.getElementById("MSearchResults"); }
92
{
return
document.getElementById("MSearchResultsWindow"); }
95
{
return
document.getElementById("MSearchClose"); }
98
{
return
document.getElementById("MSearchBox");
[
all
...]
/src/external/mit/libcbor/dist/docs/doxygen/
menu.js
13
return
result;
22
$('#main-menu').append('<li style="float:right"><div id="MSearchBox" class="MSearchBoxInactive"><span class="left"><img id="MSearchSelect" src="'+relPath+'search/mag_sel.png" onmouseover="
return
searchBox.OnSearchSelectShow()" onmouseout="
return
searchBox.OnSearchSelectHide()" alt=""/><input type="text" id="MSearchField" value="'+search+'" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/></span><span class="right"><a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="'+relPath+'search/close.png" alt=""/></a></span></div></li>');
/src/external/lgpl3/gmp/dist/mpn/powerpc32/750/
rshift.asm
59
slw r3, r8, r7 C
return
value
68
C r3
return
value
101
C r3
return
value
121
C r3
return
value
141
C r3
return
value
lshift.asm
65
srw r3, r8, r7 C
return
value
71
C r3
return
value
104
C r3
return
value
124
C r3
return
value
149
srw r3, r8, r7 C
return
value
/src/external/lgpl3/gmp/dist/mpn/x86_64/
missing.asm
41
C Accept the single explicit parameter on the stack,
return
the two result
43
C
return
address up.
66
C Accept the two parameters on the stack,
return
the result word on the stack.
67
C This calling convention means that we need to move the
return
address down.
106
C Accept the two parameters on the stack,
return
the result word on the stack.
107
C This calling convention means that we need to move the
return
address down.
/src/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/resources/
selectable.js
30
return
returnVar;
/src/external/lgpl3/gmp/dist/mpn/powerpc64/mode32/
sub_n.asm
76
subfic r4, r3, 0 C ...
return
value register
77
li r3, 0 C zero extend
return
value
85
subfic r4, r3, 0 C ...
return
value register
86
li r3, 0 C zero extend
return
value
/src/external/lgpl3/gmp/dist/tests/
arm32call.asm
23
dnl The current version of the code attempts to keep the call/
return
62
return
r12
77
C could hold one half of a 64-bit
return
value, since we don't use that
82
return
r14
Completed in 32 milliseconds
1
2
3
4
5
6
7
8
Indexes created Sun Jul 19 00:25:04 UTC 2026