/external/tensorflow/tensorflow/go/ |
version.go | 25 func Version() string { return C.GoString(C.TF_Version()) }
|
status.go | 47 return C.GoString(C.TF_Message(s.c))
|
operation.go | 35 return C.GoString(C.TF_OperationName(op.c)) 40 return C.GoString(C.TF_OperationOpType(op.c))
|
/prebuilts/go/darwin-x86/misc/cgo/test/ |
issue5548_c.c | 15 GoString s;
|
callback_c.c | 87 extern void goWithString(GoString); 89 goWithString((GoString){str, strlen(str)});
|
issue6907.go | 30 if got := C.GoString(C.Issue6907CopyString(want)); got != want { 31 t.Errorf("C.GoString(C.Issue6907CopyString(%q)) == %q, want %q", want, got, want)
|
helpers.go | 24 {"GoString", C.GoString(C.greeting), greeting},
|
issue4029.go | 61 t.Error("dlopen:", C.GoString(C.dlerror())) 68 t.Error("dlsym:", C.GoString(C.dlerror()))
|
api.go | 24 s = C.GoString((*C.char)(C.api_hello))
|
issue12030.go | 30 got := C.GoString(buf)
|
/prebuilts/go/linux-x86/misc/cgo/test/ |
issue5548_c.c | 15 GoString s;
|
callback_c.c | 87 extern void goWithString(GoString); 89 goWithString((GoString){str, strlen(str)});
|
issue6907.go | 30 if got := C.GoString(C.Issue6907CopyString(want)); got != want { 31 t.Errorf("C.GoString(C.Issue6907CopyString(%q)) == %q, want %q", want, got, want)
|
helpers.go | 24 {"GoString", C.GoString(C.greeting), greeting},
|
issue4029.go | 61 t.Error("dlopen:", C.GoString(C.dlerror())) 68 t.Error("dlsym:", C.GoString(C.dlerror()))
|
/prebuilts/go/darwin-x86/src/debug/macho/ |
reloctype.go | 20 func (r RelocTypeGeneric) GoString() string { return "macho." + r.String() } 37 func (r RelocTypeX86_64) GoString() string { return "macho." + r.String() } 54 func (r RelocTypeARM) GoString() string { return "macho." + r.String() } 72 func (r RelocTypeARM64) GoString() string { return "macho." + r.String() }
|
/prebuilts/go/linux-x86/src/debug/macho/ |
reloctype.go | 20 func (r RelocTypeGeneric) GoString() string { return "macho." + r.String() } 37 func (r RelocTypeX86_64) GoString() string { return "macho." + r.String() } 54 func (r RelocTypeARM) GoString() string { return "macho." + r.String() } 72 func (r RelocTypeARM64) GoString() string { return "macho." + r.String() }
|
/external/google-breakpad/src/tools/mac/upload_system_symbols/ |
arch_reader.go | 58 return C.GoString(cstr)
|
/prebuilts/go/darwin-x86/src/runtime/testdata/testprogcgo/ |
deadlock.go | 25 return C.GoString(C.geterror())
|
/prebuilts/go/linux-x86/src/runtime/testdata/testprogcgo/ |
deadlock.go | 25 return C.GoString(C.geterror())
|
/external/tensorflow/tensorflow/go/genop/internal/ |
api_def_map.go | 72 return nil, errors.New(C.GoString(C.TF_Message(status))) 93 return errors.New(C.GoString(C.TF_Message(status))) 109 return nil, errors.New(C.GoString(C.TF_Message(status)))
|
/external/llvm/bindings/go/llvm/ |
bitreader.go | 37 err := errors.New(C.GoString(errmsg)) 48 err := errors.New(C.GoString(errmsg))
|
/prebuilts/go/darwin-x86/misc/cgo/testsovar/ |
cgoso.go | 35 got := C.GoString(C.getVar()) 39 got = C.GoString(C.exported_var)
|
/prebuilts/go/linux-x86/misc/cgo/testsovar/ |
cgoso.go | 35 got := C.GoString(C.getVar()) 39 got = C.GoString(C.exported_var)
|
/prebuilts/go/darwin-x86/misc/cgo/stdio/ |
file.go | 43 var Greeting = C.GoString(C.greeting)
|