HomeSort by relevance Sort by last modified time
    Searched refs:immediate (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/v8/src/
code.h 36 // either registers or immediate values. Used to make sure that the
43 explicit ParameterCount(int immediate)
44 : reg_(no_reg), immediate_(immediate) { }
53 int immediate() const { function in class:v8::internal::BASE_EMBEDDED
  /frameworks/base/media/libeffects/testlibs/
AudioPeakingFilter.h 93 // enabled again. Does not introduce artifacts, unless immediate is set.
94 // immediate Whether to apply change abruptly (ignored if filter is
96 void commit(bool immediate = false);
108 // introduce artifacts, unless immediate is set.
109 // immediate Whether to apply change abruptly.
110 void enable(bool immediate = false) { mBiquad.enable(immediate); }
113 // immediate is set.
114 // immediate Whether to apply change abruptly.
115 void disable(bool immediate = false) { mBiquad.disable(immediate);
    [all...]
AudioShelvingFilter.h 87 // enabled again. Does not introduce artifacts, unless immediate is set.
88 // immediate Whether to apply change abruptly (ignored if filter is
90 void commit(bool immediate = false);
102 // introduce artifacts, unless immediate is set.
103 // immediate Whether to apply change abruptly.
104 void enable(bool immediate = false) { mBiquad.enable(immediate); }
107 // immediate is set.
108 // immediate Whether to apply change abruptly.
109 void disable(bool immediate = false) { mBiquad.disable(immediate);
    [all...]
AudioBiquadFilter.h 33 // are called without the immediate flag set, the filter smoothly transitions
64 // If called when filter is disabled, will have no immediate effect, but the
67 // immediate If true, transitions to new coefficients smoothly, without
70 void setCoefs(const audio_coef_t coefs[NUM_COEFS], bool immediate = false);
82 // immediate If true, transitions to new state smoothly, without
85 void enable(bool immediate = false);
88 // immediate If true, transitions to new state smoothly, without
91 void disable(bool immediate = false);
AudioEqualizer.h 174 // enabled again. Does not introduce artifacts, unless immediate is set.
175 // immediate Whether to apply change abruptly (ignored if filter is
177 void commit(bool immediate = false);
189 // introduce artifacts, unless immediate is set.
190 // immediate Whether to apply change abruptly.
191 void enable(bool immediate = false);
194 // immediate is set.
195 // immediate Whether to apply change abruptly.
196 void disable(bool immediate = false);
AudioEqualizer.cpp 216 void AudioEqualizer::commit(bool immediate) {
217 LOGV("AudioEqualizer::commit(immediate=%d)", immediate);
218 mpLowShelf->commit(immediate);
220 mpPeakingFilters[i].commit(immediate);
222 mpHighShelf->commit(immediate);
236 void AudioEqualizer::enable(bool immediate) {
237 LOGV("AudioEqualizer::enable(immediate=%d)", immediate);
238 mpLowShelf->enable(immediate);
    [all...]
AudioPeakingFilter.cpp 89 void AudioPeakingFilter::commit(bool immediate) {
102 mBiquad.setCoefs(coefs, immediate);
AudioShelvingFilter.cpp 91 void AudioShelvingFilter::commit(bool immediate) {
106 mBiquad.setCoefs(coefs, immediate);
AudioBiquadFilter.cpp 55 void AudioBiquadFilter::setCoefs(const audio_coef_t coefs[NUM_COEFS], bool immediate) {
58 if (UNLIKELY(immediate)) {
72 void AudioBiquadFilter::enable(bool immediate) {
73 if (UNLIKELY(immediate)) {
81 void AudioBiquadFilter::disable(bool immediate) {
82 if (UNLIKELY(immediate)) {
  /external/webkit/Source/WebCore/platform/
HostWindow.h 41 // Requests the host invalidate the window, not the contents. If immediate is true do so synchronously, otherwise async.
42 virtual void invalidateWindow(const IntRect& updateRect, bool immediate) = 0;
44 // Requests the host invalidate the contents and the window. If immediate is true do so synchronously, otherwise async.
45 virtual void invalidateContentsAndWindow(const IntRect& updateRect, bool immediate) = 0;
51 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate) = 0;
  /system/core/libpixelflinger/codeflinger/
ARMAssemblerInterface.cpp 36 uint32_t immediate, uint32_t& rot, uint32_t& imm)
39 imm = immediate;
58 if (((imm>>(rot<<1)) | (imm<<(32-(rot<<1)))) != immediate)
66 bool ARMAssemblerInterface::isValidImmediate(uint32_t immediate)
69 return buildImmediate(immediate, rot, imm) == 0;
72 uint32_t ARMAssemblerInterface::imm(uint32_t immediate)
75 int err = buildImmediate(immediate, rot, imm);
78 "immediate %08x cannot be encoded",
79 immediate);
82 "immediate (%08x) encoding bogus!"
    [all...]
  /external/skia/src/animator/
SkAnimateActive.h 35 bool draw() { return immediate(false); }
36 bool enable() { return immediate(true); }
49 bool immediate(bool enable);
80 SkMSec fMaxTime; // greatest of all animation durations; only used by immediate mode
  /packages/apps/Contacts/tests/src/com/android/contacts/calllog/
CallLogAdapterTest.java 97 // Since there is nothing in the cache, it is an immediate request.
98 assertTrue("should be immediate", request.immediate);
129 // Since there is something in the cache, it is not an immediate request.
130 assertFalse("should not be immediate", request.immediate);
159 // Since there is something in the cache, it is not an immediate request.
160 assertFalse("should not be immediate", request.immediate);
200 public final boolean immediate; field in class:CallLogAdapterTest.TestCallLogAdapter.Request
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.cpp 164 /// translateImmediate - Appends an immediate operand to an MCInst.
167 /// @param immediate - The immediate value to append.
170 static void translateImmediate(MCInst &mcInst, uint64_t immediate,
173 // Sign-extend the immediate if necessary.
230 mcInst.addOperand(MCOperand::CreateReg(X86::XMM0 + (immediate >> 4)));
233 mcInst.addOperand(MCOperand::CreateReg(X86::YMM0 + (immediate >> 4)));
237 if(immediate & 0x80)
238 immediate |= ~(0xffull);
241 if(immediate & 0x8000
    [all...]
  /external/llvm/test/MC/ARM/
diagnostics.s 12 @ Out of range shift immediate values.
23 @ CHECK-ERRORS: error: invalid immediate shift value
26 @ CHECK-ERRORS: error: immediate shift value out of range
29 @ CHECK-ERRORS: error: immediate shift value out of range
32 @ CHECK-ERRORS: error: immediate shift value out of range
35 @ CHECK-ERRORS: error: immediate shift value out of range
38 @ CHECK-ERRORS: error: immediate shift value out of range
41 @ CHECK-ERRORS: error: immediate shift value out of range
44 @ CHECK-ERRORS: error: immediate shift value out of range
47 @ CHECK-ERRORS: error: immediate shift value out of rang
    [all...]
arm-memory-instructions.s 12 @ LDR (immediate)
59 @ LDRB (immediate)
113 @ LDRD (immediate)
151 @ LDRH (immediate)
200 @ LDRSB (immediate)
250 @ LDRSH (immediate)
299 @ STR (immediate)
341 @ STRB (immediate)
397 @ STRD (immediate)
435 @ STRH (immediate)
    [all...]
basic-thumb-instructions.s 31 @ ADD (immediate)
55 @ ADD (SP plus immediate)
91 @ ASR (immediate)
157 @ BL/BLX (immediate)
225 @ LDR (immediate)
264 @ LDRB (immediate)
284 @ LDRH (immediate)
314 @ LSL (immediate)
332 @ LSR (immediate)
350 @ MOV (immediate)
    [all...]
  /external/webkit/Source/WebKit/wx/WebKitSupport/
ChromeClientWx.cpp 348 void ChromeClientWx::invalidateWindow(const IntRect& rect, bool immediate)
350 if (immediate)
354 void ChromeClientWx::invalidateContentsForSlowScroll(const IntRect& rect, bool immediate)
356 invalidateContentsAndWindow(rect, immediate);
359 void ChromeClientWx::invalidateContentsAndWindow(const IntRect& rect, bool immediate)
366 if (immediate) {
  /external/bluetooth/glib/glib/
gthreadpool.h 86 /* Free the pool, immediate means, that all unprocessed items in the queue
88 * but after all threads in the pool are ready processing items. immediate
91 gboolean immediate,
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
ChromeClientWinCE.cpp 238 void ChromeClientWinCE::invalidateContentsAndWindow(const IntRect& updateRect, bool immediate)
243 if (immediate)
247 void ChromeClientWinCE::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate)
249 invalidateContentsAndWindow(updateRect, immediate);
  /frameworks/base/core/java/android/view/
ViewParent.java 240 * @param immediate True to forbid animated or delayed scrolling,
245 boolean immediate);
  /external/webkit/Source/WebCore/page/
Chrome.cpp 70 void Chrome::invalidateWindow(const IntRect& updateRect, bool immediate)
72 m_client->invalidateWindow(updateRect, immediate);
75 void Chrome::invalidateContentsAndWindow(const IntRect& updateRect, bool immediate)
77 m_client->invalidateContentsAndWindow(updateRect, immediate);
80 void Chrome::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate)
82 m_client->invalidateContentsForSlowScroll(updateRect, immediate);
  /external/replicaisland/src/com/replica/replicaisland/
LevelSystem.java 80 public void sendGameEvent(int type, int index, boolean immediate) {
81 if (immediate) {
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
ChromeClientEfl.cpp 486 void ChromeClientEfl::invalidateContents(const IntRect& updateRect, bool immediate)
491 void ChromeClientEfl::invalidateWindow(const IntRect& updateRect, bool immediate)
496 void ChromeClientEfl::invalidateContentsAndWindow(const IntRect& updateRect, bool immediate)
507 void ChromeClientEfl::invalidateContentsForSlowScroll(const IntRect& updateRect, bool immediate)
509 invalidateContentsAndWindow(updateRect, immediate);
  /external/llvm/utils/TableGen/
X86RecognizableInstr.cpp 631 // Operand 1 (optional) is an address or immediate.
632 // Operand 2 (optional) is an immediate.
636 HANDLE_OPTIONAL(immediate)
650 // Operand 3 (optional) is an immediate.
666 HANDLE_OPTIONAL(immediate)
672 // Operand 3 (optional) is an immediate.
687 HANDLE_OPTIONAL(immediate)
693 // Operand 3 (optional) is an immediate.
714 HANDLE_OPTIONAL(immediate)
720 // Operand 3 (optional) is an immediate
    [all...]

Completed in 1047 milliseconds

1 2 3 4 5