Home
last modified time | relevance | path

Searched refs:wfe (Results 1 – 25 of 1394) sorted by relevance

12345678910>>...56

/dports/devel/py-moto/moto-2.2.16/tests/test_swf/models/
H A Dtest_workflow_execution.py94 sd = wfe.to_short_dict()
111 md = wfe.to_medium_dict()
136 fd = wfe.to_full_dict()
166 fd = wfe.to_full_dict()
196 ld = wfe.to_list_dict()
238 wfe.start()
396 wfe.start()
484 wfe.terminate()
502 wfe.start()
528 wfe = auto_start_decision_tasks(wfe)
[all …]
H A Dtest_decision_task.py10 wfe = make_workflow_execution()
11 dt = DecisionTask(wfe, 123)
19 wfe = make_workflow_execution()
20 wft = wfe.workflow_type
21 dt = DecisionTask(wfe, 123)
38 wfe = make_workflow_execution()
39 dt = DecisionTask(wfe, 123)
57 wfe.start()
72 wfe.start()
73 task = DecisionTask(wfe, 123)
[all …]
H A Dtest_activity_task.py15 wfe = make_workflow_execution()
21 workflow_execution=wfe,
44 wfe = make_workflow_execution()
51 workflow_execution=wfe,
69 wfe = make_workflow_execution()
78 workflow_execution=wfe,
90 wfe = make_workflow_execution()
132 wfe.start()
153 wfe.start()
161 workflow_execution=wfe,
[all …]
/dports/devel/py-moto/moto-2.2.16/moto/swf/models/
H A D__init__.py49 wfe._process_timeouts()
66 wfe for wfe in domain.workflow_executions if wfe.execution_status == "OPEN"
92 wfe
185 wfe = WorkflowExecution(
189 wfe.start()
191 return wfe
269 if not wfe.open:
273 wfe.workflow_id, wfe.run_id
360 if not wfe.open:
364 wfe.workflow_id, wfe.run_id
[all …]
H A Ddomain.py91 wfe = _all[0] if _all else None
93 if raise_if_closed and wfe and wfe.execution_status == "CLOSED":
94 wfe = None
95 if not wfe and raise_if_none:
107 return wfe
/dports/emulators/mednafen/mednafen/src/sexyal/drivers/
H A Dwasapi.cpp223 WAVEFORMATEXTENSIBLE wfe; in SexyALI_WASAPI_Open() local
324 memset(&wfe, 0, sizeof(wfe)); in SexyALI_WASAPI_Open()
332 wfe.Format.nBlockAlign = (wfe.Format.nChannels * wfe.Format.wBitsPerSample) / 8; in SexyALI_WASAPI_Open()
333 wfe.Format.nAvgBytesPerSec = wfe.Format.nSamplesPerSec * wfe.Format.nBlockAlign; in SexyALI_WASAPI_Open()
334 wfe.Format.cbSize = 0; in SexyALI_WASAPI_Open()
343 if(wfe.Format.nChannels >= 2) in SexyALI_WASAPI_Open()
367 …T_MAKE(SEXYAL_ENC_PCM_SINT, wfe.Format.wBitsPerSample >> 3, wfe.Samples.wValidBitsPerSample, wfe.F… in SexyALI_WASAPI_Open()
369 format->channels = wfe.Format.nChannels; in SexyALI_WASAPI_Open()
390 …periodicity = ((int64)tmp_bs * 10000 * 1000 + (wfe.Format.nSamplesPerSec >> 1)) / wfe.Format.nSamp… in SexyALI_WASAPI_Open()
425 …w->Buffer = (uint8*)calloc(wfe.Format.wBitsPerSample / 8 * wfe.Format.nChannels, des_local_bufsize… in SexyALI_WASAPI_Open()
[all …]
H A Dwasapish.cpp200 WAVEFORMATEXTENSIBLE wfe; in SexyALI_WASAPISH_Open() local
310 if(wfe.Format.cbSize > 22) in SexyALI_WASAPISH_Open()
311 wfe.Format.cbSize = 22; in SexyALI_WASAPISH_Open()
313 wfe.Format.wBitsPerSample = 16; in SexyALI_WASAPISH_Open()
314 wfe.Format.nBlockAlign = (wfe.Format.nChannels * wfe.Format.wBitsPerSample) / 8; in SexyALI_WASAPISH_Open()
315 wfe.Format.nAvgBytesPerSec = wfe.Format.nSamplesPerSec * wfe.Format.nBlockAlign; in SexyALI_WASAPISH_Open()
319 wfe.Samples.wValidBitsPerSample = wfe.Format.wBitsPerSample; in SexyALI_WASAPISH_Open()
324 wfe.Format.wFormatTag = WAVE_FORMAT_PCM; in SexyALI_WASAPISH_Open()
330 format->rate = wfe.Format.nSamplesPerSec; in SexyALI_WASAPISH_Open()
333 format->channels = wfe.Format.nChannels; in SexyALI_WASAPISH_Open()
[all …]
/dports/audio/xmp/xmp-4.1.0/src/
H A Dsound_win32.c78 WAVEFORMATEX wfe; in init() local
93 wfe.wFormatTag = WAVE_FORMAT_PCM; in init()
94 wfe.wBitsPerSample = options->format & XMP_FORMAT_8BIT ? 8 : 16; in init()
95 wfe.nChannels = options->format & XMP_FORMAT_MONO ? 1 : 2; in init()
96 wfe.nSamplesPerSec = options->rate; in init()
97 wfe.nAvgBytesPerSec = wfe.nSamplesPerSec * wfe.nChannels * in init()
98 wfe.wBitsPerSample / 8; in init()
99 wfe.nBlockAlign = wfe.nChannels * wfe.wBitsPerSample / 8; in init()
101 res = waveOutOpen(&hwaveout, WAVE_MAPPER, &wfe, (DWORD_PTR) wave_callback, in init()
/dports/devel/py-moto/moto-2.2.16/tests/test_swf/
H A Dutils.py88 def auto_start_decision_tasks(wfe): argument
89 wfe.schedule_decision_task = wfe.schedule_and_start_decision_task
90 return wfe
107 wfe = conn.start_workflow_execution(
110 conn.run_id = wfe["runId"]
132 wfe = client.start_workflow_execution(
137 client.run_id = wfe["runId"]
/dports/audio/libmikmod/libmikmod-3.3.11.1/drivers/
H A Ddrv_win.c104 WAVEFORMATEX wfe; in WIN_Init() local
114 wfe.wFormatTag=(md_mode&DMODE_FLOAT)? WAVE_FORMAT_IEEE_FLOAT : WAVE_FORMAT_PCM; in WIN_Init()
115 wfe.nChannels=md_mode&DMODE_STEREO?2:1; in WIN_Init()
116 wfe.nSamplesPerSec=md_mixfreq; in WIN_Init()
117 wfe.nAvgBytesPerSec=md_mixfreq*samplesize; in WIN_Init()
118 wfe.nBlockAlign=samplesize; in WIN_Init()
119 wfe.wBitsPerSample=(md_mode&DMODE_FLOAT)?32:(md_mode&DMODE_16BITS)?16:8; in WIN_Init()
120 wfe.cbSize=sizeof(wfe); in WIN_Init()
122 mmr=waveOutOpen(&hwaveout,WAVE_MAPPER,&wfe,(DWORD_PTR)WIN_CallBack,0,CALLBACK_FUNCTION); in WIN_Init()
/dports/multimedia/vlc/vlc-3.0.16/modules/access/
H A Dwasapi.c134 const WAVEFORMATEXTENSIBLE *wfe = (void *)wf; in vlc_FromWave() local
137 if (wfe->dwChannelMask & SPEAKER_FRONT_LEFT) in vlc_FromWave()
139 if (wfe->dwChannelMask & SPEAKER_FRONT_RIGHT) in vlc_FromWave()
141 if (wfe->dwChannelMask & SPEAKER_FRONT_CENTER) in vlc_FromWave()
143 if (wfe->dwChannelMask & SPEAKER_LOW_FREQUENCY) in vlc_FromWave()
146 assert(popcount(wfe->dwChannelMask) == wf->nChannels); in vlc_FromWave()
148 if (IsEqualIID(&wfe->SubFormat, &KSDATAFORMAT_SUBTYPE_PCM)) in vlc_FromWave()
153 switch (wfe->Samples.wValidBitsPerSample) in vlc_FromWave()
170 if (wfe->Samples.wValidBitsPerSample == 24) in vlc_FromWave()
176 if (wfe->Samples.wValidBitsPerSample == 16) in vlc_FromWave()
[all …]
/dports/comms/cwstudio/cwstudio-0.9.6/src/
H A Dplay.c83 WAVEFORMATEXTENSIBLE wfe; variable
466 wfe.Format.wFormatTag = WAVE_FORMAT_EXTENSIBLE; in cwstudio_play()
467 wfe.Format.nChannels = sample->channels; in cwstudio_play()
468 wfe.Format.wBitsPerSample = sample->bits; in cwstudio_play()
469 wfe.Samples.wValidBitsPerSample = sample->bits; in cwstudio_play()
470 wfe.Format.nSamplesPerSec = sample->samplerate; in cwstudio_play()
471 wfe.Format.nBlockAlign = wfe.Format.nChannels * wfe.Format.wBitsPerSample / 8; in cwstudio_play()
472 wfe.Format.nAvgBytesPerSec = wfe.Format.nSamplesPerSec * wfe.Format.nBlockAlign; in cwstudio_play()
473 wfe.Format.cbSize = 22; in cwstudio_play()
474 wfe.dwChannelMask = spks[sample->channels - 1]; in cwstudio_play()
[all …]
/dports/devel/py-moto/moto-2.2.16/tests/test_swf/responses/
H A Dtest_workflow_executions.py88 wfe = conn.signal_workflow_execution(
92 wfe = conn.describe_workflow_execution("test-domain", run_id, "uid-abcd1234")
94 wfe["openCounts"]["openDecisionTasks"].should.equal(2)
107 wfe = client.signal_workflow_execution(
115 wfe = client.describe_workflow_execution(
119 wfe["openCounts"]["openDecisionTasks"].should.equal(2)
199 wfe["executionInfo"]["execution"]["workflowId"].should.equal("uid-abcd1234")
200 wfe["executionInfo"]["executionStatus"].should.equal("OPEN")
214 wfe = client.describe_workflow_execution(
217 wfe["executionInfo"]["execution"]["workflowId"].should.equal("uid-abcd1234")
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/test/MC/ARM/
H A Darm11-hint-instr.s22 wfe
36 @ CHECK-ERROR-V6: wfe
55 @ CHECK-ARM: wfe @ encoding: [0x02,0xf0,0x20,0xe3]
65 @ CHECK-THUMB: wfe @ encoding: [0x20,0xbf]
77 @ CHECK-V6M: wfe @ encoding: [0x20,0xbf]
/dports/devel/llvm10/llvm-10.0.1.src/test/MC/ARM/
H A Darm11-hint-instr.s22 wfe
36 @ CHECK-ERROR-V6: wfe
55 @ CHECK-ARM: wfe @ encoding: [0x02,0xf0,0x20,0xe3]
65 @ CHECK-THUMB: wfe @ encoding: [0x20,0xbf]
77 @ CHECK-V6M: wfe @ encoding: [0x20,0xbf]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/test/MC/ARM/
H A Darm11-hint-instr.s22 wfe
36 @ CHECK-ERROR-V6: wfe
55 @ CHECK-ARM: wfe @ encoding: [0x02,0xf0,0x20,0xe3]
65 @ CHECK-THUMB: wfe @ encoding: [0x20,0xbf]
77 @ CHECK-V6M: wfe @ encoding: [0x20,0xbf]
/dports/devel/llvm11/llvm-11.0.1.src/test/MC/ARM/
H A Darm11-hint-instr.s22 wfe
36 @ CHECK-ERROR-V6: wfe
55 @ CHECK-ARM: wfe @ encoding: [0x02,0xf0,0x20,0xe3]
65 @ CHECK-THUMB: wfe @ encoding: [0x20,0xbf]
77 @ CHECK-V6M: wfe @ encoding: [0x20,0xbf]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/test/MC/ARM/
H A Darm11-hint-instr.s22 wfe
36 @ CHECK-ERROR-V6: wfe
55 @ CHECK-ARM: wfe @ encoding: [0x02,0xf0,0x20,0xe3]
65 @ CHECK-THUMB: wfe @ encoding: [0x20,0xbf]
77 @ CHECK-V6M: wfe @ encoding: [0x20,0xbf]
/dports/devel/llvm90/llvm-9.0.1.src/test/MC/ARM/
H A Darm11-hint-instr.s22 wfe
36 @ CHECK-ERROR-V6: wfe
55 @ CHECK-ARM: wfe @ encoding: [0x02,0xf0,0x20,0xe3]
65 @ CHECK-THUMB: wfe @ encoding: [0x20,0xbf]
77 @ CHECK-V6M: wfe @ encoding: [0x20,0xbf]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/test/MC/ARM/
H A Darm11-hint-instr.s22 wfe
36 @ CHECK-ERROR-V6: wfe
55 @ CHECK-ARM: wfe @ encoding: [0x02,0xf0,0x20,0xe3]
65 @ CHECK-THUMB: wfe @ encoding: [0x20,0xbf]
77 @ CHECK-V6M: wfe @ encoding: [0x20,0xbf]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/test/MC/ARM/
H A Darm11-hint-instr.s22 wfe
36 @ CHECK-ERROR-V6: wfe
55 @ CHECK-ARM: wfe @ encoding: [0x02,0xf0,0x20,0xe3]
65 @ CHECK-THUMB: wfe @ encoding: [0x20,0xbf]
77 @ CHECK-V6M: wfe @ encoding: [0x20,0xbf]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/test/MC/ARM/
H A Darm11-hint-instr.s22 wfe
36 @ CHECK-ERROR-V6: wfe
55 @ CHECK-ARM: wfe @ encoding: [0x02,0xf0,0x20,0xe3]
65 @ CHECK-THUMB: wfe @ encoding: [0x20,0xbf]
77 @ CHECK-V6M: wfe @ encoding: [0x20,0xbf]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/test/MC/ARM/
H A Darm11-hint-instr.s22 wfe
36 @ CHECK-ERROR-V6: wfe
55 @ CHECK-ARM: wfe @ encoding: [0x02,0xf0,0x20,0xe3]
65 @ CHECK-THUMB: wfe @ encoding: [0x20,0xbf]
77 @ CHECK-V6M: wfe @ encoding: [0x20,0xbf]
/dports/devel/llvm80/llvm-8.0.1.src/test/MC/ARM/
H A Darm11-hint-instr.s22 wfe
36 @ CHECK-ERROR-V6: wfe
55 @ CHECK-ARM: wfe @ encoding: [0x02,0xf0,0x20,0xe3]
65 @ CHECK-THUMB: wfe @ encoding: [0x20,0xbf]
77 @ CHECK-V6M: wfe @ encoding: [0x20,0xbf]
/dports/graphics/llvm-mesa/llvm-13.0.1.src/test/MC/ARM/
H A Darm11-hint-instr.s22 wfe
36 @ CHECK-ERROR-V6: wfe
55 @ CHECK-ARM: wfe @ encoding: [0x02,0xf0,0x20,0xe3]
65 @ CHECK-THUMB: wfe @ encoding: [0x20,0xbf]
77 @ CHECK-V6M: wfe @ encoding: [0x20,0xbf]

12345678910>>...56