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

1234567

/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DRegisterContextKDP_arm.h35 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);
H A DRegisterContextKDP_i386.h33 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);
H A DRegisterContextKDP_x86_64.h34 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);
H A DRegisterContextKDP_arm.cpp34 RegisterContextKDP_arm::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) argument
50 RegisterContextKDP_arm::DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu) argument
66 RegisterContextKDP_arm::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument
82 RegisterContextKDP_arm::DoReadDBG (lldb::tid_t tid, int flavor, DBG &dbg) argument
98 RegisterContextKDP_arm::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) argument
114 RegisterContextKDP_arm::DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu) argument
130 RegisterContextKDP_arm::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) argument
146 RegisterContextKDP_arm::DoWriteDBG (lldb::tid_t tid, int flavor, const DBG &dbg) argument
H A DRegisterContextKDP_i386.cpp34 RegisterContextKDP_i386::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) argument
50 RegisterContextKDP_i386::DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu) argument
66 RegisterContextKDP_i386::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument
82 RegisterContextKDP_i386::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) argument
98 RegisterContextKDP_i386::DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu) argument
114 RegisterContextKDP_i386::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) argument
H A DRegisterContextKDP_x86_64.cpp34 RegisterContextKDP_x86_64::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) argument
50 RegisterContextKDP_x86_64::DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu) argument
66 RegisterContextKDP_x86_64::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument
82 RegisterContextKDP_x86_64::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) argument
98 RegisterContextKDP_x86_64::DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu) argument
114 RegisterContextKDP_x86_64::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) argument
/external/lldb/source/Plugins/Process/Utility/
H A DRegisterContextMach_arm.h32 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);
H A DRegisterContextMach_arm.cpp36 RegisterContextMach_arm::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) argument
39 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count);
43 RegisterContextMach_arm::DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu) argument
46 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count);
50 RegisterContextMach_arm::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument
53 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count);
57 RegisterContextMach_arm::DoReadDBG (lldb::tid_t tid, int flavor, DBG &dbg) argument
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) argument
66 return ::thread_set_state(tid, flavor, (thread_state_
70 DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu) argument
76 DoWriteEXC(lldb::tid_t tid, int flavor, const EXC &exc) argument
82 DoWriteDBG(lldb::tid_t tid, int flavor, const DBG &dbg) argument
[all...]
H A DRegisterContextMach_i386.cpp34 RegisterContextMach_i386::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) argument
37 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count);
41 RegisterContextMach_i386::DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu) argument
44 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count);
48 RegisterContextMach_i386::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument
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) argument
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) argument
63 return ::thread_set_state(tid, flavor, (thread_state_
67 DoWriteEXC(lldb::tid_t tid, int flavor, const EXC &exc) argument
[all...]
H A DRegisterContextMach_x86_64.cpp34 RegisterContextMach_x86_64::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) argument
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) argument
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) argument
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) argument
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) argument
63 return ::thread_set_state(tid, flavor, (thread_state_
67 DoWriteEXC(lldb::tid_t tid, int flavor, const EXC &exc) argument
[all...]
H A DRegisterContextMach_i386.h31 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);
H A DRegisterContextMach_x86_64.h31 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);
H A DRegisterContextDarwin_i386.h162 GetError (int flavor, uint32_t err_idx) const argument
166 switch (flavor)
180 SetError (int flavor, uint32_t err_idx, int err) argument
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, cons
[all...]
H A DRegisterContextDarwin_x86_64.h166 GetError (int flavor, uint32_t err_idx) const argument
170 switch (flavor)
184 SetError (int flavor, uint32_t err_idx, int err) argument
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, cons
[all...]
H A DRegisterContextDarwin_arm.h208 GetError (int flavor, uint32_t err_idx) const argument
212 switch (flavor)
227 SetError (int flavor, uint32_t err_idx, int err) argument
231 switch (flavor)
288 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) argument
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, cons
[all...]
/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...]
/external/chromium_org/chrome/installer/util/
H A Duser_experiment.h37 int flavor; // The flavor index for this experiment. member in struct:installer::ExperimentDetails
46 // If |flavor| is -1, then a flavor will be selected at random. |experiment|
49 bool CreateExperimentDetails(int flavor, ExperimentDetails* experiment);
60 void InactiveUserToastExperiment(int flavor,
/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...]
/external/lldb/tools/debugserver/source/
H A DDNBError.h37 FlavorType flavor = Generic) :
39 m_flavor(flavor)
70 void SetError(ValueType err, FlavorType flavor) argument
73 m_flavor = flavor;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DExecutionContextSelector.js29 if (!WebInspector.context.flavor(WebInspector.Target))
39 var currentExecutionContext = WebInspector.context.flavor(WebInspector.ExecutionContext);
44 if (WebInspector.context.flavor(WebInspector.Target) === target && targets.length)
64 var currentContext = WebInspector.context.flavor(WebInspector.ExecutionContext);
87 if (!WebInspector.context.flavor(WebInspector.ExecutionContext))
97 if (WebInspector.context.flavor(WebInspector.ExecutionContext) === executionContext)
125 var executionContext = WebInspector.context.flavor(WebInspector.ExecutionContext);
/external/stlport/src/
H A Dcxa.c43 long int flavor; member in struct:exit_function
77 new->flavor = ef_cxa;
122 if (l->fns[i].flavor == ef_free)
144 /* Mark entry as used, but we don't know the flavor now. */
146 l->fns[i].flavor = ef_us;
175 if ( (d == NULL || d == f->func.cxa.dso_handle) && (f->flavor == ef_cxa) ) {
176 f->flavor = ef_free;
/external/lldb/include/lldb/Core/
H A DDisassembler.h257 // FindPlugin should be lax about the flavor string (it is too annoying to have various internal uses of the
258 // disassembler fail because the global flavor string gets set wrong. Instead, if you get a flavor string you
262 FindPlugin (const ArchSpec &arch, const char *flavor, const char *plugin_name);
264 // This version will use the value in the Target settings if flavor is NULL;
266 FindPluginForTarget(const lldb::TargetSP target_sp, const ArchSpec &arch, const char *flavor, const char *plugin_name);
271 const char *flavor,
278 const char *flavor,
289 const char *flavor,
301 const char *flavor,
[all...]
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Dninja.py83 def QuoteShellArgument(arg, flavor):
90 if flavor == 'win':
95 def Define(d, flavor):
98 if flavor == 'win':
102 return QuoteShellArgument(ninja_syntax.escape('-D' + d), flavor)
163 def UsesToc(self, flavor):
169 if flavor == 'win' or self.bundle:
173 def PreActionInput(self, flavor):
176 if self.UsesToc(flavor):
217 output_file, toplevel_build, output_file_name, flavor,
[all...]

Completed in 495 milliseconds

1234567