HomeSort by relevance Sort by last modified time
    Searched full:funcs (Results 201 - 225 of 684) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/opencv3/modules/cudaarithm/src/cuda/
threshold.cu 126 static const func_t funcs[] =
143 funcs[depth](src, dst, thresh, maxVal, type, stream);
  /external/opencv3/modules/cudafilters/src/cuda/
filter2d.cu 130 static const func_t funcs[] =
139 funcs[borderMode]((PtrStepSz<T>) srcWhole, ofsX, ofsY, (PtrStepSz<D>) dst, kernel,
  /external/opencv3/modules/cudalegacy/src/
fgd.cpp 160 static const func_t funcs[4][4] = local
171 funcs[prevFrame.channels() - 1][curFrame.channels() - 1](
222 static const func_t funcs[4][4] = local
232 funcs[prevFrame.channels() - 1][curFrame.channels() - 1](prevFrame, curFrame,
274 static const func_t funcs[4][4][4] = local
297 funcs[prevFrame.channels() - 1][curFrame.channels() - 1][out_cn - 1](prevFrame, curFrame, Ftd, Fbd, foreground,
433 static const func_t funcs[4][4][4] =
456 funcs[prevFrame.channels() - 1][curFrame.channels() - 1][background.channels() - 1](
  /external/opencv3/modules/cudastereo/src/
util.cpp 69 static const func_t funcs[2][4] =
85 funcs[dst_cn == 4][disp.type()](disp, xyz, Q.ptr<float>(), StreamAccessor::getStream(stream));
  /external/opencv3/modules/cudawarping/src/
remap.cpp 67 static const func_t funcs[6][4] = local
86 const func_t func = funcs[src.depth()][src.channels() - 1];
resize.cpp 62 static const func_t funcs[6][4] = local
95 const func_t func = funcs[src.depth()][src.channels() - 1];
  /external/opencv3/modules/cudawarping/test/
test_remap.cpp 106 static const func_t* funcs[] = {nearest_funcs, linear_funcs, cubic_funcs}; local
108 funcs[interpolation][src.depth()](src, xmap, ymap, dst, borderType, borderVal);
test_warp_affine.cpp 167 static const func_t* funcs[] = {nearest_funcs, linear_funcs, cubic_funcs}; local
170 funcs[interpolation][src.depth()](src, M, dsize, dst, borderType, borderVal);
175 funcs[interpolation][src.depth()](src, iM, dsize, dst, borderType, borderVal);
test_warp_perspective.cpp 170 static const func_t* funcs[] = {nearest_funcs, linear_funcs, cubic_funcs}; local
173 funcs[interpolation][src.depth()](src, M, dsize, dst, borderType, borderVal);
178 funcs[interpolation][src.depth()](src, iM, dsize, dst, borderType, borderVal);
  /external/pdfium/core/include/fxge/
fx_freetype.h 160 #define FXFT_Outline_Decompose(outline, funcs, params) \
161 FT_Outline_Decompose(outline, funcs, params)
  /external/skia/src/ports/
SkFontHost_FreeType_common.cpp 548 FT_Outline_Funcs funcs; local
550 funcs.move_to = move_proc;
551 funcs.line_to = line_proc;
552 funcs.conic_to = quad_proc;
553 funcs.cubic_to = cubic_proc;
554 funcs.shift = 0;
555 funcs.delta = 0;
557 FT_Error err = FT_Outline_Decompose(&face->glyph->outline, &funcs, path);
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_poly.cpp 109 [16mult 11add 2sqrt 1cubic 2quadratic=74flops 8funcs]*/
181 [16mult 11add 2sqrt 1cubic 2quadratic=74flops 8funcs]*/
  /prebuilts/gdb/darwin-x86/lib/python2.7/
SimpleXMLRPCServer.py 170 self.funcs = {}
220 self.funcs[name] = function
229 self.funcs.update({'system.listMethods' : self.system_listMethods,
239 self.funcs.update({'system.multicall' : self.system_multicall})
283 methods = self.funcs.keys()
320 if method_name in self.funcs:
321 method = self.funcs[method_name]
402 func = self.funcs[method]
  /prebuilts/gdb/linux-x86/lib/python2.7/
SimpleXMLRPCServer.py 170 self.funcs = {}
220 self.funcs[name] = function
229 self.funcs.update({'system.listMethods' : self.system_listMethods,
239 self.funcs.update({'system.multicall' : self.system_multicall})
283 methods = self.funcs.keys()
320 if method_name in self.funcs:
321 method = self.funcs[method_name]
402 func = self.funcs[method]
  /prebuilts/go/darwin-x86/src/go/types/testdata/
expr2.src 237 func funcs() {
244 // funcs are not otherwise comparable
  /prebuilts/go/darwin-x86/src/syscall/
mksyscall_windows.go 596 Funcs []*Fn
605 Funcs: make([]*Fn, 0),
620 for _, f := range src.Funcs {
655 src.Funcs = append(src.Funcs, f)
683 t := template.Must(template.New("main").Funcs(funcMap).Parse(srcTemplate))
744 {{range .Funcs}}{{if .HasStringParam}}{{template "helperbody" .}}{{end}}{{template "funcbody" .}}{{end}}
752 {{define "funcnames"}}{{range .Funcs}} proc{{.DLLFuncName}} = mod{{.DLLName}}.NewProc("{{.DLLFuncName}}")
  /prebuilts/go/linux-x86/src/go/types/testdata/
expr2.src 237 func funcs() {
244 // funcs are not otherwise comparable
  /prebuilts/go/linux-x86/src/syscall/
mksyscall_windows.go 596 Funcs []*Fn
605 Funcs: make([]*Fn, 0),
620 for _, f := range src.Funcs {
655 src.Funcs = append(src.Funcs, f)
683 t := template.Must(template.New("main").Funcs(funcMap).Parse(srcTemplate))
744 {{range .Funcs}}{{if .HasStringParam}}{{template "helperbody" .}}{{end}}{{template "funcbody" .}}{{end}}
752 {{define "funcnames"}}{{range .Funcs}} proc{{.DLLFuncName}} = mod{{.DLLName}}.NewProc("{{.DLLFuncName}}")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SimpleXMLRPCServer.py 170 self.funcs = {}
220 self.funcs[name] = function
229 self.funcs.update({'system.listMethods' : self.system_listMethods,
239 self.funcs.update({'system.multicall' : self.system_multicall})
283 methods = self.funcs.keys()
320 if method_name in self.funcs:
321 method = self.funcs[method_name]
402 func = self.funcs[method]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SimpleXMLRPCServer.py 170 self.funcs = {}
220 self.funcs[name] = function
229 self.funcs.update({'system.listMethods' : self.system_listMethods,
239 self.funcs.update({'system.multicall' : self.system_multicall})
283 methods = self.funcs.keys()
320 if method_name in self.funcs:
321 method = self.funcs[method_name]
402 func = self.funcs[method]
  /toolchain/binutils/binutils-2.25/libiberty/
pex-djgpp.c 57 const struct pex_funcs funcs = variable in typeref:struct:pex_funcs
77 return pex_init_common (flags, pname, tempbase, &funcs);
configure     [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gsubgpos-private.hh 1044 ContextClosureFuncs funcs; member in struct:OT::ContextClosureLookupContext
1050 ContextCollectGlyphsFuncs funcs; member in struct:OT::ContextCollectGlyphsLookupContext
1056 ContextApplyFuncs funcs; member in struct:OT::ContextApplyLookupContext
1541 ContextClosureFuncs funcs; member in struct:OT::ChainContextClosureLookupContext
1547 ContextCollectGlyphsFuncs funcs; member in struct:OT::ChainContextCollectGlyphsLookupContext
1553 ContextApplyFuncs funcs; member in struct:OT::ChainContextApplyLookupContext
    [all...]
  /frameworks/rs/
rsElement.cpp 40 e->getContext()->mHal.funcs.freeRuntimeMem(ptr);
251 void* allocMem = rsc->mHal.funcs.allocRuntimeMem(sizeof(Element), 0);
315 void* allocMem = rsc->mHal.funcs.allocRuntimeMem(sizeof(Element), 0);
395 if (rsc->mHal.funcs.element.updateCachedObject != nullptr) {
396 rsc->mHal.funcs.element.updateCachedObject(rsc, this, (rs_element *)dstObj);
  /art/test/970-iface-super-resolution-generated/util-src/
generate_smali.py 388 funcs = '\n'.join(map(lambda a: self.TEST_FUNC_TEMPLATE.format(iface = a.get_name(),
401 test_funcs = funcs,
428 {funcs}
527 funcs = self.DEFAULT_FUNC_TEMPLATE.format(class_name = self.class_name)
529 funcs = self.ABSTRACT_FUNC_TEMPLATE
534 funcs = funcs,

Completed in 5112 milliseconds

1 2 3 4 5 6 7 891011>>