HomeSort by relevance Sort by last modified time
    Searched refs:ftyp (Results 1 - 21 of 21) sorted by null

  /external/opencv3/3rdparty/libjasper/
jp2_enc.c 97 jp2_ftyp_t *ftyp; local
147 ftyp = &box->data.ftyp;
148 ftyp->majver = JP2_FTYP_MAJVER;
149 ftyp->minver = JP2_FTYP_MINVER;
150 ftyp->numcompatcodes = 1;
151 ftyp->compatcodes[0] = JP2_FTYP_COMPATCODE;
jp2_cod.c 146 {JP2_BOX_FTYP, "FTYP", 0,
349 jp2_ftyp_t *ftyp = &box->data.ftyp; local
351 if (jp2_getuint32(in, &ftyp->majver) || jp2_getuint32(in, &ftyp->minver)) {
354 ftyp->numcompatcodes = (box->datalen - 8) / 4;
355 if (ftyp->numcompatcodes > JP2_FTYP_MAXCOMPATCODES) {
358 for (i = 0; i < ftyp->numcompatcodes; ++i) {
359 if (jp2_getuint32(in, &ftyp->compatcodes[i])) {
543 jp2_ftyp_t *ftyp = &box->data.ftyp local
    [all...]
jp2_cod.h 130 /* FTYP box data. */
264 jp2_ftyp_t ftyp; member in union:__anon21690::__anon21691
  /external/llvm/bindings/go/llvm/
ir_test.go 25 ftyp := FunctionType(VoidType(), nil, false)
26 fn := AddFunction(mod, "foo", ftyp)
ir.go     [all...]
  /prebuilts/go/darwin-x86/src/runtime/
mfinal.go 317 ftyp := f._type
318 if ftyp == nil {
326 if ftyp.kind&kindMask != kindFunc {
327 throw("runtime.SetFinalizer: second argument is " + *ftyp._string + ", not a function")
329 ft := (*functype)(unsafe.Pointer(ftyp))
332 throw("runtime.SetFinalizer: cannot pass " + *etyp._string + " to finalizer " + *ftyp._string)
355 throw("runtime.SetFinalizer: cannot pass " + *etyp._string + " to finalizer " + *ftyp._string)
  /prebuilts/go/linux-x86/src/runtime/
mfinal.go 317 ftyp := f._type
318 if ftyp == nil {
326 if ftyp.kind&kindMask != kindFunc {
327 throw("runtime.SetFinalizer: second argument is " + *ftyp._string + ", not a function")
329 ft := (*functype)(unsafe.Pointer(ftyp))
332 throw("runtime.SetFinalizer: cannot pass " + *etyp._string + " to finalizer " + *ftyp._string)
355 throw("runtime.SetFinalizer: cannot pass " + *etyp._string + " to finalizer " + *ftyp._string)
  /prebuilts/go/darwin-x86/src/cmd/vet/
copylock.go 148 ftyp := styp.Field(i).Type()
149 subpath := lockPath(tpkg, ftyp)
  /prebuilts/go/darwin-x86/src/reflect/
makefunc.go 50 ftyp := (*funcType)(unsafe.Pointer(t))
61 impl := &makeFuncImpl{code: code, stack: stack, typ: ftyp, fn: fn}
value.go 477 ftyp := ctxt.typ
483 in := make([]Value, 0, len(ftyp.in))
484 for _, arg := range ftyp.in {
506 if len(out) != len(ftyp.out) {
511 if len(ftyp.out) > 0 {
516 for i, arg := range ftyp.out {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/
copylock.go 148 ftyp := styp.Field(i).Type()
149 subpath := lockPath(tpkg, ftyp)
  /prebuilts/go/linux-x86/src/reflect/
makefunc.go 50 ftyp := (*funcType)(unsafe.Pointer(t))
61 impl := &makeFuncImpl{code: code, stack: stack, typ: ftyp, fn: fn}
value.go 477 ftyp := ctxt.typ
483 in := make([]Value, 0, len(ftyp.in))
484 for _, arg := range ftyp.in {
506 if len(out) != len(ftyp.out) {
511 if len(ftyp.out) > 0 {
516 for i, arg := range ftyp.out {
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/xml/
typeinfo.go 217 ftyp := f.Type
218 xmlname := lookupXMLName(ftyp)
221 finfo.name, typ, f.Name, xmlname.name, ftyp)
  /prebuilts/go/linux-x86/src/encoding/xml/
typeinfo.go 217 ftyp := f.Type
218 xmlname := lookupXMLName(ftyp)
221 finfo.name, typ, f.Name, xmlname.name, ftyp)
  /prebuilts/go/darwin-x86/src/go/types/
typexpr.go 144 func (check *Checker) funcType(sig *Signature, recvPar *ast.FieldList, ftyp *ast.FuncType) {
146 check.recordScope(ftyp, scope)
149 params, variadic := check.collectParams(scope, ftyp.Params, true)
150 results, _ := check.collectParams(scope, ftyp.Results, false)
  /prebuilts/go/linux-x86/src/go/types/
typexpr.go 144 func (check *Checker) funcType(sig *Signature, recvPar *ast.FieldList, ftyp *ast.FuncType) {
146 check.recordScope(ftyp, scope)
149 params, variadic := check.collectParams(scope, ftyp.Params, true)
150 results, _ := check.collectParams(scope, ftyp.Results, false)
  /prebuilts/go/darwin-x86/src/net/http/
sniff.go 168 var mp4ftype = []byte("ftyp")
  /prebuilts/go/linux-x86/src/net/http/
sniff.go 168 var mp4ftype = []byte("ftyp")
  /prebuilts/go/darwin-x86/src/go/printer/
nodes.go 485 if ftyp, isFtyp := f.Type.(*ast.FuncType); isFtyp {
488 p.signature(ftyp.Params, ftyp.Results)
    [all...]
  /prebuilts/go/linux-x86/src/go/printer/
nodes.go 485 if ftyp, isFtyp := f.Type.(*ast.FuncType); isFtyp {
488 p.signature(ftyp.Params, ftyp.Results)
    [all...]

Completed in 670 milliseconds