HomeSort by relevance Sort by last modified time
    Searched refs:phase (Results 76 - 100 of 513) sorted by null

1 2 34 5 6 7 8 91011>>

  /hardware/ti/omap3/dspbridge/libbridge/inc/
dbdcd.h 189 * phase: phase to obtain correct input library
207 IN NLDR_PHASE phase);
219 * phase: Phase to obtain correct input library
236 IN NLDR_PHASE phase);
249 * phase: Which phase to load
266 IN NLDR_PHASE phase,
  /external/chromium_org/ppapi/api/dev/
ppb_trace_event_dev.idl 41 [in] int8_t phase,
59 [in] int8_t phase,
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorClient.h 49 typedef void (*TraceEventCallback)(char phase, const unsigned char*, const char* name, unsigned long long id,
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/test/
gensig.c 78 double phase; local
79 phase = omega * k;
81 fft[k].Im = factor * size / 2 * (sin(phase) / (1 - cos(phase)));
  /external/chromium_org/third_party/skia/src/utils/
SkDashPathPriv.h 16 * inputed phase and intervals. If adjustedPhase is passed in, then the phase will be
18 * If adjustedPhase is NULL then it is assumed phase is already between 0 and intervalLength
20 void CalcDashParameters(SkScalar phase, const SkScalar intervals[], int32_t count,
  /external/skia/src/utils/
SkDashPathPriv.h 16 * inputed phase and intervals. If adjustedPhase is passed in, then the phase will be
18 * If adjustedPhase is NULL then it is assumed phase is already between 0 and intervalLength
20 void CalcDashParameters(SkScalar phase, const SkScalar intervals[], int32_t count,
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
PathDashPathEffect_Delegate.java 65 /*package*/ static long nativeCreate(long native_path, float advance, float phase,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
PaintInfo.h 57 , phase(newPhase)
113 PaintPhase phase; member in struct:WebCore::PaintInfo
RenderLineBoxList.cpp 199 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection && paintInfo.phase != PaintPhaseOutline
200 && paintInfo.phase != PaintPhaseSelfOutline && paintInfo.phase != PaintPhaseChildOutlines && paintInfo.phase != PaintPhaseTextClip
201 && paintInfo.phase != PaintPhaseMask)
227 if (info.phase == PaintPhaseOutline || info.phase == PaintPhaseSelfOutline || info.phase == PaintPhaseChildOutlines)
    [all...]
RenderReplaced.cpp 117 if (hasBoxDecorations() && (paintInfo.phase == PaintPhaseForeground || paintInfo.phase == PaintPhaseSelection))
120 if (paintInfo.phase == PaintPhaseMask) {
125 if (paintInfo.phase == PaintPhaseClippingMask && (!hasLayer() || !layer()->hasCompositedClippingMask()))
129 if ((paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) && style()->outlineWidth())
132 if (paintInfo.phase != PaintPhaseForeground && paintInfo.phase != PaintPhaseSelection && !canHaveChildren() && paintInfo.phase != PaintPhaseClippingMask)
139 if (paintInfo.phase == PaintPhaseSelection)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
FFTFrame.cpp 134 // Now, deal with phase
143 // Unwrap phase deltas
195 double phase = arg(c); local
197 double deltaPhase = phase - lastPhase;
198 lastPhase = phase;
210 // Note how we invert the phase delta wrt frequency since this is how group delay is defined
242 double phase = arg(c); local
244 phase += i * phaseAdj;
246 Complex c2 = complexFromMagnitudePhase(mag, phase);
287 double phase = atan2(realP[i], imagP[i]) local
    [all...]
  /frameworks/av/services/audioflinger/
AudioResamplerFirProcess.h 173 * ProcessL() calls ProcessBase() with TFUNC = InterpNull, for fixed/locked phase.
174 * Process() calls ProcessBase() with TFUNC = InterpCompute, for interpolated phase.
282 * @param phase is the fractional distance between input frames for interpolation:
283 * phase >= 0 && phase < phaseWrapLimit. It can be thought of as a rational fraction
284 * of phase/phaseWrapLimit.
289 * @param coefShift gives the bit alignment of the polyphase index in the phase parameter.
314 * In between calls to filterCoefficient, the phase is incremented by phaseIncrement, where
317 * The filter polyphase index is given by indexP = phase >> coefShift. Due to
323 * lerpP = phase << 32 - coefShift >> 1; // for 32 bit unsigned phase multipl
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/timeline/
trace_event_importer.py 115 'C' phase events.
174 'E phase event without a matching B phase event.')
185 'The value of the E phase event will be used.')
243 phase = event.get('ph', None)
244 if phase == 'B' or phase == 'E':
246 elif phase == 'X':
248 elif phase == 'S' or phase == 'F' or phase == 'T'
    [all...]
  /external/chromium_org/net/base/
net_log.h 51 // The 'phase' of an event trace (whether it marks the beginning or end
126 EventPhase phase,
133 const EventPhase phase; member in struct:net::NetLog::EntryData
148 EventPhase phase() const { return data_->phase; } function in class:net::NetLog::Entry
312 EventPhase phase,
345 void AddEntry(NetLog::EventType type, NetLog::EventPhase phase) const;
347 NetLog::EventPhase phase,
350 // Convenience methods that call AddEntry with a fixed "capture phase"
net_log_unittest.h 42 if (expected_phase != entry.phase) {
44 << "Actual phase: " << entry.phase
45 << ". Expected phase: " << expected_phase << ".";
140 entry.phase == expected_phase)
160 entry.phase == expected_phase)
  /external/chromium_org/chrome/browser/renderer_host/
chrome_render_widget_host_view_mac_delegate_browsertest.cc 68 void SendWheelEvent(int dx, int dy, blink::WebMouseWheelEvent::Phase phase) {
71 event.phase = phase;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationNode.h 65 enum Phase {
82 Phase phase() const { return ensureCalculated().phase; } function in class:WebCore::AnimationNode
153 Phase phase; member in struct:WebCore::AnimationNode::CalculatedTiming
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_dft.c 66 double phase = -2*M_PI*bin*k/nfft; local
67 double re = cos(phase);
68 double im = sin(phase);
test_unit_mdct.c 64 double phase = 2*M_PI*(k+.5+.25*nfft)*(bin+.5)/nfft; local
65 double re = cos(phase);
94 double phase = 2*M_PI*(bin+.5+.25*nfft)*(k+.5)/nfft; local
95 double re = cos(phase);
  /external/libopus/celt/tests/
test_unit_dft.c 66 double phase = -2*M_PI*bin*k/nfft; local
67 double re = cos(phase);
68 double im = sin(phase);
  /hardware/intel/common/libmix/videodecoder/securevideo/clovertrail/
VideoDecoderAVCSecure.cpp 354 uint32_t left = 0, data = 0, phase = 0; local
357 /* Meaning of phase:
367 phase = 0;
370 while ((left > 0) && (phase < 3)) {
371 // Check if the address is 32-bit aligned & phase=0, if thats the case we can check 4 bytes instead of one byte at a time.
372 if (((((uint32_t)ptr) & 0x3) == 0) && (phase == 0)) {
390 // At this point either data is not on a 32-bit boundary or phase > 0 so we look at one byte at a time
393 phase++;
394 if (phase > 2) {
396 phase = 2
    [all...]
  /hardware/intel/common/libmix/videodecoder/securevideo/merrplus/
VideoDecoderAVCSecure.cpp 357 uint32_t left = 0, data = 0, phase = 0; local
360 /* Meaning of phase:
370 phase = 0;
373 while ((left > 0) && (phase < 3)) {
374 // Check if the address is 32-bit aligned & phase=0, if thats the case we can check 4 bytes instead of one byte at a time.
375 if (((((uint32_t)ptr) & 0x3) == 0) && (phase == 0)) {
393 // At this point either data is not on a 32-bit boundary or phase > 0 so we look at one byte at a time
396 phase++;
397 if (phase > 2) {
399 phase = 2
    [all...]
  /art/runtime/gc/space/
large_object_space_test.cc 48 for (size_t phase = 0; phase < 2; ++phase) {
70 // Free 1 / 2 the allocations the first phase, and all the second phase.
71 size_t limit = !phase ? requests.size() / 2 : 0;
  /external/chromium_org/content/common/
devtools_messages.h 122 IPC_STRUCT_MEMBER(int, phase)
  /external/chromium_org/third_party/WebKit/public/web/
WebDevToolsAgentClient.h 86 typedef void (*TraceEventCallback)(char phase, const unsigned char*, const char* name, unsigned long long id,

Completed in 1216 milliseconds

1 2 34 5 6 7 8 91011>>