Home
last modified time | relevance | path

Searched refs:uType (Results 1 – 25 of 919) sorted by relevance

12345678910>>...37

/dports/irc/kvirc/KVIrc-5.0.0-73-gbdeac0429/src/kvirc/kvs/
H A DKviKvsParameterProcessor.h155 unsigned char uType; variable
162 : szName(name), uType((unsigned char)type), uFlags(flags), pContainer((void *)(&szBuffer)){}; in ParameterFormat()
166 : szName(name), uType((unsigned char)type), uFlags(flags), pContainer((void *)(&iBuffer)){}; in ParameterFormat()
170 : szName(name), uType((unsigned char)type), uFlags(flags), pContainer((void *)(&uBuffer)){}; in ParameterFormat()
174 : szName(name), uType((unsigned char)type), uFlags(flags), pContainer((void *)(&dBuffer)){}; in ParameterFormat()
178 : szName(name), uType((unsigned char)type), uFlags(flags), pContainer((void *)(&bBuffer)){}; in ParameterFormat()
182 : szName(name), uType((unsigned char)type), uFlags(flags), pContainer((void *)(&pBuffer)){}; in ParameterFormat()
186 : szName(name), uType((unsigned char)type), uFlags(flags), pContainer((void *)(&oBuffer)){}; in ParameterFormat()
190 : szName(name), uType((unsigned char)type), uFlags(flags), pContainer((void *)(&pBuffer)){}; in ParameterFormat()
214 : szName(name), uType(KVS_PT_IGNORE), uFlags(0), pContainer(nullptr) {} in ParameterFormat()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corert/src/Native/gc/
H A Dhandletablecache.cpp347 uint32_t uType, in TableFullRebalanceCache() argument
440 TableFreeBulkPreparedHandles(pTable, uType, pHandleBase, uFree); in TableFullRebalanceCache()
511 uint32_t uType, in TableQuickRebalanceCache() argument
723 if (pTable->rgQuickCache[uType]) in TableAllocSingleHandleFromCache()
734 HandleTypeCache *pCache = pTable->rgMainCache + uType; in TableAllocSingleHandleFromCache()
743 return TableCacheMissOnAlloc(pTable, pCache, uType); in TableAllocSingleHandleFromCache()
788 if (TypeHasUserData(pTable, uType)) in TableFreeSingleHandleToCache()
792 if (!pTable->rgQuickCache[uType]) in TableFreeSingleHandleToCache()
803 HandleTypeCache *pCache = pTable->rgMainCache + uType; in TableFreeSingleHandleToCache()
812 TableCacheMissOnFree(pTable, pCache, uType, handle); in TableFreeSingleHandleToCache()
[all …]
H A Dhandletablecore.cpp719 uint32_t uType; in SegmentPreCompactAsyncPinHandles() local
720 for (uType = 0; uType < HANDLE_MAX_INTERNAL_TYPES; uType ++) in SegmentPreCompactAsyncPinHandles()
722 if (uType == HNDTYPE_ASYNCPINNED) in SegmentPreCompactAsyncPinHandles()
726 pSegment->rgFreeCount[uType] = 0; in SegmentPreCompactAsyncPinHandles()
1684 uint32_t uType; in SegmentResortChains() local
1685 for (uType = 0; uType < HANDLE_MAX_INTERNAL_TYPES; uType++) in SegmentResortChains()
1686 rgChainHigh[uType] = rgChainCurr[uType] = BLOCK_INVALID; in SegmentResortChains()
1699 if (uType != TYPE_INVALID) in SegmentResortChains()
1732 for (uType = 0; uType < HANDLE_MAX_INTERNAL_TYPES; uType++) in SegmentResortChains()
1751 if (pSegment->rgBlockType[pSegment->rgHint[uType]] != uType) in SegmentResortChains()
[all …]
H A Dhandletablepriv.h601 __inline BOOL TypeHasUserData(HandleTable *pTable, uint32_t uType) in TypeHasUserData() argument
606 _ASSERTE(uType < HANDLE_MAX_INTERNAL_TYPES); in TypeHasUserData()
609 return (pTable->rgTypeFlags[uType] & HNDF_EXTRAINFO); in TypeHasUserData()
784 void SegmentRemoveFreeBlocks(TableSegment *pSegment, uint32_t uType);
825 uint32_t TableAllocBulkHandles(HandleTable *pTable, uint32_t uType, OBJECTHANDLE *pHandleBase, uint…
836 void TableFreeBulkPreparedHandles(HandleTable *pTable, uint32_t uType, OBJECTHANDLE *pHandleBase, u…
845 void TableFreeBulkUnpreparedHandles(HandleTable *pTable, uint32_t uType, const OBJECTHANDLE *pHandl…
865 OBJECTHANDLE TableAllocSingleHandleFromCache(HandleTable *pTable, uint32_t uType);
876 void TableFreeSingleHandleToCache(HandleTable *pTable, uint32_t uType, OBJECTHANDLE handle);
886 uint32_t TableAllocHandlesFromCache(HandleTable *pTable, uint32_t uType, OBJECTHANDLE *pHandleBase,…
[all …]
H A Dhandletable.cpp322 _ASSERTE(uType < pTable->uTypeCount); in HndCreateHandle()
325 OBJECTHANDLE handle = TableAllocSingleHandleFromCache(pTable, uType); in HndCreateHandle()
512 _ASSERTE(uType < pTable->uTypeCount); in HndDestroyHandle()
514 _ASSERTE(HandleFetchType(handle) == uType); in HndDestroyHandle()
517 TableFreeSingleHandleToCache(pTable, uType, handle); in HndDestroyHandle()
567 _ASSERTE(uType < pTable->uTypeCount); in HndCreateHandles()
624 _ASSERTE(uType < pTable->uTypeCount); in HndDestroyHandles()
643 TableFreeHandlesToCache(pTable, uType, pHandles, uCount); in HndDestroyHandles()
652 TableFreeBulkUnpreparedHandles(pTable, uType, pHandles, uCount); in HndDestroyHandles()
842 uint32_t uType = HandleFetchType(handle); in HndWriteBarrier() local
[all …]
H A Dhandletable.h71 OBJECTHANDLE HndCreateHandle(HHANDLETABLE hTable, uint32_t uType, OBJECTREF object, uintptr_t lE…
72 void HndDestroyHandle(HHANDLETABLE hTable, uint32_t uType, OBJECTHANDLE handle);
79 uint32_t HndCreateHandles(HHANDLETABLE hTable, uint32_t uType, OBJECTHANDLE *pHandles, uint3…
80 void HndDestroyHandles(HHANDLETABLE hTable, uint32_t uType, const OBJECTHANDLE *pHandles…
85 void HndSetHandleExtraInfo(OBJECTHANDLE handle, uint32_t uType, uintptr_t lExtraInfo);
86 uintptr_t HndCompareExchangeHandleExtraInfo(OBJECTHANDLE handle, uint32_t uType, uintptr_t…
/dports/multimedia/vapoursynth-l-smash-works/L-SMASH-Works-0.0-940-g198cc78/AviUtl/
H A Dlwinput.h39 #define MESSAGE_BOX_DESKTOP( uType, ... ) \ argument
44 MessageBox( HWND_DESKTOP, temp, "lwinput", uType ); \
49 #define DEBUG_MESSAGE_BOX_DESKTOP( uType, ... ) MESSAGE_BOX_DESKTOP( uType, __VA_ARGS__ ) argument
51 #define DEBUG_MESSAGE_BOX_DESKTOP( uType, ... ) argument
55 #define DEBUG_VIDEO_MESSAGE_BOX_DESKTOP( uType, ... ) DEBUG_MESSAGE_BOX_DESKTOP( uType, __VA_ARGS__… argument
57 #define DEBUG_VIDEO_MESSAGE_BOX_DESKTOP( uType, ... ) argument
61 #define DEBUG_AUDIO_MESSAGE_BOX_DESKTOP( uType, ... ) DEBUG_MESSAGE_BOX_DESKTOP( uType, __VA_ARGS__… argument
63 #define DEBUG_AUDIO_MESSAGE_BOX_DESKTOP( uType, ... ) argument
H A Dlwlibav_input.c46 UINT uType; member
128 hp->uType = MB_OK; in prepare_video_decoding()
135 hp->uType = MB_ICONERROR | MB_OK; in prepare_video_decoding()
196 vlhp->priv = &hp->uType; in open_file()
199 hp->uType = MB_ICONERROR | MB_OK; in open_file()
241 lhp->priv = &hp->uType; in get_video_track()
253 lhp->priv = &hp->uType; in get_audio_track()
/dports/net-p2p/amule/aMule-2.3.3/src/
H A DTag.cpp316 uint8 uType; in WriteNewEd2kTag() local
320 uType = TAGTYPE_UINT8; in WriteNewEd2kTag()
322 uType = TAGTYPE_UINT16; in WriteNewEd2kTag()
324 uType = TAGTYPE_UINT32; in WriteNewEd2kTag()
326 uType = TAGTYPE_UINT64; in WriteNewEd2kTag()
333 uType = TAGTYPE_STRING; in WriteNewEd2kTag()
336 uType = m_uType; in WriteNewEd2kTag()
341 data->WriteUInt8(uType); in WriteNewEd2kTag()
345 data->WriteUInt8(uType | 0x80); in WriteNewEd2kTag()
350 switch (uType) { in WriteNewEd2kTag()
[all …]
/dports/net-p2p/amule-devel/aMule-SVN-r11065/src/
H A DTag.cpp316 uint8 uType; in WriteNewEd2kTag() local
320 uType = TAGTYPE_UINT8; in WriteNewEd2kTag()
322 uType = TAGTYPE_UINT16; in WriteNewEd2kTag()
324 uType = TAGTYPE_UINT32; in WriteNewEd2kTag()
326 uType = TAGTYPE_UINT64; in WriteNewEd2kTag()
333 uType = TAGTYPE_STRING; in WriteNewEd2kTag()
336 uType = m_uType; in WriteNewEd2kTag()
341 data->WriteUInt8(uType); in WriteNewEd2kTag()
345 data->WriteUInt8(uType | 0x80); in WriteNewEd2kTag()
350 switch (uType) { in WriteNewEd2kTag()
[all …]
/dports/www/joomla3/joomla3-3.9.24/libraries/src/Schema/ChangeItem/
H A DMysqlChangeItem.php313 $uType = strtoupper(str_replace(';', '', $type));
315 if ($uType === 'TINYINT UNSIGNED')
320 elseif ($uType === 'TINYINT')
324 elseif ($uType === 'INT UNSIGNED')
329 elseif ($uType === 'INT')
335 if ($uType === 'TINYTEXT')
339 elseif ($uType === 'TEXT')
343 elseif ($uType === 'MEDIUMTEXT')
349 $typeCheck = 'UPPER(type) = ' . $this->db->quote($uType);
354 $typeCheck = 'UPPER(type) = ' . $this->db->quote($uType);
/dports/games/spring/spring_98.0/AI/Skirmish/KAIK/
H A DUnitTable.cpp815 UnitType* uType = &unitTypes[i]; in Init() local
816 const int UnitCost = int(uType->def->metalCost * METAL2ENERGY + uType->def->energyCost); in Init()
819 uType->category = CAT_BUILDER; in Init()
826 uType->DPSvsUnit[v] = GetDPSvsUnit(uType->def, unitTypes[v].def); in Init()
835 uType->category = CAT_BUILDER; in Init()
837 else if (!uType->def->weapons.empty() && !uType->def->weapons.begin()->def->stockpile) { in Init()
845 else if (!uType->def->canfly) { in Init()
850 uType->isHub = false; in Init()
892 uType->category = CAT_NUKE; in Init()
910 uType->category = CAT_MEX; in Init()
[all …]
/dports/games/ponscripter-07th-mod/ponscripter-fork-3.0.0/src/
H A DPonscripterMessage.cpp137 UINT uType; in PonscripterMessage() local
140 uType = MB_ICONERROR; in PonscripterMessage()
143 uType = MB_ICONINFORMATION; in PonscripterMessage()
146 uType = MB_ICONWARNING; in PonscripterMessage()
149 MessageBox(windowHandle, message, title, uType); in PonscripterMessage()
/dports/security/py-angr/angr-9.0.5405/angr/procedures/win_user32/
H A Dmessagebox.py4 def run(self, hWnd, lpText, lpCaption, uType): argument
11 …result = self.state.solver.If(uType & 0xf == 0, 1, self.state.solver.BVS('messagebox_button', 32, …
19 def run(self, hWnd, lpText, lpCaption, uType, wLanguageId): argument
20 super(MessageBoxExA, self).run(hWnd, lpText, lpCaption, uType)
/dports/games/uqm/uqm-0.8.0/src/libs/log/
H A Dmsgbox_win.c57 UINT uType = isError ? MB_ICONWARNING : MB_ICONINFORMATION; in log_displayBox() local
60 MessageBoxW (NULL, swMsg, swTitle, uType); in log_displayBox()
62 MessageBoxA (NULL, msg, title, uType); in log_displayBox()
/dports/net/tigervnc-server/tigervnc-1.12.0/unix/xserver/hw/xwin/
H A Dwinerror.c108 winMessageBoxF(const char *pszError, UINT uType, ...) in winMessageBoxF() argument
115 va_start(args, uType); in winMessageBoxF()
144 MessageBox(NULL, pszMsgBox, PROJECT_NAME, MB_OK | uType); in winMessageBoxF()
/dports/x11-servers/xwayland/xorg-server-1.20.13/hw/xwin/
H A Dwinerror.c108 winMessageBoxF(const char *pszError, UINT uType, ...) in winMessageBoxF() argument
115 va_start(args, uType); in winMessageBoxF()
144 MessageBox(NULL, pszMsgBox, PROJECT_NAME, MB_OK | uType); in winMessageBoxF()
/dports/x11-servers/xorg-nestserver/xorg-server-1.20.13/hw/xwin/
H A Dwinerror.c108 winMessageBoxF(const char *pszError, UINT uType, ...) in winMessageBoxF() argument
115 va_start(args, uType); in winMessageBoxF()
144 MessageBox(NULL, pszMsgBox, PROJECT_NAME, MB_OK | uType); in winMessageBoxF()
/dports/x11-servers/xorg-dmx/xorg-server-1.20.13/hw/xwin/
H A Dwinerror.c108 winMessageBoxF(const char *pszError, UINT uType, ...) in winMessageBoxF() argument
115 va_start(args, uType); in winMessageBoxF()
144 MessageBox(NULL, pszMsgBox, PROJECT_NAME, MB_OK | uType); in winMessageBoxF()
/dports/x11-servers/xwayland-devel/xorg-xserver-xorg-server-21.0.99.1-177-g9e5a37961/hw/xwin/
H A Dwinerror.c108 winMessageBoxF(const char *pszError, UINT uType, ...) in winMessageBoxF() argument
115 va_start(args, uType); in winMessageBoxF()
144 MessageBox(NULL, pszMsgBox, PROJECT_NAME, MB_OK | uType); in winMessageBoxF()
/dports/x11-servers/xorg-server/xorg-server-1.20.13/hw/xwin/
H A Dwinerror.c108 winMessageBoxF(const char *pszError, UINT uType, ...) in winMessageBoxF() argument
115 va_start(args, uType); in winMessageBoxF()
144 MessageBox(NULL, pszMsgBox, PROJECT_NAME, MB_OK | uType); in winMessageBoxF()
/dports/x11-servers/xephyr/xorg-server-1.20.13/hw/xwin/
H A Dwinerror.c108 winMessageBoxF(const char *pszError, UINT uType, ...) in winMessageBoxF() argument
115 va_start(args, uType); in winMessageBoxF()
144 MessageBox(NULL, pszMsgBox, PROJECT_NAME, MB_OK | uType); in winMessageBoxF()
/dports/x11-servers/xarcan/xarcan-0.6.0/hw/xwin/
H A Dwinerror.c108 winMessageBoxF(const char *pszError, UINT uType, ...) in winMessageBoxF() argument
115 va_start(args, uType); in winMessageBoxF()
144 MessageBox(NULL, pszMsgBox, PROJECT_NAME, MB_OK | uType); in winMessageBoxF()
/dports/x11-servers/xorg-vfbserver/xorg-server-1.20.13/hw/xwin/
H A Dwinerror.c108 winMessageBoxF(const char *pszError, UINT uType, ...) in winMessageBoxF() argument
115 va_start(args, uType); in winMessageBoxF()
144 MessageBox(NULL, pszMsgBox, PROJECT_NAME, MB_OK | uType); in winMessageBoxF()
/dports/games/OpenLara/OpenLara-b4b19f2/src/gapi/
H A Dc3d.h282 for (int uType = 0; uType < uMAX; uType++) { in validate() local
283 if (!cbCount[uType]) continue; in validate()
285 vec4 *src = cbMem + bindings[uType]; in validate()
286 … vec4 *dst = (vec4*)C3D_FVUnifWritePtr(GPU_VERTEX_SHADER, uID[uType], cbCount[uType]); in validate()
288 for (int i = 0; i < cbCount[uType]; i++) { in validate()
297 cbCount[uType] = 0; in validate()
303 if (uID[uType] == -1) return;
304 cbCount[uType] = max(cbCount[uType], count);
305 memcpy(cbMem + bindings[uType], &value, count * sizeof(value));
309 if (uID[uType] == -1) return;
[all …]

12345678910>>...37