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

1 2 3 45 6 7 8 91011>>

  /external/opencv3/modules/cudaarithm/src/cuda/
minmax.cu 90 static const func_t funcs[] =
112 const func_t func = funcs[src.depth()];
161 static const func_t funcs[] =
183 const func_t func = funcs[src.depth()];
norm.cu 96 static const func_t funcs[] =
110 const func_t func = funcs[normType];
164 static const func_t funcs[] =
183 const func_t func = funcs[src.depth()];
sum.cu 110 static const func_t funcs[7][4] =
131 const func_t func = funcs[src_depth][channels - 1];
155 static const func_t funcs[7][4] =
176 const func_t func = funcs[src_depth][channels - 1];
200 static const func_t funcs[7][4] =
221 const func_t func = funcs[src_depth][channels - 1];
absdiff_scalar.cu 92 static const func_t funcs[] =
107 funcs[depth](src, val[0], dst, stream);
  /external/opencv3/modules/cudawarping/src/
pyramids.cpp 71 static const func_t funcs[6][4] =
85 const func_t func = funcs[src.depth()][src.channels() - 1];
111 static const func_t funcs[6][4] =
125 const func_t func = funcs[src.depth()][src.channels() - 1];
  /external/opencv3/modules/java/
check-tests.py 158 funcs = parser.get_not_tested() variable in class:JavaParser
159 if funcs:
160 print "NOT TESTED methods:\n\t", "\n\t".join(sorted(funcs))
162 print "Not tested methods found:", len(funcs)
  /external/opencv3/modules/photo/src/
denoising.cuda.cpp 86 static const func_t funcs[4] = { nlm_bruteforce_gpu<uchar>, nlm_bruteforce_gpu<uchar2>, nlm_bruteforce_gpu<uchar3>, 0/*nlm_bruteforce_gpu<uchar4>,*/ };
92 const func_t func = funcs[src.channels() - 1];
140 static const nlm_fast_t funcs[] = { nlm_fast_gpu<uchar>, nlm_fast_gpu<uchar2>, nlm_fast_gpu<uchar3>, 0};
145 funcs[src.channels()-1](src_hdr, dst, buffer, search_window, block_window, h, StreamAccessor::getStream(stream));
  /external/vboot_reference/host/lib/include/
host_common.h 12 * Host is allowed direct use of stdlib funcs such as malloc() and free(),
  /frameworks/rs/
rsScriptC_LibGL.cpp 218 const char *text = (const char *)rsc->mHal.funcs.allocation.lock1D(rsc, a);
221 rsc->mHal.funcs.allocation.unlock1D(rsc, a);
248 const char *text = (const char *)rsc->mHal.funcs.allocation.lock1D(rsc, a);
253 rsc->mHal.funcs.allocation.unlock1D(rsc, a);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
DocXMLRPCServer.py 26 def markup(self, text, escape=None, funcs={}, classes={}, methods={}):
58 results.append(self.namelink(name, methods, funcs, classes))
68 funcs={}, classes={}, methods={}, cl=None):
105 docstring, self.preformat, funcs, classes, methods)
128 contents.append(self.docroutine(value, key, funcs=fdict))
178 if method_name in self.funcs:
179 method = self.funcs[method_name]
  /prebuilts/gdb/linux-x86/lib/python2.7/
DocXMLRPCServer.py 26 def markup(self, text, escape=None, funcs={}, classes={}, methods={}):
58 results.append(self.namelink(name, methods, funcs, classes))
68 funcs={}, classes={}, methods={}, cl=None):
105 docstring, self.preformat, funcs, classes, methods)
128 contents.append(self.docroutine(value, key, funcs=fdict))
178 if method_name in self.funcs:
179 method = self.funcs[method_name]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 26 def markup(self, text, escape=None, funcs={}, classes={}, methods={}):
58 results.append(self.namelink(name, methods, funcs, classes))
68 funcs={}, classes={}, methods={}, cl=None):
105 docstring, self.preformat, funcs, classes, methods)
128 contents.append(self.docroutine(value, key, funcs=fdict))
178 if method_name in self.funcs:
179 method = self.funcs[method_name]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 26 def markup(self, text, escape=None, funcs={}, classes={}, methods={}):
58 results.append(self.namelink(name, methods, funcs, classes))
68 funcs={}, classes={}, methods={}, cl=None):
105 docstring, self.preformat, funcs, classes, methods)
128 contents.append(self.docroutine(value, key, funcs=fdict))
178 if method_name in self.funcs:
179 method = self.funcs[method_name]
  /external/libdrm/freedreno/kgsl/
kgsl_pipe.c 111 static const struct fd_pipe_funcs funcs = { variable in typeref:struct:fd_pipe_funcs
120 return pipe->funcs == &funcs;
243 pipe->funcs = &funcs;
  /external/mesa3d/src/mesa/state_tracker/
st_context.c 218 struct dd_function_table funcs; local
225 memset(&funcs, 0, sizeof(funcs));
226 st_init_driver_functions(&funcs);
228 ctx = _mesa_create_context(api, visual, shareCtx, &funcs, NULL);
  /external/skia/gm/
recordopts.cpp 138 TestVariantSequence funcs[] = { local
152 for (size_t k = 0; k < SK_ARRAY_COUNT(funcs); ++k) {
155 TestVariantSequence drawTestSequence = funcs[k];
195 for (size_t k = 0; k < SK_ARRAY_COUNT(funcs); ++k) {
196 TestVariantSequence drawTestSequence = funcs[k];
  /prebuilts/go/darwin-x86/src/html/template/
clone_test.go 171 funcs := FuncMap{"customFunc": func() (string, error) {
176 uncloned := Must(New("").Funcs(funcs).Parse("{{customFunc}}"))
181 toClone := Must(New("").Funcs(funcs).Parse("{{customFunc}}"))
  /prebuilts/go/linux-x86/src/html/template/
clone_test.go 171 funcs := FuncMap{"customFunc": func() (string, error) {
176 uncloned := Must(New("").Funcs(funcs).Parse("{{customFunc}}"))
181 toClone := Must(New("").Funcs(funcs).Parse("{{customFunc}}"))
  /prebuilts/go/darwin-x86/src/text/template/parse/
parse.go 26 funcs []map[string]interface{}
50 func Parse(name, text, leftDelim, rightDelim string, funcs ...map[string]interface{}) (treeSet map[string]*Tree, err error) {
54 _, err = t.Parse(text, leftDelim, rightDelim, treeSet, funcs...)
124 func New(name string, funcs ...map[string]interface{}) *Tree {
127 funcs: funcs,
208 func (t *Tree) startParse(funcs []map[string]interface{}, lex *lexer) {
212 t.funcs = funcs
219 t.funcs = ni
    [all...]
  /prebuilts/go/linux-x86/src/text/template/parse/
parse.go 26 funcs []map[string]interface{}
50 func Parse(name, text, leftDelim, rightDelim string, funcs ...map[string]interface{}) (treeSet map[string]*Tree, err error) {
54 _, err = t.Parse(text, leftDelim, rightDelim, treeSet, funcs...)
124 func New(name string, funcs ...map[string]interface{}) *Tree {
127 funcs: funcs,
208 func (t *Tree) startParse(funcs []map[string]interface{}, lex *lexer) {
212 t.funcs = funcs
219 t.funcs = ni
    [all...]
  /external/libdrm/freedreno/
freedreno_bo.c 68 bo = dev->funcs->bo_from_handle(dev, size, handle);
195 ret = dev->funcs->bo_new_handle(dev, size, flags, &handle);
350 bo->funcs->destroy(bo);
409 ret = bo->funcs->offset(bo, &offset);
427 return bo->funcs->cpu_prep(bo, pipe, op);
432 bo->funcs->cpu_fini(bo);
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/type1/
t1gload.c 80 error = inc->funcs->get_glyph_data( inc->object,
93 error = decoder->funcs.parse_charstrings(
100 if ( !error && inc && inc->funcs->get_glyph_metrics )
110 error = inc->funcs->get_glyph_metrics( inc->object,
141 face->root.internal->incremental_interface->funcs->free_glyph_data(
503 face->root.internal->incremental_interface->funcs->free_glyph_data(
  /external/pdfium/third_party/freetype/src/type1/
t1gload.c 80 error = inc->funcs->get_glyph_data( inc->object,
93 error = decoder->funcs.parse_charstrings(
100 if ( !error && inc && inc->funcs->get_glyph_metrics )
110 error = inc->funcs->get_glyph_metrics( inc->object,
141 face->root.internal->incremental_interface->funcs->free_glyph_data(
503 face->root.internal->incremental_interface->funcs->free_glyph_data(
  /prebuilts/go/darwin-x86/src/cmd/doc/
pkg.go 99 docPkg.Funcs = append(docPkg.Funcs, typ.Funcs...)
224 pkg.funcSummary(pkg.doc.Funcs)
276 func (pkg *Package) funcSummary(funcs []*doc.Func) {
277 for _, fun := range funcs {
322 // findFuncs finds the doc.Funcs that describes the symbol.
323 func (pkg *Package) findFuncs(symbol string) (funcs []*doc.Func) {
324 for _, fun := range pkg.doc.Funcs {
326 funcs = append(funcs, fun
    [all...]
  /prebuilts/go/linux-x86/src/cmd/doc/
pkg.go 99 docPkg.Funcs = append(docPkg.Funcs, typ.Funcs...)
224 pkg.funcSummary(pkg.doc.Funcs)
276 func (pkg *Package) funcSummary(funcs []*doc.Func) {
277 for _, fun := range funcs {
322 // findFuncs finds the doc.Funcs that describes the symbol.
323 func (pkg *Package) findFuncs(symbol string) (funcs []*doc.Func) {
324 for _, fun := range pkg.doc.Funcs {
326 funcs = append(funcs, fun
    [all...]

Completed in 4397 milliseconds

1 2 3 45 6 7 8 91011>>