Searched refs:isptr (Results 1 – 9 of 9) sorted by relevance
/external/syzkaller/vendor/github.com/golang/protobuf/proto/ |
D | pointer_unsafe.go | 88 func toAddrPointer(i *interface{}, isptr bool) pointer { 90 if isptr {
|
D | table_marshal.go | 89 …isptr bool // elem is pointer typed, thus interface of this type is a direct interface (extens… member 411 isptr: t.Kind() == reflect.Ptr, 2374 p := toAddrPointer(&v, ei.isptr) 2408 p := toAddrPointer(&v, ei.isptr) 2439 p := toAddrPointer(&v, ei.isptr) 2484 p := toAddrPointer(&v, ei.isptr) 2526 p := toAddrPointer(&v, ei.isptr) 2564 p := toAddrPointer(&v, ei.isptr) 2594 p := toAddrPointer(&v, ei.isptr) 2628 p := toAddrPointer(&v, ei.isptr)
|
D | pointer_reflect.go | 82 func toAddrPointer(i *interface{}, isptr bool) pointer {
|
/external/golang-protobuf/proto/ |
D | pointer_unsafe.go | 88 func toAddrPointer(i *interface{}, isptr, deref bool) (p pointer) { argument 90 if isptr {
|
D | table_marshal.go | 89 …isptr bool // elem is pointer typed, thus interface of this type is a direct interface (extens… member 428 isptr: t.Kind() == reflect.Ptr, 2411 p := toAddrPointer(&v, ei.isptr, ei.deref) 2446 p := toAddrPointer(&v, ei.isptr, ei.deref) 2477 p := toAddrPointer(&v, ei.isptr, ei.deref) 2522 p := toAddrPointer(&v, ei.isptr, ei.deref) 2565 p := toAddrPointer(&v, ei.isptr, ei.deref) 2603 p := toAddrPointer(&v, ei.isptr, ei.deref) 2633 p := toAddrPointer(&v, ei.isptr, ei.deref) 2668 p := toAddrPointer(&v, ei.isptr, ei.deref)
|
D | pointer_reflect.go | 82 func toAddrPointer(i *interface{}, isptr, deref bool) pointer { argument
|
/external/bcc/src/lua/bpf/ |
D | bpf.lua | 299 if cdef.isptr(V[a].type) then 397 elseif cdef.isptr(V[a].type) then 441 if cdef.isptr(V[a].type) then 461 if b and cdef.isptr(V[b].type) then 470 if cdef.isptr(V[a].type) then 654 if cdef.isptr(V[key].type) then 723 if cdef.isptr(V[src].type) then 732 if cdef.isptr(V[src].type) then 986 elseif cdef.isptr(V[b].type) and d == 0 then 1037 if cdef.isptr(atype) then -- If the member is pointer type, update base pointer with offset [all …]
|
D | builtins.lua | 189 assert(not cdef.isptr(ct, true), 'NYI: ffi.new(ctype, ...) - ctype MUST NOT be a pointer') 202 assert(cdef.isptr(e.V[dst].type), 'ffi.copy(dst, src) - dst MUST be a pointer type') 203 assert(cdef.isptr(e.V[src].type), 'ffi.copy(dst, src) - src MUST be a pointer type') 387 if cdef.isptr(e.V[x].const) then -- No pointer arithmetics, dereference
|
D | cdef.lua | 205 function M.isptr(v, noarray) function
|