Home
last modified time | relevance | path

Searched refs:dwPos (Results 1 – 25 of 260) sorted by relevance

1234567891011

/dports/multimedia/audacious-plugins/audacious-plugins-4.1/src/xsf/
H A Dtagget.h8 int dwPos; in xsf_tagsearchraw() local
47 if (dwPos < dwSize && pData[dwPos] == 0x0a) dwPos++; in xsf_tagenumraw()
48 while (dwPos < dwSize && pData[dwPos] != 0x0a && 0x01 <= pData[dwPos] && pData[dwPos] <= 0x20) in xsf_tagenumraw()
49 dwPos++; in xsf_tagenumraw()
52 while (dwPos < dwSize && pData[dwPos] != 0x0a && pData[dwPos] != '=') in xsf_tagenumraw()
53 dwPos++; in xsf_tagenumraw()
58 if (dwPos < dwSize && pData[dwPos] == '=') dwPos++; in xsf_tagenumraw()
59 while (dwPos < dwSize && pData[dwPos] != 0x0a && 0x01 <= pData[dwPos] && pData[dwPos] <= 0x20) in xsf_tagenumraw()
60 dwPos++; in xsf_tagenumraw()
62 while (dwPos < dwSize && pData[dwPos] != 0x0a) in xsf_tagenumraw()
[all …]
/dports/audio/libmodplug/libmodplug-0.8.9.0/src/
H A Dload_dmf.cpp157 DWORD dwPos = dwMemPos + 11; in ReadDMF() local
176 dwPos += 8; in ReadDMF()
182 DWORD d = dwPos; in ReadDMF()
183 dwPos += pt->jmpsize; in ReadDMF()
320 if (d > dwPos) in ReadDMF()
367 if (d >= dwPos) break; in ReadDMF()
399 dwPos += namelen + 1; in ReadDMF()
425 DWORD dwPos = dwMemPos + 8; in ReadDMF() local
443 dwPos += 4; in ReadDMF()
458 dwPos += pksize; in ReadDMF()
[all …]
H A Dload_mdl.cpp253 dwPos = dwMemPos + 1; in ReadMDL()
271 data = lpStream + dwPos; in ReadMDL()
272 dwPos += 2 * ch; in ReadMDL()
289 dwPos = dwMemPos+1; in ReadMDL()
339 dwPos += 34 + 14*lpStream[dwPos+1]; in ReadMDL()
367 dwPos = dwMemPos+1; in ReadMDL()
377 pp = lpStream + dwPos + 41; in ReadMDL()
401 dwPos = dwMemPos; in ReadMDL()
409 dwPos += ReadSample(pins, flags, (LPSTR)pp, dwMemLength - dwPos); in ReadMDL()
413 dwPos += 4; in ReadMDL()
[all …]
H A Dload_dsm.cpp134 DWORD dwPos = dwMemPos; in ReadDSM() local
141 while ((row < 64) && (dwPos + 2 <= dwMemPos)) in ReadDSM()
143 UINT flag = lpStream[dwPos++]; in ReadDSM()
149 UINT note = lpStream[dwPos++]; in ReadDSM()
158 m[ch].instr = lpStream[dwPos++]; in ReadDSM()
163 m[ch].vol = lpStream[dwPos++]; in ReadDSM()
167 UINT command = lpStream[dwPos++]; in ReadDSM()
168 UINT param = lpStream[dwPos++]; in ReadDSM()
213 DWORD dwPos = dwMemPos + sizeof(DSMINST); in ReadDSM() local
227 ReadSample(psmp, smptype, (LPCSTR)(lpStream+dwPos), dwMemLength - dwPos); in ReadDSM()
H A Dmmcmp.cpp226 DWORD dwPos = 0; in MMCMP_Unpack() local
254 dwPos = dwSize; in MMCMP_Unpack()
278 if (newval < 0x10000 && dwPos < dwSize) in MMCMP_Unpack()
291 pDest[dwPos++] = bswapLE16(swapped); in MMCMP_Unpack()
293 if (dwPos >= dwSize) in MMCMP_Unpack()
298 dwPos = 0; in MMCMP_Unpack()
313 DWORD dwPos = 0; in MMCMP_Unpack() local
336 dwPos = dwSize; in MMCMP_Unpack()
368 pDest[dwPos++] = (BYTE)n; in MMCMP_Unpack()
370 if (dwPos >= dwSize) in MMCMP_Unpack()
[all …]
H A Dload_med.cpp783 UINT dwPos = bswapBE32(pdwTable[iSmp]); in ReadMed() local
784 if ((dwPos >= dwMemLength) || (dwPos + sizeof(MMDSAMPLEHEADER) >= dwMemLength)) continue; in ReadMed()
785 MMDSAMPLEHEADER *psdh = (MMDSAMPLEHEADER *)(lpStream + dwPos); in ReadMed()
792 LPSTR psdata = (LPSTR)(lpStream + dwPos + 6); in ReadMed()
820 UINT dwPos = bswapBE32(pdwTable[iBlk]); in ReadMed() local
821 if ((!dwPos) || (dwPos >= dwMemLength) || (dwPos >= dwMemLength - 8)) continue; in ReadMed()
832 LPBYTE s = (LPBYTE)(lpStream + dwPos + 2); in ReadMed()
834 if (maxlen + dwPos > dwMemLength - 2) break; in ReadMed()
855 const MMD1BLOCK *pmb = (MMD1BLOCK *)(lpStream + dwPos); in ReadMed()
898 LPBYTE s = (LPBYTE)(lpStream + dwPos + 8); in ReadMed()
[all …]
H A Dload_okt.cpp115 DWORD dwPos = dwMemPos + 10; in ReadOKT() local
124 for (UINT i=0; i<imax; i++, m++, dwPos+=4) in ReadOKT()
126 if (dwPos+4 > dwMemLength) break; in ReadOKT()
127 const BYTE *p = lpStream+dwPos; in ReadOKT()
H A Dload_it.cpp886 smppos[hsmp] = dwPos; in SaveIT()
896 patpos[npat] = dwPos; in SaveIT()
918 dwPos += 8; in SaveIT()
1036 dwPos += len; in SaveIT()
1241 DWORD dwPos = 0; in ITUnpack8Bit() local
1283 pDst[dwPos] = bTemp; in ITUnpack8Bit()
1286 dwPos++; in ITUnpack8Bit()
1289 } while (dwPos < d); in ITUnpack8Bit()
1324 DWORD dwPos = 0; in ITUnpack16Bit() local
1369 dwPos++; in ITUnpack16Bit()
[all …]
/dports/audio/sdl2_mixer/SDL2_mixer-2.0.4/external/libmodplug-0.8.9.0/src/
H A Dload_dmf.cpp157 DWORD dwPos = dwMemPos + 11; in check_supervise()
176 dwPos += 8; in check_supervise()
182 DWORD d = dwPos; in check_supervise()
183 dwPos += pt->jmpsize; in check_supervise()
320 if (d > dwPos) in check_supervise()
367 if (d >= dwPos) break; in check_supervise()
399 dwPos += namelen + 1; in check_supervise()
425 DWORD dwPos = dwMemPos + 8; in check_supervise()
443 dwPos += 4; in check_supervise()
458 dwPos += pksize; in check_supervise()
[all …]
H A Dload_mdl.cpp252 dwPos = dwMemPos + 1;
270 data = lpStream + dwPos;
271 dwPos += 2 * ch;
288 dwPos = dwMemPos+1;
338 dwPos += 34 + 14*lpStream[dwPos+1];
366 dwPos = dwMemPos+1;
376 pp = lpStream + dwPos + 41;
400 dwPos = dwMemPos;
408 dwPos += ReadSample(pins, flags, (LPSTR)pp, dwMemLength - dwPos);
412 dwPos += 4;
[all …]
H A Dload_dsm.cpp134 DWORD dwPos = dwMemPos;
141 while ((row < 64) && (dwPos + 2 <= dwMemPos))
143 UINT flag = lpStream[dwPos++];
149 UINT note = lpStream[dwPos++];
158 m[ch].instr = lpStream[dwPos++];
163 m[ch].vol = lpStream[dwPos++];
167 UINT command = lpStream[dwPos++];
168 UINT param = lpStream[dwPos++];
213 DWORD dwPos = dwMemPos + sizeof(DSMINST);
227 ReadSample(psmp, smptype, (LPCSTR)(lpStream+dwPos), dwMemLength - dwPos);
H A Dmmcmp.cpp227 DWORD dwPos = 0; in MMCMP_Unpack() local
255 dwPos = dwSize; in MMCMP_Unpack()
279 if (newval < 0x10000 && dwPos < dwSize) in MMCMP_Unpack()
292 pDest[dwPos++] = bswapLE16(swapped); in MMCMP_Unpack()
294 if (dwPos >= dwSize) in MMCMP_Unpack()
299 dwPos = 0; in MMCMP_Unpack()
314 DWORD dwPos = 0; in MMCMP_Unpack() local
337 dwPos = dwSize; in MMCMP_Unpack()
369 pDest[dwPos++] = (BYTE)n; in MMCMP_Unpack()
371 if (dwPos >= dwSize) in MMCMP_Unpack()
[all …]
H A Dload_med.cpp783 UINT dwPos = bswapBE32(pdwTable[iSmp]); in ReadMed() local
784 if ((dwPos >= dwMemLength) || (dwPos + sizeof(MMDSAMPLEHEADER) >= dwMemLength)) continue; in ReadMed()
785 MMDSAMPLEHEADER *psdh = (MMDSAMPLEHEADER *)(lpStream + dwPos); in ReadMed()
792 LPSTR psdata = (LPSTR)(lpStream + dwPos + 6); in ReadMed()
820 UINT dwPos = bswapBE32(pdwTable[iBlk]); in ReadMed() local
821 if ((!dwPos) || (dwPos >= dwMemLength) || (dwPos >= dwMemLength - 8)) continue; in ReadMed()
832 LPBYTE s = (LPBYTE)(lpStream + dwPos + 2); in ReadMed()
834 if (maxlen + dwPos > dwMemLength - 2) break; in ReadMed()
855 const MMD1BLOCK *pmb = (MMD1BLOCK *)(lpStream + dwPos); in ReadMed()
898 LPBYTE s = (LPBYTE)(lpStream + dwPos + 8); in ReadMed()
[all …]
H A Dload_okt.cpp115 DWORD dwPos = dwMemPos + 10; in ReadOKT() local
124 for (UINT i=0; i<imax; i++, m++, dwPos+=4) in ReadOKT()
126 if (dwPos+4 > dwMemLength) break; in ReadOKT()
127 const BYTE *p = lpStream+dwPos; in ReadOKT()
H A Dload_it.cpp885 smppos[hsmp] = dwPos;
895 patpos[npat] = dwPos;
917 dwPos += 8;
1035 dwPos += len;
1240 DWORD dwPos = 0;
1282 pDst[dwPos] = bTemp;
1285 dwPos++;
1288 } while (dwPos < d);
1323 DWORD dwPos = 0;
1368 dwPos++;
[all …]
/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/soundlib/
H A DContainerMMCMP.cpp227 uint32 dwPos = 0; in UnpackMMCMP() local
279 pDest[dwPos + 0] = static_cast<uint8>(newval >> 8); in UnpackMMCMP()
283 pDest[dwPos + 0] = static_cast<uint8>(newval & 0xFF); in UnpackMMCMP()
284 pDest[dwPos + 1] = static_cast<uint8>(newval >> 8); in UnpackMMCMP()
286 dwPos += 2; in UnpackMMCMP()
288 if(dwPos >= dwSize) in UnpackMMCMP()
291 dwPos = 0; in UnpackMMCMP()
315 uint32 dwPos = 0; in UnpackMMCMP() local
362 pDest[dwPos++] = static_cast<uint8>(n); in UnpackMMCMP()
364 if(dwPos >= dwSize) in UnpackMMCMP()
[all …]
/dports/emulators/hugo/hugo-2.12/
H A Dmix.c483 UInt16 dwPos = 0; in WriteBuffer() local
565 while ((dwPos < dwSize) && io.psg_da_count[ch]) in WriteBuffer()
589 dwPos += 2; in WriteBuffer()
593 dwPos++; in WriteBuffer()
605 if ((dwPos != dwSize) && (io.PSG[ch][PSG_DDA_REG] & PSG_DDA_DIRECT_ACCESS)) in WriteBuffer()
607 memset(buf, 0, dwSize - dwPos); in WriteBuffer()
656 while (dwPos < dwSize) in WriteBuffer()
669 dwPos++; in WriteBuffer()
726 while (dwPos < dwSize) in WriteBuffer()
740 dwPos += 2; in WriteBuffer()
[all …]
/dports/archivers/amigadepacker/amigadepacker-0.04/
H A Dmmcmp.c174 uint32_t dwPos = 0; in mmcmp_unpack() local
227 pDest[dwPos++] = (uint16_t)newval; in mmcmp_unpack()
229 if (dwPos >= dwSize) in mmcmp_unpack()
232 dwPos = 0; in mmcmp_unpack()
243 uint32_t dwPos = 0; in mmcmp_unpack() local
287 pDest[dwPos++] = (uint8_t)n; in mmcmp_unpack()
289 if (dwPos >= dwSize) in mmcmp_unpack()
292 dwPos = 0; in mmcmp_unpack()
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/src/os2/
H A Dtextentry.cpp167 long dwPos; in GetSelection() local
168 dwPos = (long)::WinSendMsg(GetEditHwnd(), EM_QUERYSEL, 0, 0); in GetSelection()
171 *from = SHORT1FROMMP((MPARAM)dwPos); in GetSelection()
173 *to = SHORT2FROMMP((MPARAM)dwPos); in GetSelection()
H A Dtextctrl.cpp525 WXDWORD dwPos = 0L; in GetInsertionPoint() local
528 dwPos = (WXDWORD)::WinSendMsg(GetHwnd(), MLM_QUERYSEL, (MPARAM)MLFQS_MINSEL, 0); in GetInsertionPoint()
531 dwPos = (WXDWORD)::WinSendMsg(GetHwnd(), EM_QUERYSEL, 0, 0); in GetInsertionPoint()
532 dwPos = SHORT1FROMMP((MPARAM)dwPos); // the first 16 bit value is the min pos in GetInsertionPoint()
534 return (dwPos & 0xFFFF); in GetInsertionPoint()
579 WXDWORD dwPos; in GetSelection() local
582 dwPos = (WXDWORD)::WinSendMsg(GetHwnd(), MLM_QUERYSEL, (MPARAM)MLFQS_MINSEL, 0); in GetSelection()
585 dwPos = (WXDWORD)::WinSendMsg(GetHwnd(), EM_QUERYSEL, 0, 0); in GetSelection()
587 *plFrom = SHORT1FROMMP((MPARAM)dwPos); // the first 16 bit value is the min pos in GetSelection()
588 *plTo = SHORT2FROMMP((MPARAM)dwPos); // the first 16 bit value is the min pos in GetSelection()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/src/os2/
H A Dtextentry.cpp167 long dwPos; in GetSelection() local
168 dwPos = (long)::WinSendMsg(GetEditHwnd(), EM_QUERYSEL, 0, 0); in GetSelection()
171 *from = SHORT1FROMMP((MPARAM)dwPos); in GetSelection()
173 *to = SHORT2FROMMP((MPARAM)dwPos); in GetSelection()
H A Dtextctrl.cpp525 WXDWORD dwPos = 0L; in GetInsertionPoint() local
528 dwPos = (WXDWORD)::WinSendMsg(GetHwnd(), MLM_QUERYSEL, (MPARAM)MLFQS_MINSEL, 0); in GetInsertionPoint()
531 dwPos = (WXDWORD)::WinSendMsg(GetHwnd(), EM_QUERYSEL, 0, 0); in GetInsertionPoint()
532 dwPos = SHORT1FROMMP((MPARAM)dwPos); // the first 16 bit value is the min pos in GetInsertionPoint()
534 return (dwPos & 0xFFFF); in GetInsertionPoint()
579 WXDWORD dwPos; in GetSelection() local
582 dwPos = (WXDWORD)::WinSendMsg(GetHwnd(), MLM_QUERYSEL, (MPARAM)MLFQS_MINSEL, 0); in GetSelection()
585 dwPos = (WXDWORD)::WinSendMsg(GetHwnd(), EM_QUERYSEL, 0, 0); in GetSelection()
587 *plFrom = SHORT1FROMMP((MPARAM)dwPos); // the first 16 bit value is the min pos in GetSelection()
588 *plTo = SHORT2FROMMP((MPARAM)dwPos); // the first 16 bit value is the min pos in GetSelection()
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/nomos/agent_tests/testdata/NomosTestfiles/EUPL/
H A Dasync_log.c36 DWORD dwPos; in AppendToFile() local
55 dwPos = SetFilePointer (hLog, 0, NULL, FILE_END); in AppendToFile()
56 if (dwPos != INVALID_SET_FILE_POINTER) in AppendToFile()
/dports/emulators/jzintv/jzintv-20200712-src/src/imasm/
H A Dgui.cpp383 DWORD dwPos, dwSize; in HighlightDoc() local
408 for (dwPos = 1; dwPos < dwSize; dwPos++) in HighlightDoc()
411 tr.chrg.cpMin = dwPos-1; in HighlightDoc()
412 tr.chrg.cpMax = dwPos; in HighlightDoc()
438 Highlight(hRichEd, crCol, dwPos - (strlen(szWord)+1), dwPos); in HighlightDoc()
/dports/games/libretro-mame2000/mame2000-libretro-e364a15/src/
H A Ddatafile.c82 long dwPos; /* Temporary position */ in GetNextToken() local
211 dwPos = dwFilePos; /* Here so we can reposition things */ in GetNextToken()
223 osd_fseek(fp, dwPos, SEEK_SET); in GetNextToken()
226 *pdwPosition = dwPos; in GetNextToken()

1234567891011