Home
last modified time | relevance | path

Searched refs:bufType (Results 1 – 25 of 446) sorted by relevance

12345678910>>...18

/dports/graphics/dcmtk/dcmtk-DCMTK-3.6.6/dcmjpls/libcharls/
H A Ddecodstr.h84 if (_current_offset < _nextFFPosition - (sizeof(bufType)-1)) in OptimizedRead()
86 … _readCache |= FromBigEndian<sizeof(bufType)>::Read(*_position + _current_offset) >> _validBits; in OptimizedRead()
96 typedef size_t bufType; typedef
99 bufferbits = sizeof( bufType ) * 8
119 bufType valnew = current_value(); in MakeValid()
222 bool bSet = (_readCache & (bufType(1) << (bufferbits - 1))) != 0; in ReadBit()
235 bufType valTest = _readCache; in Peek0Bits()
239 if ((valTest & (bufType(1) << (bufferbits - 1))) != 0) in Peek0Bits()
286 bufType _readCache;
/dports/graphics/charls/charls-2.2.0/src/
H A Ddecoder_strategy.h81 if (position_ < next_ff_position_ - (sizeof(bufType) - 1)) in optimized_read()
83 read_cache_ |= from_big_endian<sizeof(bufType)>::read(position_) >> valid_bits_; in optimized_read()
110 const bufType value_new{position_[0]}; in make_valid()
202 const bool set = (read_cache_ & (static_cast<bufType>(1) << (bufType_bit_count - 1))) != 0; in read_bit()
213 bufType val_test = read_cache_; in peek_0_bits()
217 if ((val_test & (static_cast<bufType>(1) << (bufType_bit_count - 1))) != 0) in peek_0_bits()
256 using bufType = size_t;
257 static constexpr auto bufType_bit_count = static_cast<int32_t>(sizeof(bufType) * 8);
262 bufType read_cache_{};
/dports/science/InsightToolkit/ITK-5.0.1/Modules/ThirdParty/GDCM/src/gdcm/Utilities/gdcmcharls/
H A Ddecoderstrategy.h118 if (_position < _nextFFPosition - (sizeof(bufType)-1)) in OptimizedRead()
120 _readCache |= FromBigEndian<sizeof(bufType)>::Read(_position) >> _validBits; in OptimizedRead()
130 typedef std::size_t bufType; typedef
134 bufferbits = sizeof( bufType ) * 8
156 bufType valnew = _position[0]; in MakeValid()
250 bool bSet = (_readCache & (bufType(1) << (bufferbits - 1))) != 0; in ReadBit()
261 bufType valTest = _readCache; in Peek0Bits()
265 if ((valTest & (bufType(1) << (bufferbits - 1))) != 0) in Peek0Bits()
307 bufType _readCache;
/dports/science/afni/afni-AFNI_21.3.16/src/crorden/dcm2niix_console/charls/
H A Ddecoderstrategy.h119 if (_position < _nextFFPosition - (sizeof(bufType)-1)) in OptimizedRead()
121 _readCache |= FromBigEndian<sizeof(bufType)>::Read(_position) >> _validBits; in OptimizedRead()
150 const bufType valnew = _position[0]; in MakeValid()
243 const bool bSet = (_readCache & (static_cast<bufType>(1) << (bufType_bit_count - 1))) != 0; in ReadBit()
254 bufType valTest = _readCache; in Peek0Bits()
258 if ((valTest & (static_cast<bufType>(1) << (bufType_bit_count - 1))) != 0) in Peek0Bits()
296 using bufType = std::size_t;
297 static constexpr size_t bufType_bit_count = sizeof(bufType) * 8;
303 bufType _readCache;
/dports/devel/gdcm/gdcm-3.0.10/Utilities/gdcmcharls/
H A Ddecoderstrategy.h118 if (_position < _nextFFPosition - (sizeof(bufType)-1)) in OptimizedRead()
120 _readCache |= FromBigEndian<sizeof(bufType)>::Read(_position) >> _validBits; in OptimizedRead()
130 typedef std::size_t bufType; typedef
134 bufferbits = sizeof( bufType ) * 8
156 bufType valnew = _position[0]; in MakeValid()
250 bool bSet = (_readCache & (bufType(1) << (bufferbits - 1))) != 0; in ReadBit()
261 bufType valTest = _readCache; in Peek0Bits()
265 if ((valTest & (bufType(1) << (bufferbits - 1))) != 0) in Peek0Bits()
307 bufType _readCache;
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/Compiler/CISACodeGen/
H A DComputeShaderCodeGen.cpp43 BufferType bufType = GetBufferType(load->getPointerAddressSpace()); in ParseShaderSpecificOpcode() local
44 if (bufType == RESOURCE || bufType == UAV || bufType == SLM) in ParseShaderSpecificOpcode()
48 if (bufType == SLM) in ParseShaderSpecificOpcode()
52 if (bufType == RESOURCE || bufType == UAV) in ParseShaderSpecificOpcode()
59 BufferType bufType = GetBufferType(store->getPointerAddressSpace()); in ParseShaderSpecificOpcode() local
60 if (bufType == RESOURCE || bufType == UAV || bufType == SLM) in ParseShaderSpecificOpcode()
64 if (bufType == SLM) in ParseShaderSpecificOpcode()
78 BufferType bufType = DecodeBufferType( in ParseShaderSpecificOpcode() local
80 if (bufType == BINDLESS) // UAV buffer in ParseShaderSpecificOpcode()
H A Dhelper.cpp46 unsigned int bufType : 5; member
58 BufferType bufType, in EncodeAS4GFXResource() argument
65 temp.bits.bufType = bufType + 1; in EncodeAS4GFXResource()
67 if (bufType == SLM) in EncodeAS4GFXResource()
75 else if (bufType == STATELESS) in EncodeAS4GFXResource()
116 unsigned bufType = temp.bits.bufType - 1; in DecodeAS4GFXResource() local
119 return (BufferType)bufType; in DecodeAS4GFXResource()
172 const BufferType bufType) in UsesTypedConstantBuffer() argument
837 BufferType bufType; in getConstantAddress() local
1174 if ((bufType == CONSTANT_BUFFER || bufType == RESOURCE || isInvLoad) && directBuf) in IsReadOnlyLoadDirectCB()
[all …]
H A DShaderCodeGen.hpp403 …void SetBindingTableEntryCountAndBitmap(bool directIdx, BufferType bufType, uint32_t typeBti, uint… in SetBindingTableEntryCountAndBitmap() argument
412 if (bufType == RESOURCE) in SetBindingTableEntryCountAndBitmap()
416 else if (bufType == CONSTANT_BUFFER) in SetBindingTableEntryCountAndBitmap()
420 else if (bufType == UAV) in SetBindingTableEntryCountAndBitmap()
424 else if (bufType == RENDER_TARGET) in SetBindingTableEntryCountAndBitmap()
435 if (bufType == RESOURCE) in SetBindingTableEntryCountAndBitmap()
448 else if (bufType == CONSTANT_BUFFER) in SetBindingTableEntryCountAndBitmap()
452 else if (bufType == UAV) in SetBindingTableEntryCountAndBitmap()
456 else if (bufType == RENDER_TARGET) in SetBindingTableEntryCountAndBitmap()
/dports/games/scummvm/scummvm-2.5.1/engines/lab/
H A Dutils.cpp240 byte bufType = sourceFile->readByte(); in unDiff() local
243 if (bufType == 0) in unDiff()
245 else if (bufType == 1) in unDiff()
247 else if (bufType == 3) in unDiff()
250 error("Unexpected variable compression scheme %d", bufType); in unDiff()
252 if (bufType == 0) in unDiff()
254 else if (bufType == 1) in unDiff()
257 error("Unexpected compression scheme %d", bufType); in unDiff()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/lab/
H A Dutils.cpp240 byte bufType = sourceFile->readByte(); in unDiff() local
243 if (bufType == 0) in unDiff()
245 else if (bufType == 1) in unDiff()
247 else if (bufType == 3) in unDiff()
250 error("Unexpected variable compression scheme %d", bufType); in unDiff()
252 if (bufType == 0) in unDiff()
254 else if (bufType == 1) in unDiff()
257 error("Unexpected compression scheme %d", bufType); in unDiff()
/dports/net-im/matterhorn/matterhorn-50200.13.0/_cabal_deps/HTTP-4000.3.15/Network/
H A DTCP.hs147 class BufferType bufType => HStream bufType where
148 openStream :: String -> Int -> IO (HandleStream bufType)
149 openSocketStream :: String -> Int -> Socket -> IO (HandleStream bufType)
150 readLine :: HandleStream bufType -> IO (Result bufType)
151 readBlock :: HandleStream bufType -> Int -> IO (Result bufType)
152 writeBlock :: HandleStream bufType -> bufType -> IO (Result ())
153 close :: HandleStream bufType -> IO ()
154 closeQuick :: HandleStream bufType -> IO ()
155 closeOnEnd :: HandleStream bufType -> Bool -> IO ()
/dports/lang/elm/compiler-0.19.1/_cabal_deps/HTTP-4000.3.14/Network/
H A DTCP.hs147 class BufferType bufType => HStream bufType where
148 openStream :: String -> Int -> IO (HandleStream bufType)
149 openSocketStream :: String -> Int -> Socket -> IO (HandleStream bufType)
150 readLine :: HandleStream bufType -> IO (Result bufType)
151 readBlock :: HandleStream bufType -> Int -> IO (Result bufType)
152 writeBlock :: HandleStream bufType -> bufType -> IO (Result ())
153 close :: HandleStream bufType -> IO ()
154 closeQuick :: HandleStream bufType -> IO ()
155 closeOnEnd :: HandleStream bufType -> Bool -> IO ()
/dports/www/hs-postgrest/postgrest-8.0.0/_cabal_deps/HTTP-4000.3.16/Network/
H A DTCP.hs148 class BufferType bufType => HStream bufType where
149 openStream :: String -> Int -> IO (HandleStream bufType)
150 openSocketStream :: String -> Int -> Socket -> IO (HandleStream bufType)
151 readLine :: HandleStream bufType -> IO (Result bufType)
152 readBlock :: HandleStream bufType -> Int -> IO (Result bufType)
153 writeBlock :: HandleStream bufType -> bufType -> IO (Result ())
154 close :: HandleStream bufType -> IO ()
155 closeQuick :: HandleStream bufType -> IO ()
156 closeOnEnd :: HandleStream bufType -> Bool -> IO ()
/dports/textproc/hs-pandoc-crossref/pandoc-crossref-0.3.12.0/_cabal_deps/HTTP-4000.3.15/Network/
H A DTCP.hs147 class BufferType bufType => HStream bufType where
148 openStream :: String -> Int -> IO (HandleStream bufType)
149 openSocketStream :: String -> Int -> Socket -> IO (HandleStream bufType)
150 readLine :: HandleStream bufType -> IO (Result bufType)
151 readBlock :: HandleStream bufType -> Int -> IO (Result bufType)
152 writeBlock :: HandleStream bufType -> bufType -> IO (Result ())
153 close :: HandleStream bufType -> IO ()
154 closeQuick :: HandleStream bufType -> IO ()
155 closeOnEnd :: HandleStream bufType -> Bool -> IO ()
/dports/textproc/hs-pandoc/pandoc-2.14.2/_cabal_deps/HTTP-4000.3.16/Network/
H A DTCP.hs148 class BufferType bufType => HStream bufType where
149 openStream :: String -> Int -> IO (HandleStream bufType)
150 openSocketStream :: String -> Int -> Socket -> IO (HandleStream bufType)
151 readLine :: HandleStream bufType -> IO (Result bufType)
152 readBlock :: HandleStream bufType -> Int -> IO (Result bufType)
153 writeBlock :: HandleStream bufType -> bufType -> IO (Result ())
154 close :: HandleStream bufType -> IO ()
155 closeQuick :: HandleStream bufType -> IO ()
156 closeOnEnd :: HandleStream bufType -> Bool -> IO ()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/modules/glshared/
H A DglsFboCompletenessTests.hpp102 ImageFormat getDefaultFormat (GLenum attPoint, GLenum bufType) const;
108 void attachTargetToNew (GLenum target, GLenum bufType,
116 Image* makeImage (GLenum bufType, ImageFormat format,
118 Attachment* makeAttachment (GLenum bufType, ImageFormat format,
H A DglsFboCompletenessTests.cpp689 if (bufType == GL_NONE) in getDefaultFormat()
697 formatFlag(bufType)); in getDefaultFormat()
702 formatFlag(bufType)); in getDefaultFormat()
711 Image* makeImage (GLenum bufType, ImageFormat format, in makeImage() argument
715 switch (bufType) in makeImage()
734 Attachment* makeAttachment (GLenum bufType, ImageFormat format, in makeAttachment() argument
737 Image* const imgCfg = makeImage (bufType, format, width, height, builder); in makeAttachment()
767 imgFmt = getDefaultFormat(target, bufType); in attachTargetToNew()
803 GLenum bufType; member
829 string attTypeName (GLenum bufType) in attTypeName() argument
[all …]
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/Compiler/Optimizer/OpenCLPasses/Atomics/
H A DResolveOCLAtomics.hpp28 BufferType bufType; member
81 void processOCLAtomic(llvm::CallInst& callInst, AtomicOp op, BufferType bufType);
87 llvm::CallInst* genGetBufferPtr(llvm::CallInst& callInst, BufferType bufType);
H A DResolveOCLAtomics.cpp96 processOCLAtomic(callInst, attrs.op, attrs.bufType); in visitCallInst()
101 void ResolveOCLAtomics::processOCLAtomic(CallInst& callInst, AtomicOp op, BufferType bufType) in processOCLAtomic() argument
121 const bool is64bit = PtrTy && isA64Ptr(PtrTy, m_CGCtx) && bufType != SLM; in processOCLAtomic()
211 CallInst* ResolveOCLAtomics::genGetBufferPtr(CallInst& callInst, BufferType bufType) in genGetBufferPtr() argument
214 ConstantInt* bufTypeVal = ConstantInt::get(m_Int32Ty, bufType); in genGetBufferPtr()
217 if (bufType == SLM) in genGetBufferPtr()
/dports/devel/tcl-memchan/Memchan2.3/generic/
H A Dbuf.c128 Buf_RegisterType (bufType) in Buf_RegisterType() argument
129 Buf_BufferType* bufType; in Buf_RegisterType()
337 Buf_Create (bufType, clientData) in Buf_Create() argument
338 Buf_BufferType* bufType; in Buf_Create()
343 iBuf->type = bufType;
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/Compiler/
H A DDynamicTextureFolding.cpp100 BufferType bufType; in FoldResInfoValue() local
105 bufType = DecodeAS4GFXResource(addrSpace, directIdx, textureIndex); in FoldResInfoValue()
106 if (!directIdx || (bufType != RESOURCE && bufType != UAV)) in FoldResInfoValue()
260 BufferType bufType; in visitCallInst() local
265 bufType = DecodeAS4GFXResource(addrSpace, directIdx, textureIndex); in visitCallInst()
267 if (!directIdx || (bufType != RESOURCE && bufType != UAV)) in visitCallInst()
H A DFixResourcePtr.cpp96 BufferType bufType = (BufferType)(cast<ConstantInt>(bufPtr->getOperand(1))->getZExtValue()); in RemoveGetBufferPtr() local
97 uint encodeAS = EncodeAS4GFXResource(*bufIdx, bufType); in RemoveGetBufferPtr()
99 (bufType == CONSTANT_BUFFER || bufType == RESOURCE || bufType == UAV)) in RemoveGetBufferPtr()
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/src/
H A Dfilterengine.hpp223 int srcType, int dstType, int bufType,
233 int srcType, int dstType, int bufType,
256 int bufType; member in cv::FilterEngine
290 Ptr<BaseRowFilter> getLinearRowFilter(int srcType, int bufType,
295 Ptr<BaseColumnFilter> getLinearColumnFilter(int bufType, int dstType,
/dports/graphics/embree/embree-3.13.2/tutorials/motion_blur_geometry/
H A Dmotion_blur_geometry_device.cpp82 RTCBufferType bufType = RTC_BUFFER_TYPE_VERTEX; in addSphere() local
83 …Vec3ff *vertex = (Vec3ff*)rtcSetNewGeometryBuffer(geom, bufType, t, RTC_FORMAT_FLOAT4, sizeof(Vec3… in addSphere()
111 RTCBufferType bufType = RTC_BUFFER_TYPE_VERTEX; in addTriangleCube() local
112 …Vec3fa* vertices = (Vec3fa*) rtcSetNewGeometryBuffer(geom,bufType,t,RTC_FORMAT_FLOAT3,sizeof(Vec3f… in addTriangleCube()
153 RTCBufferType bufType = RTC_BUFFER_TYPE_VERTEX; in addQuadCube() local
154 …Vec3fa* vertices = (Vec3fa*) rtcSetNewGeometryBuffer(geom,bufType,t,RTC_FORMAT_FLOAT3,sizeof(Vec3f… in addQuadCube()
193 RTCBufferType bufType = RTC_BUFFER_TYPE_VERTEX; in addSubdivCube() local
194 …Vec3fa* vertices = (Vec3fa*) rtcSetNewGeometryBuffer(geom,bufType,t,RTC_FORMAT_FLOAT3,sizeof(Vec3f… in addSubdivCube()
226 RTCBufferType bufType = RTC_BUFFER_TYPE_VERTEX; in addCurve() local
261 RTCBufferType bufType = RTC_BUFFER_TYPE_VERTEX; in addLines() local
[all …]
/dports/biology/bedtools/bedtools2-2.30.0/src/utils/FileRecordTools/FileReaders/
H A DBufferedStreamMgr.h32 typedef unsigned char bufType; typedef
33 bufType *_mainBuf;

12345678910>>...18