Searched refs:flavor (Results 1 - 25 of 121) sorted by relevance

12345

/external/opencv/cxcore/src/
H A D_cxipp.h62 #define IPCV_COPYSET( flavor, arrtype, scalartype ) \
63 IPCVAPI_EX( CvStatus, icvCopy##flavor, "ippiCopy" #flavor, \
68 IPCVAPI_EX( CvStatus, icvSet##flavor, "ippiSet" #flavor, \
147 #define IPCV_DEF_MEAN_MASK( flavor, srctype ) \
148 IPCVAPI_EX( CvStatus, icvMean_##flavor##_C1MR, \
149 "ippiMean_" #flavor "_C1MR", CV_PLUGINS1(CV_PLUGIN_IPPCV), \
152 IPCVAPI_EX( CvStatus, icvMean_##flavor##_C2MR, \
153 "ippiMean_" #flavor "_C2M
[all...]
H A Dcxmean.cpp239 #define ICV_IMPL_MEAN_BLOCK_FUNC_2D( flavor, cn, \
241 IPCVAPI_IMPL( CvStatus, icvMean_##flavor##_C##cn##MR, \
270 #define ICV_IMPL_MEAN_FUNC_2D( flavor, cn, \
272 IPCVAPI_IMPL( CvStatus, icvMean_##flavor##_C##cn##MR, \
291 #define ICV_IMPL_MEAN_BLOCK_FUNC_2D_COI( flavor, \
294 icvMean_##flavor##_CnCMR( const arrtype* src, int step, \
323 #define ICV_IMPL_MEAN_FUNC_2D_COI( flavor, \
326 icvMean_##flavor##_CnCMR( const arrtype* src, int step, \
345 #define ICV_IMPL_MEAN_BLOCK_ALL( flavor, arrtype, sumtype, \
347 ICV_IMPL_MEAN_BLOCK_FUNC_2D( flavor,
[all...]
H A Dcxminmaxloc.cpp86 #define ICV_DEF_MINMAXLOC_FUNC_2D( _toggle_, _fin_cast_macro_, flavor, \
89 icvMinMaxIndx_##flavor##_C1R,( const srctype* src, int step, CvSize size, \
104 #define ICV_DEF_MINMAXLOC_FUNC_2D_COI( _toggle_, _fin_cast_macro_, flavor, \
107 icvMinMaxIndx_##flavor##_CnCR( const srctype* src, int step, \
124 #define ICV_DEF_MINMAXLOC_ALL_INT( flavor, srctype, \
126 ICV_DEF_MINMAXLOC_FUNC_2D( CV_NOP, _fin_cast_macro_, flavor,\
129 flavor, srctype, int, extrtype )
145 #define ICV_DEF_MINMAXLOC_ALL_FLT( flavor, srctype, _toggle_, \
148 ICV_DEF_MINMAXLOC_FUNC_2D( _toggle_, _fin_cast_macro_, flavor, \
150 ICV_DEF_MINMAXLOC_FUNC_2D_COI( _toggle_, _fin_cast_macro_, flavor, \
[all...]
H A Dcxmeansdv.cpp373 #define ICV_DEF_MEAN_SDV_BLOCK_FUNC_2D( flavor, cn, arrtype, \
376 IPCVAPI_IMPL( CvStatus, icvMean_StdDev_##flavor##_C##cn##R, \
409 #define ICV_DEF_MEAN_SDV_FUNC_2D( flavor, cn, arrtype, \
411 IPCVAPI_IMPL( CvStatus, icvMean_StdDev_##flavor##_C##cn##R, \
432 #define ICV_DEF_MEAN_SDV_BLOCK_FUNC_2D_COI( flavor, arrtype, \
435 static CvStatus CV_STDCALL icvMean_StdDev_##flavor##_CnCR \
469 #define ICV_DEF_MEAN_SDV_FUNC_2D_COI( flavor, arrtype, \
471 static CvStatus CV_STDCALL icvMean_StdDev_##flavor##_CnCR \
492 #define ICV_DEF_MEAN_SDV_MASK_BLOCK_FUNC_2D( flavor, cn, \
495 IPCVAPI_IMPL( CvStatus, icvMean_StdDev_##flavor##_
[all...]
/external/selinux/libsepol/cil/src/
H A Dcil_list.h38 enum cil_flavor flavor; member in struct:cil_list
43 enum cil_flavor flavor; member in struct:cil_list_item
51 void cil_list_init(struct cil_list **list, enum cil_flavor flavor);
55 void cil_list_append(struct cil_list *list, enum cil_flavor flavor, void *data);
56 void cil_list_prepend(struct cil_list *list, enum cil_flavor flavor, void *data);
57 void cil_list_remove(struct cil_list *list, enum cil_flavor flavor, void *data, unsigned destroy_data);
58 struct cil_list_item *cil_list_insert(struct cil_list *list, struct cil_list_item *curr, enum cil_flavor flavor, void *data);
H A Dcil_find.h37 int cil_find_matching_avrule_in_ast(struct cil_tree_node *current, enum cil_flavor flavor, void *target, struct cil_list *matching, int match_self);
H A Dcil_list.c47 void cil_list_init(struct cil_list **list, enum cil_flavor flavor) argument
52 new_list->flavor = flavor;
67 if (item->flavor == CIL_LIST) {
83 new_item->flavor = CIL_NONE;
92 cil_destroy_data(&(*item)->data, (*item)->flavor);
98 void cil_list_append(struct cil_list *list, enum cil_flavor flavor, void *data) argument
107 item->flavor = flavor;
120 void cil_list_prepend(struct cil_list *list, enum cil_flavor flavor, voi argument
142 cil_list_insert(struct cil_list *list, struct cil_list_item *curr, enum cil_flavor flavor, void *data) argument
224 cil_list_remove(struct cil_list *list, enum cil_flavor flavor, void *data, unsigned destroy_data) argument
[all...]
H A Dcil_stack.h40 enum cil_flavor flavor; member in struct:cil_stack_item
56 void cil_stack_push(struct cil_stack *stack, enum cil_flavor flavor, void *data);
H A Dcil_stack.c70 void cil_stack_push(struct cil_stack *stack, enum cil_flavor flavor, void *data) argument
79 stack->stack[stack->pos].flavor = flavor;
H A Dcil_find.c39 enum cil_flavor flavor; member in struct:cil_args_find
47 enum cil_flavor f1 = ((struct cil_tree_node*)d1->nodes->head->data)->flavor;
48 enum cil_flavor f2 = ((struct cil_tree_node*)d2->nodes->head->data)->flavor;
80 enum cil_flavor f1 = ((struct cil_tree_node*)d1->nodes->head->data)->flavor;
81 enum cil_flavor f2 = ((struct cil_tree_node*)d2->nodes->head->data)->flavor;
118 if (n1->flavor != CIL_TYPEATTRIBUTE) {
165 if (curr->flavor == CIL_CLASSPERMS) {
194 if (curr->flavor == CIL_CLASSPERMS) {
222 if (curr->flavor == CIL_CLASSPERMS) {
351 if (node->flavor
370 cil_find_matching_avrule_in_ast(struct cil_tree_node *current, enum cil_flavor flavor, void *target, struct cil_list *matching, int match_self) argument
[all...]
H A Dcil_resolve_ast.c87 if (parent->flavor == CIL_CALL) {
90 } else if (parent->flavor == CIL_MACRO) {
114 cil_list_init(perm_datums, perm_strs->flavor);
117 if (curr->flavor == CIL_LIST) {
125 } else if (curr->flavor == CIL_STRING) {
139 cil_list_append(*perm_datums, curr->flavor, curr->data);
211 if (curr->flavor == CIL_CLASSPERMS) {
255 cil_list_append(cp->classperms, curr->flavor, curr->data);
393 if (result_node->flavor != CIL_TYPE) {
394 cil_log(CIL_ERR, "Type rule result must be a type [%d]\n",result_node->flavor);
451 cil_resolve_aliasactual(struct cil_tree_node *current, void *extra_args, enum cil_flavor flavor) argument
490 cil_resolve_alias_to_actual(struct cil_tree_node *current, enum cil_flavor flavor) argument
2459 cil_resolve_bounds(struct cil_tree_node *current, void *extra_args, enum cil_flavor flavor) argument
2713 enum cil_flavor flavor = ((struct cil_param*)item->data)->flavor; local
[all...]
H A Dcil_tree.h47 enum cil_flavor flavor; member in struct:cil_tree_node
/external/opencv/cv/src/
H A D_cvipp.h49 #define IPCV_COPY_BORDER( bordertype, flavor ) \
50 IPCVAPI_EX( CvStatus, icvCopy##bordertype##Border_##flavor##R, \
51 "ippiCopy" #bordertype "Border_" #flavor "R", CV_PLUGINS1(CV_PLUGIN_IPPI), \
55 IPCVAPI_EX( CvStatus, icvCopy##bordertype##Border_##flavor##IR, \
56 "ippiCopy" #bordertype "Border_" #flavor "IR", CV_PLUGINS1(CV_PLUGIN_IPPI), \
102 #define IPCV_ACCUM( flavor, arrtype, acctype ) \
103 IPCVAPI_EX( CvStatus, icvAdd_##flavor##_C1IR, \
104 "ippiAdd_" #flavor "_C1IR", CV_PLUGINS1(CV_PLUGIN_IPPCV), \
106 IPCVAPI_EX( CvStatus, icvAddSquare_##flavor##_C1IR, \
107 "ippiAddSquare_" #flavor "_C1I
[all...]
H A Dcvmorph.cpp46 #define IPCV_MORPHOLOGY_PTRS( morphtype, flavor ) \
47 icv##morphtype##Rect_##flavor##_C1R_t \
48 icv##morphtype##Rect_##flavor##_C1R_p = 0; \
49 icv##morphtype##Rect_GetBufSize_##flavor##_C1R_t \
50 icv##morphtype##Rect_GetBufSize_##flavor##_C1R_p = 0; \
51 icv##morphtype##Rect_##flavor##_C3R_t \
52 icv##morphtype##Rect_##flavor##_C3R_p = 0; \
53 icv##morphtype##Rect_GetBufSize_##flavor##_C3R_t \
54 icv##morphtype##Rect_GetBufSize_##flavor##_C3R_p = 0; \
55 icv##morphtype##Rect_##flavor##_C4R_
[all...]
/external/skia/infra/bots/
H A Dcompile_skia.py19 bot.flavor.compile(t)
H A Dcommon.py13 from flavor import android_flavor
14 from flavor import chromeos_flavor
15 from flavor import cmake_flavor
16 from flavor import coverage_flavor
17 from flavor import default_flavor
18 from flavor import ios_flavor
19 from flavor import valgrind_flavor
20 from flavor import xsan_flavor
100 self.flavor = self.get_flavor(self.bot_cfg)
122 """Return a flavor util
[all...]
/external/autotest/client/deps/glbench/src/
H A Dtexturetest.cc83 for (unsigned int flavor = 0; flavor < arraysize(kFlavors); flavor++) {
84 flavor_ = kFlavors[flavor];
92 kTexelFormatNames[fmt] + "_" + kFlavorNames[flavor] + "_" +
/external/selinux/libsepol/cil/test/unit/
H A Dtest_cil_list.c69 test_new_item->flavor = CIL_CLASS;
97 test_new_item->flavor = CIL_CLASS;
104 test_new_item->flavor = CIL_CLASS;
133 test_new_item->flavor = CIL_CLASS;
139 test_new_item->flavor = CIL_CLASS;
145 test_new_item->flavor = CIL_CLASS;
174 test_new_item->flavor = CIL_CLASS;
226 test_new_item->flavor = CIL_CLASS;
254 test_new_item->flavor = CIL_CLASS;
283 test_new_item->flavor
[all...]
H A Dtest_cil_tree.c48 CuAssertIntEquals(tc, 0, test_node->flavor);
66 CuAssertIntEquals(tc, 0, test_tree->root->flavor);
H A Dtest_cil.c70 test_ast_node->parent->flavor = CIL_BLOCK;
88 test_ast_node->parent->flavor = CIL_CLASS;
106 test_ast_node->parent->flavor = CIL_ROOT;
124 test_ast_node->parent->flavor = 1234567;
/external/selinux/libsepol/tests/
H A Dtest-common.h49 * mode: 0 = test the datum according to the flavor value in the call
50 1 = automatically detect the flavor value and test the datum accordingly
51 * flavor = flavor value if in mode 0
53 extern void test_alias_datum(policydb_t * p, char *id, char *primary_id, char mode, unsigned int flavor);
/external/bison/build-aux/
H A Dgit-version-gen167 *-*-*) : git describe is okay three part flavor ;;
169 : git describe is older two part flavor
/external/ltrace/
H A Dparam.c32 param->flavor = PARAM_FLAVOR_TYPE;
40 param->flavor = PARAM_FLAVOR_STOP;
56 param->flavor = PARAM_FLAVOR_PACK;
120 switch (param->flavor) {
141 assert(!"Unknown value of param flavor!");
/external/strace/
H A Dgit-version-gen171 *-*-*) : git describe is okay three part flavor ;;
173 : git describe is older two part flavor
/external/harfbuzz_ng/test/api/
H A Dhb-test.h174 const char *flavor,
177 char *path = g_strdup_printf ("%s/%s", test_path, flavor);
196 const char *flavor,
200 char *path = g_strdup_printf ("%s/%s", test_path, flavor);
236 const char *flavor,
243 char *path = g_strdup_printf ("%s/%s", test_path, flavor);
173 hb_test_add_func_flavor(const char *test_path, const char *flavor, hb_test_func_t test_func) argument
195 hb_test_add_data_func_flavor(const char *test_path, const char *flavor, gconstpointer test_data, hb_test_data_func_t test_func) argument
235 hb_test_add_vtable_flavor(const char *test_path, const char *flavor, gsize data_size, gconstpointer test_data, hb_test_fixture_func_t data_setup, hb_test_fixture_func_t data_test, hb_test_fixture_func_t data_teardown) argument

Completed in 963 milliseconds

12345