Home
last modified time | relevance | path

Searched refs:pVoid (Results 1 – 25 of 141) sorted by relevance

123456

/dports/www/libwww/w3c-libwww-5.4.2/PICS-client/src/
H A DCSLApp.h64 void * pVoid);
89 int index, void * pVoid);
91 void * pVoid);
130 int index, void * pVoid);
131 extern int CSUserList_enum(CSUserListCallback * pCallback, void * pVoid);
177 typedef int (CSApp_userCallback)(CSUser_t * pCSUser, void * pVoid);
181 void * pVoid);
204 void * pVoid);
H A DCSLLURLs.c12 …putSingleLabel(CSLabel_t * pCSLabel, State_Parms_t * pParms, const char * identifier, void * pVoid) in CSLLHTList_outputSingleLabel() argument
20 …st_outputLabel(CSLabel_t * pCSLabel, State_Parms_t * pParms, const char * identifier, void * pVoid) in CSLLHTList_outputLabel() argument
22 …turn CSLabel_iterateSingleLabels(pParms->pCSLabel, CSLLHTList_outputSingleLabel, pParms, 0, pVoid); in CSLLHTList_outputLabel()
26 …_outputService(CSLabel_t * pCSLabel, State_Parms_t * pParms, const char * identifier, void * pVoid) in CSLLHTList_outputService() argument
28 return CSLabel_iterateLabels(pParms->pCSLabel, CSLLHTList_outputLabel, pParms, 0, pVoid); in CSLLHTList_outputService()
H A DCSChkLab.c19 …l_checkRatings(CSLabel_t * pCSLabel, State_Parms_t * pParms, const char * identifier, void * pVoid) in CSCheckLabel_checkRatings() argument
35 …belServiceRating(CSUser_t * pCSUser, State_Parms_t * pParms, const char * identifier, void * pVoid) in CSCheckLabel_findLabelServiceRating() argument
48 …eckSingleLabel(CSLabel_t * pCSLabel, State_Parms_t * pParms, const char * identifier, void * pVoid) in CSCheckLabel_checkSingleLabel() argument
54 …bel_checkLabel(CSLabel_t * pCSLabel, State_Parms_t * pParms, const char * identifier, void * pVoid) in CSCheckLabel_checkLabel() argument
60 …l_checkService(CSLabel_t * pCSLabel, State_Parms_t * pParms, const char * identifier, void * pVoid) in CSCheckLabel_checkService() argument
66 …findLabelService(CSUser_t * pCSUser, State_Parms_t * pParms, const char * identifier, void * pVoid) in CSCheckLabel_findLabelService() argument
H A DCSApp.c40 void * pVoid; /* parameters */ member
181 callBackRet = (*PUserCallback)(pCSUser, DefaultReqParms.pVoid); in CSLoadedUser_add()
218 PUBLIC int CSLoadedUser_enum(CSLoadedUserCallback * pCallback, void * pVoid) in CSLoadedUser_enum() argument
224 if ((retVal = (*pCallback)(pCSLoadedUser->pCSUser, i, pVoid)) != CSError_OK) in CSLoadedUser_enum()
260 me->pVoid = pVoid; in ReqParms_new()
280 me->pVoid = old->pVoid; in ReqParms_copy()
344 pReqParms->pVoid); in ReqParms_checkDisposition()
593 CSApp_userCallback * pUserCallback, void * pVoid) in CSApp_registerApp() argument
602 DefaultReqParms.pVoid = pVoid; in CSApp_registerApp()
642 …SUser_t * pCSUser, CSDisposition_callback pCallback, CSDisposition_criteria criteria, void * pVoid) in CSApp_registerReq() argument
[all …]
H A DCSMR.h84 void * pVoid);
137 const char *, void * pVoid);
141 void * pVoid);
H A DCSUser.h71 void * pVoid);
123 void * pVoid);
127 void * pVoid);
H A DCSLL.h80 void * pVoid);
135 const char *, void * pVoid);
139 void * pVoid);
H A DCSLLOut.c72 …_outputRatings(CSLabel_t * pCSLabel, State_Parms_t * pParms, const char * identifier, void * pVoid) in CSLLOut_outputRatings() argument
90 …putSingleLabel(CSLabel_t * pCSLabel, State_Parms_t * pParms, const char * identifier, void * pVoid) in CSLLOut_outputSingleLabel() argument
102 …ut_outputLabel(CSLabel_t * pCSLabel, State_Parms_t * pParms, const char * identifier, void * pVoid) in CSLLOut_outputLabel() argument
115 …_outputService(CSLabel_t * pCSLabel, State_Parms_t * pParms, const char * identifier, void * pVoid) in CSLLOut_outputService() argument
126 ret = CSLabel_iterateLabels(pParms->pCSLabel, CSLLOut_outputLabel, pParms, 0, pVoid); in CSLLOut_outputService()
/dports/graphics/tgif/tgif-QPL-4.2.5/
H A Dtgif_dbg.c128 char *pVoid=malloc(nSize); local
137 return (void*)pVoid;
140 void *tgif_realloc(pVoid, nSize) in tgif_realloc() argument
141 void *pVoid; in tgif_realloc()
164 void tgif_free(pVoid) in tgif_free() argument
165 void *pVoid; in tgif_free()
174 if (pVoid == NULL) {
179 free(pVoid);
515 void Tgif_XFree(pVoid) in Tgif_XFree() argument
516 void *pVoid; in Tgif_XFree()
[all …]
/dports/devel/bcunit/bcunit-d8d2f4b40209e06b400f893cce58e4c6ba73341d/BCUnit/Sources/Framework/
H A DMyMem.c253 void* pVoid = NULL; in CU_calloc() local
262 if (NULL != pVoid) { in CU_calloc()
266 return pVoid; in CU_calloc()
273 void* pVoid = NULL; in CU_malloc() local
281 pVoid = malloc(size); in CU_malloc()
282 if (NULL != pVoid) { in CU_malloc()
286 return pVoid; in CU_malloc()
301 void* pVoid = NULL; in CU_realloc() local
312 pVoid = realloc(ptr, size); in CU_realloc()
314 if (NULL != pVoid) { in CU_realloc()
[all …]
/dports/devel/cunit/CUnit-2.1-3/CUnit/Sources/Framework/
H A DMyMem.c253 void* pVoid = NULL; in CU_calloc() local
262 if (NULL != pVoid) { in CU_calloc()
266 return pVoid; in CU_calloc()
273 void* pVoid = NULL; in CU_malloc() local
281 pVoid = malloc(size); in CU_malloc()
282 if (NULL != pVoid) { in CU_malloc()
286 return pVoid; in CU_malloc()
301 void* pVoid = NULL; in CU_realloc() local
312 pVoid = realloc(ptr, size); in CU_realloc()
314 if (NULL != pVoid) { in CU_realloc()
[all …]
/dports/graphics/sampleicc/SampleICC-1.6.8/IccProfLib/
H A DIccUtil.h169 inline void icSwab16Ptr(void *pVoid) in icSwab16Ptr() argument
171 icUInt8Number *ptr = (icUInt8Number*)pVoid; in icSwab16Ptr()
177 inline void icSwab16Array(void *pVoid, int num) in icSwab16Array() argument
179 icUInt8Number *ptr = (icUInt8Number*)pVoid; in icSwab16Array()
189 inline void icSwab32Ptr(void *pVoid) in icSwab32Ptr() argument
191 icUInt8Number *ptr = (icUInt8Number*)pVoid; in icSwab32Ptr()
198 inline void icSwab32Array(void *pVoid, int num) in icSwab32Array() argument
200 icUInt8Number *ptr = (icUInt8Number*)pVoid; in icSwab32Array()
212 inline void icSwab64Ptr(void *pVoid) in icSwab64Ptr() argument
214 icUInt8Number *ptr = (icUInt8Number*)pVoid; in icSwab64Ptr()
[all …]
/dports/science/agrum/aGrUM-29e540d8169268e8fe5d5c69bc4b2b1290f12320/src/testunits/module_BASE/
H A DSmallObjectAllocatorTestSuite.h55 void* pVoid = nullptr; in test_Fixed_Allocator_ALLOC_DEALLOC_1_ELEM() local
56 TS_ASSERT_THROWS_NOTHING(pVoid = fa->allocate()) in test_Fixed_Allocator_ALLOC_DEALLOC_1_ELEM()
57 TS_ASSERT_THROWS_NOTHING(fa->deallocate(pVoid)) in test_Fixed_Allocator_ALLOC_DEALLOC_1_ELEM()
131 void* pVoid = nullptr; in test_Small_Object_Allocator_ALLOC_DEALLOC_1_ELEM() local
133 pVoid = gum::SmallObjectAllocator::instance().allocate(5 * sizeof(gum::Idx))); in test_Small_Object_Allocator_ALLOC_DEALLOC_1_ELEM()
135 gum::SmallObjectAllocator::instance().deallocate(pVoid, 5 * sizeof(gum::Idx))); in test_Small_Object_Allocator_ALLOC_DEALLOC_1_ELEM()
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dwsdutil.h30 void *pVoid
34 void *pVoid
58 LPVOID pVoid,
64 LPVOID pVoid,
H A Dkcom.h230 PVOID pVoid) in delete() argument
232 if (pVoid) ExFreePool(pVoid); in delete()
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dwsdutil.h30 void *pVoid
34 void *pVoid
58 LPVOID pVoid,
64 LPVOID pVoid,
H A Dkcom.h230 PVOID pVoid) in delete() argument
232 if (pVoid) ExFreePool(pVoid); in delete()
/dports/graphics/tiffgt/tiff-4.3.0/test/
H A Dcustom_dir_EXIF_231.c167 void *pVoid; in write_test_tiff() local
606 pVoid = NULL; in write_test_tiff()
668 pVoid = &auxFloatArrayW[i]; else pVoid = &auxDoubleArrayW[i]; in write_test_tiff()
693 pVoid = &auxCharArrayW[i]; in write_test_tiff()
702 pVoid = &auxShortArrayW[i]; in write_test_tiff()
711 pVoid = &auxLongArrayW[i]; in write_test_tiff()
729 if (!TIFFSetField(tif, tTag, pVoid)) { in write_test_tiff()
1097 pVoid = NULL; in write_test_tiff()
1291 pVoid = &auxCharArrayW[i]; in write_test_tiff()
1300 pVoid = &auxShortArrayW[i]; in write_test_tiff()
[all …]
/dports/graphics/tiff/tiff-4.3.0/test/
H A Dcustom_dir_EXIF_231.c167 void *pVoid; in write_test_tiff() local
606 pVoid = NULL; in write_test_tiff()
668 pVoid = &auxFloatArrayW[i]; else pVoid = &auxDoubleArrayW[i]; in write_test_tiff()
693 pVoid = &auxCharArrayW[i]; in write_test_tiff()
702 pVoid = &auxShortArrayW[i]; in write_test_tiff()
711 pVoid = &auxLongArrayW[i]; in write_test_tiff()
729 if (!TIFFSetField(tif, tTag, pVoid)) { in write_test_tiff()
1097 pVoid = NULL; in write_test_tiff()
1291 pVoid = &auxCharArrayW[i]; in write_test_tiff()
1300 pVoid = &auxShortArrayW[i]; in write_test_tiff()
[all …]
/dports/deskutils/ausweisapp2/AusweisApp2-1.22.2/test/qt/ui/json/
H A Dtest_MsgHandler.cpp24 void testVoid(bool pVoid) in testVoid() argument
26 setVoid(pVoid); in testVoid()
/dports/editors/abiword/abiword-3.0.5/src/af/util/xp/
H A Dut_stack.cpp27 bool UT_Stack::push(void * pVoid) in push() argument
29 UT_uint32 error = m_vecStack.addItem(pVoid); in push()
/dports/www/libwww/w3c-libwww-5.4.2/Library/src/
H A DHTSocket.c85 PRIVATE int SocketEvent (SOCKET soc, void * pVoid, HTEventType type);
109 PRIVATE int SocketEvent (SOCKET soc, void * pVoid, HTEventType type) in SocketEvent() argument
111 raw_info * raw = (raw_info *) pVoid; in SocketEvent()
/dports/graphics/sane-backends/sane-backends-1.0.32/backend/
H A Dplustek-pp_ptdrv.c310 static int getUserPtr(const pVoid useraddr, pVoid where, UInt size ) in getUserPtr()
350 static int putUserPtr( const pVoid ptr, pVoid useraddr, UInt size ) in putUserPtr()
371 static unsigned long copy_from_user( pVoid dest, pVoid src, unsigned long len ) in copy_from_user()
377 static unsigned long copy_to_user( pVoid dest, pVoid src, unsigned long len ) in copy_to_user()
386 static int putUserVal(const ULong value, pVoid useraddr, UInt size) in putUserVal()
962 static int ptdrvIoctl( pScanData ps, UInt cmd, pVoid arg ) in ptdrvIoctl()
1142 if (copy_from_user((pVoid)&ps->a_bMapTable[x_len * i], in ptdrvIoctl()
1155 if (copy_from_user((pVoid)&ps->a_bMapTable[x_len * idx], in ptdrvIoctl()
1891 return ptdrvIoctl( ps, cmd, (pVoid)arg);
1902 return ptdrvIoctl( ps, cmd, (pVoid)arg);
[all …]
/dports/multimedia/libmatroska/libmatroska-1.6.3/test/ebml/
H A Dtest00.cpp120 …EbmlVoid * pVoid = static_cast<EbmlVoid *>(pAttachment2->FindFirstElt(EbmlVoid::ClassInfos, true)); in main() local
121 if (pVoid == NULL) in main()
123 static_cast<EbmlBinary *>(pVoid)->SetBuffer((const binary*) Buffer1, countof(Buffer1)); in main()
/dports/multimedia/mkvtoolnix/mkvtoolnix-65.0.0/lib/libmatroska/test/ebml/
H A Dtest00.cpp120 …EbmlVoid * pVoid = static_cast<EbmlVoid *>(pAttachment2->FindFirstElt(EbmlVoid::ClassInfos, true)); in main() local
121 if (pVoid == NULL) in main()
123 static_cast<EbmlBinary *>(pVoid)->SetBuffer((const binary*) Buffer1, countof(Buffer1)); in main()

123456