Searched refs:sw (Results 1 - 25 of 288) sorted by relevance

1234567891011>>

/external/valgrind/main/coregrind/m_dispatch/
H A Ddispatch-mips32-linux.S70 sw $31, 0($29)
73 sw $5, 4($29)
76 sw $16, 8($29)
77 sw $17, 12($29)
78 sw $18, 16($29)
79 sw $19, 20($29)
80 sw $20, 24($29)
81 sw $21, 28($29)
82 sw $22, 32($29)
83 sw
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DSwitchable.java7 void apply(Switch sw); argument
H A DEOF.java28 public void apply(Switch sw) argument
30 ((Analysis) sw).caseEOF(this);
H A DANoopCommand.java22 public void apply(Switch sw) argument
24 ((Analysis) sw).caseANoopCommand(this);
H A DANoopExpression.java22 public void apply(Switch sw) argument
24 ((Analysis) sw).caseANoopExpression(this);
H A DTAlt.java28 public void apply(Switch sw) argument
30 ((Analysis) sw).caseTAlt(this);
H A DTAnd.java28 public void apply(Switch sw) argument
30 ((Analysis) sw).caseTAnd(this);
H A DTArgWhitespace.java28 public void apply(Switch sw) argument
30 ((Analysis) sw).caseTArgWhitespace(this);
H A DTAssignment.java28 public void apply(Switch sw) argument
30 ((Analysis) sw).caseTAssignment(this);
H A DTAutoescape.java28 public void apply(Switch sw) argument
30 ((Analysis) sw).caseTAutoescape(this);
H A DTBang.java28 public void apply(Switch sw) argument
30 ((Analysis) sw).caseTBang(this);
/external/qemu/audio/
H A Daudio_template.h93 static void glue (audio_pcm_sw_free_resources_, TYPE) (SW *sw)
95 if (sw->buf) {
96 qemu_free (sw->buf);
99 if (sw->rate) {
100 st_rate_stop (sw->rate);
103 sw->buf = NULL;
104 sw->rate = NULL;
107 static int glue (audio_pcm_sw_alloc_resources_, TYPE) (SW *sw)
112 samples = sw->hw->samples;
114 samples = ((int64_t) sw
347 SW *sw; local
[all...]
H A Daudio.c42 #define SW_NAME(sw) (sw)->name ? (sw)->name : "unknown"
851 SWVoiceOut *sw; local
854 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
855 if (sw->active) {
869 SWVoiceOut *sw local
899 SWVoiceOut *sw; local
942 SWVoiceIn *sw; local
988 audio_pcm_sw_get_rpos_in(SWVoiceIn *sw) argument
1008 audio_pcm_sw_read(SWVoiceIn *sw, void *buf, int size) argument
1066 SWVoiceOut *sw; local
1106 audio_pcm_sw_write(SWVoiceOut *sw, void *buf, int size) argument
1263 AUD_write(SWVoiceOut *sw, void *buf, int size) argument
1281 AUD_read(SWVoiceIn *sw, void *buf, int size) argument
1299 AUD_get_buffer_size_out(SWVoiceOut *sw) argument
1304 AUD_set_active_out(SWVoiceOut *sw, int on) argument
1351 AUD_set_active_in(SWVoiceIn *sw, int on) argument
1392 audio_get_avail(SWVoiceIn *sw) argument
1415 audio_get_free(SWVoiceOut *sw) argument
1449 SWVoiceOut *sw = &sc->sw; local
1481 SWVoiceOut *sw; local
1591 SWVoiceIn *sw; local
1622 SWVoiceOut *sw; local
2171 SWVoiceOut *sw = cap->hw.sw_head.lh_first, *sw1; local
2197 AUD_set_volume_out(SWVoiceOut *sw, int mute, uint8_t lvol, uint8_t rvol) argument
2206 AUD_set_volume_in(SWVoiceIn *sw, int mute, uint8_t lvol, uint8_t rvol) argument
[all...]
H A Daudio.h109 SWVoiceOut *sw,
116 void AUD_close_out (QEMUSoundCard *card, SWVoiceOut *sw);
117 int AUD_write (SWVoiceOut *sw, void *pcm_buf, int size);
118 int AUD_get_buffer_size_out (SWVoiceOut *sw);
119 void AUD_set_active_out (SWVoiceOut *sw, int on);
120 int AUD_is_active_out (SWVoiceOut *sw);
122 void AUD_init_time_stamp_out (SWVoiceOut *sw, QEMUAudioTimeStamp *ts);
123 uint64_t AUD_get_elapsed_usec_out (SWVoiceOut *sw, QEMUAudioTimeStamp *ts);
125 void AUD_set_volume_out (SWVoiceOut *sw, int mute, uint8_t lvol, uint8_t rvol);
126 void AUD_set_volume_in (SWVoiceIn *sw, in
[all...]
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyscall-mips32-linux.S81 sw $4, 52($29)
82 sw $5, 48($29)
83 sw $6, 44($29)
84 sw $7, 40($29)
85 sw $31, 36($29)
86 sw $30, 32($29)
87 sw $16, 28($29)
88 sw $17, 24($29)
89 sw $18, 20($29)
90 sw
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DStringWriterTest.java25 StringWriter sw; field in class:StringWriterTest
41 sw.close();
52 sw.flush();
53 sw.write('c');
54 assertEquals("Failed to flush char", "c", sw.toString());
64 sw.write("This is a test string");
65 StringBuffer sb = sw.getBuffer();
75 sw.write("This is a test string");
77 "This is a test string", sw.toString());
87 sw
[all...]
H A DBufferedWriterTest.java32 Support_StringWriter sw; field in class:BufferedWriterTest
40 sw = new Support_StringWriter();
41 bw = new BufferedWriter(sw);
42 sw.write("Hi");
43 assertEquals("Constructor failed", "Hi", sw.toString());
91 assertTrue("Write after close", !sw.toString().equals(testString));
124 assertTrue("Bytes written without flush", sw.toString().equals(""));
126 assertEquals("Bytes not flushed", "This should not cause a flush", sw
139 assertTrue("Incorrect string written: " + sw.toString(), sw
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertPathValidatorSpi.java38 private int sw = 0; field in class:MyCertPathValidatorSpi
42 ++sw;
44 if ((sw % 2) == 0) {
49 if ((sw % 3) == 0) {
/external/openssl/crypto/bn/asm/
H A Dmips-mont.S28 sw $30,(14-1)*4($29)
29 sw $23,(14-2)*4($29)
30 sw $22,(14-3)*4($29)
31 sw $21,(14-4)*4($29)
32 sw $20,(14-5)*4($29)
33 sw $19,(14-6)*4($29)
34 sw $18,(14-7)*4($29)
35 sw $17,(14-8)*4($29)
36 sw $16,(14-9)*4($29)
98 sw
[all...]
/external/valgrind/main/helgrind/tests/
H A Dlocked_vs_unlocked1.c26 int sw = argc > 1; local
29 if (pthread_create(&child1, NULL, child_fn, (void*)(long)(sw ? 0 : 1))) {
34 if (pthread_create(&child2, NULL, child_fn, (void*)(long)(sw ? 1 : 0))) {
/external/valgrind/main/none/tests/amd64/
H A Dinsn_mmx.def28 packssdw mm.sd[12345,123456] mm.sd[-12345,-123456] => 1.sw[-12345,-32768,12345,32767]
29 packssdw m64.sd[12345,123456] mm.sd[-12345,-123456] => 1.sw[-12345,-32768,12345,32767]
30 packsswb mm.sw[123,-123,1234,-1234] mm.sw[21,-21,321,-321] => 1.sb[21,-21,127,-128,123,-123,127,-128]
31 packsswb m64.sw[123,-123,1234,-1234] mm.sw[21,-21,321,-321] => 1.sb[21,-21,127,-128,123,-123,127,-128]
32 packuswb mm.sw[123,-123,1234,-1234] mm.sw[21,-21,321,-321] => 1.ub[21,0,255,0,123,0,255,0]
33 packuswb m64.sw[123,-123,1234,-1234] mm.sw[2
[all...]
/external/libppp/src/
H A Dmain.c210 ProcessArgs(int argc, char **argv, struct switches *sw) argument
216 memset(sw, '\0', sizeof *sw);
217 sw->mode = PHYS_INTERACTIVE;
218 sw->unit = -1;
229 sw->nat = 1;
239 sw->nat = 1;
250 sw->unit = atoi(argv[arg]);
252 sw->unit = atoi(cp + 4);
254 sw
309 struct switches sw; local
[all...]
/external/chromium/base/synchronization/
H A Dwaitable_event_posix.cc172 SyncWaiter sw; local
173 sw.lock()->Acquire();
175 Enqueue(&sw);
184 if (sw.fired() || (finite_time && current_time >= end_time)) {
185 const bool return_value = sw.fired();
189 // and @sw would accept it, however we will still return false, so the
191 // Disable which makes sw::Fire return false.
192 sw.Disable();
193 sw.lock()->Release();
196 kernel_->Dequeue(&sw,
244 SyncWaiter sw; local
[all...]
/external/llvm/utils/
H A Dfindoptdiff95 for sw in $all_switches ; do
96 echo -n " $sw"
97 switches="$switches $sw"
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DTemplateSyntaxTree.java39 public void apply(Switch sw) { argument
40 root.apply(sw);

Completed in 1575 milliseconds

1234567891011>>