HomeSort by relevance Sort by last modified time
    Searched full:flavor (Results 1 - 25 of 488) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/host-tools/make-3.81/tests/scripts/functions/
flavor 2 $description = "Test the flavor function.";
13 $(info u $(flavor u))
14 $(info s $(flavor s))
15 $(info r $(flavor r))
20 $(info ra $(flavor ra))
21 $(info rc $(flavor rc))
26 $(info s $(flavor s))
27 $(info r $(flavor r))
  /external/lldb/source/Plugins/Process/Utility/
RegisterContextMach_arm.cpp 36 RegisterContextMach_arm::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr)
39 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count);
43 RegisterContextMach_arm::DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu)
46 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count);
50 RegisterContextMach_arm::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc)
53 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count);
57 RegisterContextMach_arm::DoReadDBG (lldb::tid_t tid, int flavor, DBG &dbg)
60 return ::thread_get_state(tid, flavor, (thread_state_t)&dbg, &count);
64 RegisterContextMach_arm::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr)
66 return ::thread_set_state(tid, flavor, (thread_state_t)&gpr, GPRWordCount)
    [all...]
RegisterContextMach_i386.cpp 34 RegisterContextMach_i386::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr)
37 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count);
41 RegisterContextMach_i386::DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu)
44 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count);
48 RegisterContextMach_i386::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc)
51 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count);
55 RegisterContextMach_i386::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr)
57 return ::thread_set_state(tid, flavor, (thread_state_t)&gpr, GPRWordCount);
61 RegisterContextMach_i386::DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu)
63 return ::thread_set_state(tid, flavor, (thread_state_t)&fpu, FPUWordCount)
    [all...]
RegisterContextMach_x86_64.cpp 34 RegisterContextMach_x86_64::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr)
37 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count);
41 RegisterContextMach_x86_64::DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu)
44 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count);
48 RegisterContextMach_x86_64::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc)
51 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count);
55 RegisterContextMach_x86_64::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr)
57 return ::thread_set_state(tid, flavor, (thread_state_t)&gpr, GPRWordCount);
61 RegisterContextMach_x86_64::DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu)
63 return ::thread_set_state(tid, flavor, (thread_state_t)&fpu, FPUWordCount)
    [all...]
RegisterContextMach_arm.h 32 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr);
35 DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu);
38 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
41 DoReadDBG (lldb::tid_t tid, int flavor, DBG &dbg);
44 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
47 DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu);
50 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
53 DoWriteDBG (lldb::tid_t tid, int flavor, const DBG &dbg);
RegisterContextMach_i386.h 31 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr);
34 DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu);
37 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
40 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
43 DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu);
46 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
RegisterContextMach_x86_64.h 31 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr);
34 DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu);
37 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
40 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
43 DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu);
46 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
RegisterContextDarwin_arm.h 208 GetError (int flavor, uint32_t err_idx) const
212 switch (flavor)
227 SetError (int flavor, uint32_t err_idx, int err)
231 switch (flavor)
288 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr)
294 DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu) = 0;
297 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) = 0;
300 DoReadDBG (lldb::tid_t tid, int flavor, DBG &dbg) = 0;
303 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) = 0;
306 DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu) = 0
    [all...]
RegisterContextDarwin_i386.h 162 GetError (int flavor, uint32_t err_idx) const
166 switch (flavor)
180 SetError (int flavor, uint32_t err_idx, int err)
184 switch (flavor)
233 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) = 0;
236 DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu) = 0;
239 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) = 0;
242 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) = 0;
245 DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu) = 0;
248 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) = 0
    [all...]
RegisterContextDarwin_x86_64.h 166 GetError (int flavor, uint32_t err_idx) const
170 switch (flavor)
184 SetError (int flavor, uint32_t err_idx, int err)
188 switch (flavor)
237 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) = 0;
240 DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu) = 0;
243 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) = 0;
246 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) = 0;
249 DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu) = 0;
252 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) = 0
    [all...]
  /external/opencv/cxcore/src/
_cxipp.h 62 #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 "_C2MR", 0/*CV_PLUGINS1(CV_PLUGIN_OPTCV)*/,
    [all...]
cxmean.cpp 239 #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, 1, arrtype, sumtype,
    [all...]
cxminmaxloc.cpp 86 #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...]
  /external/opencv/cv/src/
_cvipp.h 49 #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 "_C1IR", CV_PLUGINS1(CV_PLUGIN_IPPCV),
    [all...]
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
RegisterContextKDP_arm.h 35 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr);
38 DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu);
41 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
44 DoReadDBG (lldb::tid_t tid, int flavor, DBG &dbg);
47 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
50 DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu);
53 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
56 DoWriteDBG (lldb::tid_t tid, int flavor, const DBG &dbg);
RegisterContextKDP_i386.h 33 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr);
36 DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu);
39 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
42 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
45 DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu);
48 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
RegisterContextKDP_x86_64.h 34 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr);
37 DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu);
40 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
43 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
46 DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu);
49 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
RegisterContextKDP_arm.cpp 34 RegisterContextKDP_arm::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr)
50 RegisterContextKDP_arm::DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu)
66 RegisterContextKDP_arm::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc)
82 RegisterContextKDP_arm::DoReadDBG (lldb::tid_t tid, int flavor, DBG &dbg)
98 RegisterContextKDP_arm::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr)
114 RegisterContextKDP_arm::DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu)
130 RegisterContextKDP_arm::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc)
146 RegisterContextKDP_arm::DoWriteDBG (lldb::tid_t tid, int flavor, const DBG &dbg)
  /external/selinux/libsepol/cil/src/
cil_list.c 47 void cil_list_init(struct cil_list **list, enum cil_flavor flavor)
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)
107 item->flavor = flavor;
120 void cil_list_prepend(struct cil_list *list, enum cil_flavor flavor, void *data
    [all...]
cil_list.h 38 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);
  /external/llvm/utils/release/
test-release.sh 278 Flavor="$2"
282 case $Flavor in
296 echo "# Invalid flavor '$Flavor'"
308 echo "# Configuring llvm $Release-$RC $Flavor"
320 2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log
326 Flavor="$2"
330 if [ "$Flavor" = "Release-64" ]; then
335 echo "# Compiling llvm $Release-$RC $Flavor"
338 2>&1 | tee $LogDir/llvm.make-Phase$Phase-$Flavor.lo
    [all...]
  /external/harfbuzz_ng/test/api/
hb-test.h 174 const char *flavor,
177 char *path = g_strdup_printf ("%s/%s", test_path, flavor);
181 #define hb_test_add_flavor(Flavor, Func) hb_test_add_func (#Func, Flavor, Func)
196 const char *flavor,
200 char *path = g_strdup_printf ("%s/%s", test_path, flavor);
204 #define hb_test_add_data_flavor(UserData, Flavor, Func) hb_test_add_data_func_flavor (#Func, Flavor, UserData, Func)
236 const char *flavor,
243 char *path = g_strdup_printf ("%s/%s", test_path, flavor);
    [all...]
  /system/security/keystore-engine/
Android.mk 20 ifneq (,$(wildcard $(TOP)/external/boringssl/flavor.mk))
21 include $(TOP)/external/boringssl/flavor.mk
23 include $(TOP)/external/openssl/flavor.mk
  /external/clang/lib/Basic/
Warnings.cpp 36 diag::Flavor Flavor, StringRef Prefix,
38 StringRef Suggestion = DiagnosticIDs::getNearestOption(Flavor, Opt);
40 << (Flavor == diag::Flavor::WarningOrError ? 0 : 1) << (Prefix.str() += Opt)
89 const auto Flavor = diag::Flavor::WarningOrError;
126 Diags.setSeverityForAll(Flavor, diag::Severity::Ignored);
155 } else if (DiagIDs->getDiagnosticsInGroup(Flavor, Specifier, _Diags)) {
156 EmitUnknownDiagWarning(Diags, Flavor, "-Werror=", Specifier)
    [all...]
  /external/lldb/tools/debugserver/source/
DNBError.h 37 FlavorType flavor = Generic) :
39 m_flavor(flavor)
46 FlavorType Flavor() const { return m_flavor; }
70 void SetError(ValueType err, FlavorType flavor)
73 m_flavor = flavor;

Completed in 3551 milliseconds

1 2 3 4 5 6 7 8 91011>>