Home
last modified time | relevance | path

Searched refs:retCount (Results 1 – 25 of 104) sorted by relevance

12345

/dports/devel/librevisa/librevisa-0.0.20130412/tests/
H A Ddummy.cpp43 virtual ViStatus Read(ViBuf buf, ViUInt32 count, ViUInt32 *retCount) in Read() argument
51 if(retCount) in Read()
52 *retCount = op.count; in Read()
58 virtual ViStatus Write(ViBuf buf, ViUInt32 count, ViUInt32 *retCount) in Write() argument
61 *retCount = count; in Write()
/dports/www/crp/CRP/PC/
H A DGradePapers.php129 $count = $Conf->retCount("SELECT Count(finalized) "
135 $done = $Conf->retCount("SELECT finalized "
232 $count = $Conf->retCount("SELECT Count(finalized) "
238 $done = $Conf->retCount("SELECT PaperReview.finalized "
246 $doneByMe = $Conf->retCount("SELECT PaperReview.finalized "
H A DCheckAssignedPapers.php45 $count = $Conf->retCount("SELECT Count(finalized) "
51 $done = $Conf->retCount("SELECT finalized "
109 $count = $Conf->retCount("SELECT Count(finalized) "
/dports/net-mgmt/zabbix54-proxy/zabbix-5.4.9/src/go/plugins/modbus/
H A Dendianness.go103 func swapPairByte(v []byte, retType bits16, retCount uint) (ret interface{}) {
111 ret = ret.([]int8)[:retCount]
118 ret = ret.([]byte)[:retCount]
123 func getArr16(retType bits16, retCount uint, val []byte) []uint16 {
124 ar := make([]uint16, retCount)
129 if retCount--; retCount == 0 {
H A Dparse.go350 func getCount(p *[]string, n int, retType bits16) (count uint16, retCount uint, err error) {
366 retCount = uint(val)
371 realCount = uint((retCount + 1) / 2)
373 realCount = uint(retCount * 2)
375 realCount = retCount * 4
377 realCount = retCount
380 return 0, 0, fmt.Errorf("Unsupported data type with required data count:%d", retCount)
383 return count, retCount, nil
/dports/net-mgmt/zabbix54-server/zabbix-5.4.9/src/go/plugins/modbus/
H A Dendianness.go103 func swapPairByte(v []byte, retType bits16, retCount uint) (ret interface{}) {
111 ret = ret.([]int8)[:retCount]
118 ret = ret.([]byte)[:retCount]
123 func getArr16(retType bits16, retCount uint, val []byte) []uint16 {
124 ar := make([]uint16, retCount)
129 if retCount--; retCount == 0 {
H A Dparse.go350 func getCount(p *[]string, n int, retType bits16) (count uint16, retCount uint, err error) {
366 retCount = uint(val)
371 realCount = uint((retCount + 1) / 2)
373 realCount = uint(retCount * 2)
375 realCount = retCount * 4
377 realCount = retCount
380 return 0, 0, fmt.Errorf("Unsupported data type with required data count:%d", retCount)
383 return count, retCount, nil
/dports/net-mgmt/zabbix54-agent/zabbix-5.4.9/src/go/plugins/modbus/
H A Dendianness.go103 func swapPairByte(v []byte, retType bits16, retCount uint) (ret interface{}) {
111 ret = ret.([]int8)[:retCount]
118 ret = ret.([]byte)[:retCount]
123 func getArr16(retType bits16, retCount uint, val []byte) []uint16 {
124 ar := make([]uint16, retCount)
129 if retCount--; retCount == 0 {
H A Dparse.go350 func getCount(p *[]string, n int, retType bits16) (count uint16, retCount uint, err error) {
366 retCount = uint(val)
371 realCount = uint((retCount + 1) / 2)
373 realCount = uint(retCount * 2)
375 realCount = retCount * 4
377 realCount = retCount
380 return 0, 0, fmt.Errorf("Unsupported data type with required data count:%d", retCount)
383 return count, retCount, nil
/dports/net-mgmt/zabbix54-frontend/zabbix-5.4.9/src/go/plugins/modbus/
H A Dendianness.go103 func swapPairByte(v []byte, retType bits16, retCount uint) (ret interface{}) {
111 ret = ret.([]int8)[:retCount]
118 ret = ret.([]byte)[:retCount]
123 func getArr16(retType bits16, retCount uint, val []byte) []uint16 {
124 ar := make([]uint16, retCount)
129 if retCount--; retCount == 0 {
H A Dparse.go350 func getCount(p *[]string, n int, retType bits16) (count uint16, retCount uint, err error) {
366 retCount = uint(val)
371 realCount = uint((retCount + 1) / 2)
373 realCount = uint(retCount * 2)
375 realCount = retCount * 4
377 realCount = retCount
380 return 0, 0, fmt.Errorf("Unsupported data type with required data count:%d", retCount)
383 return count, retCount, nil
/dports/net-mgmt/zabbix54-java/zabbix-5.4.9/src/go/plugins/modbus/
H A Dendianness.go103 func swapPairByte(v []byte, retType bits16, retCount uint) (ret interface{}) {
111 ret = ret.([]int8)[:retCount]
118 ret = ret.([]byte)[:retCount]
123 func getArr16(retType bits16, retCount uint, val []byte) []uint16 {
124 ar := make([]uint16, retCount)
129 if retCount--; retCount == 0 {
H A Dparse.go350 func getCount(p *[]string, n int, retType bits16) (count uint16, retCount uint, err error) {
366 retCount = uint(val)
371 realCount = uint((retCount + 1) / 2)
373 realCount = uint(retCount * 2)
375 realCount = retCount * 4
377 realCount = retCount
380 return 0, 0, fmt.Errorf("Unsupported data type with required data count:%d", retCount)
383 return count, retCount, nil
/dports/devel/librevisa/librevisa-0.0.20130412/src/
H A Dsession.cpp50 ViStatus session::FindRsrc(ViString expr, ViFindList *findList, ViUInt32 *retCount, ViRsrc instrDes… in FindRsrc() argument
52 return res->FindRsrc(expr, findList, retCount, instrDesc); in FindRsrc()
55 ViStatus session::Read(ViBuf buf, ViUInt32 count, ViUInt32 *retCount) in Read() argument
57 return res->Read(buf, count, retCount); in Read()
60 ViStatus session::Write(ViBuf buf, ViUInt32 count, ViUInt32 *retCount) in Write() argument
62 return res->Write(buf, count, retCount); in Write()
H A DviRead.cpp29 ViStatus _VI_FUNC viRead(ViSession vi, ViPBuf buf, ViUInt32 count, ViPUInt32 retCount) in viRead() argument
33 return objects.get_session(vi)->Read(buf, count, retCount); in viRead()
H A DviWrite.cpp29 ViStatus _VI_FUNC viWrite(ViSession vi, ViBuf buf, ViUInt32 count, ViUInt32 *retCount) in viWrite() argument
33 return objects.get_session(vi)->Write(buf, count, retCount); in viWrite()
H A DviFindRsrc.cpp27 ViStatus _VI_FUNC viFindRsrc(ViSession vi, ViString expr, ViPFindList findList, ViPUInt32 retCount,… in viFindRsrc() argument
31 return objects.get_session(vi)->FindRsrc(expr, findList, retCount, instrDesc); in viFindRsrc()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/native/sun/font/layout/
H A DIndicLayoutEngine.cpp94 …le_int32 retCount = OpenTypeLayoutEngine::glyphProcessing(chars, offset, count, max, rightToLeft, … in glyphProcessing() local
102 IndicReordering::finalReordering(glyphStorage,retCount); in glyphProcessing()
104 IndicReordering::applyPresentationForms(glyphStorage,retCount); in glyphProcessing()
111 return retCount; in glyphProcessing()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/native/sun/font/layout/
H A DIndicLayoutEngine.cpp94 …le_int32 retCount = OpenTypeLayoutEngine::glyphProcessing(chars, offset, count, max, rightToLeft, … in glyphProcessing() local
102 IndicReordering::finalReordering(glyphStorage,retCount); in glyphProcessing()
104 IndicReordering::applyPresentationForms(glyphStorage,retCount); in glyphProcessing()
111 return retCount; in glyphProcessing()
/dports/multimedia/x265/source/output/
H A Dreconplay.cpp184 intptr_t retCount = (intptr_t)fwrite(buf, sizeof(char), remainSize, outputPipe); in outputFrame() local
186 if (retCount < 0 || !pipeValid) in outputFrame()
190 buf += retCount; in outputFrame()
191 remainSize -= retCount; in outputFrame()
/dports/graphics/libbpg/libbpg-0.9.8/x265/source/output/
H A Dreconplay.cpp184 intptr_t retCount = (intptr_t)fwrite(buf, sizeof(char), remainSize, outputPipe); in outputFrame() local
186 if (retCount < 0 || !pipeValid) in outputFrame()
190 buf += retCount; in outputFrame()
191 remainSize -= retCount; in outputFrame()
/dports/devel/librevisa/librevisa-0.0.20130412/src/vxi/
H A Dvxi_resource.cpp157 ViStatus vxi_resource::Read(ViBuf buf, ViUInt32 count, ViUInt32 *retCount) in Read() argument
172 *retCount = read_resp->data.data_len; in Read()
179 ViStatus vxi_resource::Write(ViBuf buf, ViUInt32 count, ViUInt32 *retCount) in Write() argument
195 *retCount = write_resp->size; in Write()
/dports/multimedia/handbrake/x265_3.5/source/output/
H A Dreconplay.cpp184 intptr_t retCount = (intptr_t)fwrite(buf, sizeof(char), remainSize, outputPipe); in outputFrame() local
186 if (retCount < 0 || !pipeValid) in outputFrame()
190 buf += retCount; in outputFrame()
191 remainSize -= retCount; in outputFrame()
/dports/textproc/gitlab-elasticsearch-indexer/gitlab-elasticsearch-indexer-ef1440548effec15831eda2d246dacc43233cefb/vendor/gitlab.com/lupine/icu/
H A Dc_bridge.c35 int retCount = matchCount > matchBufferSize ? matchBufferSize : matchCount; in detectCharset() local
37 for (i = 0; i < retCount; i++) { in detectCharset()
67 return retCount; in detectCharset()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/javax/swing/tree/
H A DFixedHeightLayoutCache.java909 int retCount = childCount; in getTotalChildCount() local
916 return retCount; in getTotalChildCount()
1406 int retCount = stopIndex + 1; in getCountTo() local
1414 retCount += aChild.getTotalChildCount(); in getCountTo()
1417 return retCount + ((FHTreeStateNode)getParent()) in getCountTo()
1420 return (retCount - 1); in getCountTo()
1421 return retCount; in getCountTo()
1432 int retCount = stopIndex; in getNumExpandedChildrenTo() local
1438 return retCount; in getNumExpandedChildrenTo()
1440 retCount += aChild.getTotalChildCount(); in getNumExpandedChildrenTo()
[all …]

12345