Home
last modified time | relevance | path

Searched refs:tSize (Results 1 – 14 of 14) sorted by relevance

/external/lzma/CPP/Common/
DCrcReg.cpp33 bool SetFunctions(UInt32 tSize);
42 bool CCrcHasher::SetFunctions(UInt32 tSize) in SetFunctions() argument
46 if (tSize == 1) in SetFunctions()
48 else if (tSize == 4) in SetFunctions()
55 else if (tSize == 8) in SetFunctions()
/external/llvm-project/mlir/lib/Dialect/Affine/Transforms/
DLoopTiling.cpp146 unsigned tSize = in getTileSizes() local
152 (*tileSizes)[i] = tSize; in getTileSizes()
176 for (unsigned tSize : tileSizes) in runOnFunction() local
177 diag << tSize << ' '; in runOnFunction()
/external/tensorflow/tensorflow/core/platform/hadoop/
Dhadoop_file_system.cc55 std::function<tSize(hdfsFS, hdfsFile, tOffset, void*, tSize)> hdfsPread;
56 std::function<tSize(hdfsFS, hdfsFile, const void*, tSize)> hdfsWrite;
60 std::function<hdfsFile(hdfsFS, const char*, int, int, short, tSize)>
260 tSize r = libhdfs()->hdfsPread(fs_, file_, static_cast<tOffset>(offset), in Read()
261 dst, static_cast<tSize>(read_n)); in Read()
336 static_cast<size_t>(std::numeric_limits<tSize>::max() - 2); in Append()
339 tSize w = libhdfs()->hdfsWrite(fs_, file_, data.data() + cur_pos, in Append()
340 static_cast<tSize>(write_len)); in Append()
Dhadoop_file_system_test.cc315 static_cast<size_t>(std::numeric_limits<tSize>::max()) + 1024; in TEST_F()
/external/OpenCL-CTS/test_conformance/integer_ops/
Dtest_upsample.cpp169 size_t i, tSize; in create_upsample_data() local
171 tSize = get_explicit_type_size( type ); in create_upsample_data()
172 outData = malloc( tSize * count * 2 ); in create_upsample_data()
174 switch( tSize ) in create_upsample_data()
216 log_error( "ERROR: unknown type size: %ld\n", tSize ); in create_upsample_data()
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/hadoop/
Dhadoop_filesystem.cc88 std::function<tSize(hdfsFS, hdfsFile, tOffset, void*, tSize)> hdfsPread;
89 std::function<tSize(hdfsFS, hdfsFile, const void*, tSize)> hdfsWrite;
93 std::function<hdfsFile(hdfsFS, const char*, int, int, short, tSize)>
297 dst, static_cast<tSize>(read_n)); in Read()
369 static_cast<size_t>(std::numeric_limits<tSize>::max() - 2); in Append()
372 tSize w = libhdfs->hdfsWrite(fs, handle, buffer + cur_pos, in Append()
373 static_cast<tSize>(write_len)); in Append()
Dhadoop_filesystem_test.cc440 static_cast<size_t>(std::numeric_limits<tSize>::max()) + 1024; in TEST_F()
/external/ms-tpm-20-ref/TPMCmd/tpm/src/support/
DMathOnByteBuffers.c149 NUMBYTES tSize = (NUMBYTES)nSize; in ModExpB() local
165 BnToBytes(bnC, c, &tSize); in ModExpB()
/external/icu/icu4c/source/io/
Dufmt_cmn.cpp228 UChar *target, int32_t tSize) in ufmt_defaultCPToUnicode() argument
245 ucnv_toUnicode(defConverter, &alias, alias + tSize, &s, s + sSize - 1, in ufmt_defaultCPToUnicode()
Dufmt_cmn.h157 UChar *target, int32_t tSize);
/external/icu/icu4c/source/test/intltest/
Dtscoll.cpp99 int32_t sSize = pieceSize, tSize = pieceSize; in compareUsingPartials() local
104 while(sSize == pieceSize && tSize == pieceSize && partialSKResult == 0) { in compareUsingPartials()
108 tSize = ucol_nextSortKeyPart(coll, &tIter, tState, tBuf, pieceSize, &status); in compareUsingPartials()
/external/icu/icu4c/source/test/cintltst/
Dcallcoll.c239 int32_t sSize = pieceSize, tSize = pieceSize; in compareUsingPartials() local
250 while(sSize == pieceSize && tSize == pieceSize && partialSKResult == 0) { in compareUsingPartials()
254 tSize = ucol_nextSortKeyPart(coll, &tIter, tState, tBuf, pieceSize, status); in compareUsingPartials()
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_from_tgsi.cpp4199 const unsigned tSize = code->fileSize(TGSI_FILE_TEMPORARY); in Converter() local
4203 tData.setup(TGSI_FILE_TEMPORARY, 0, 0, tSize, 4, 4, FILE_GPR, 0); in Converter()
4204 lData.setup(TGSI_FILE_TEMPORARY, 1, 0, tSize, 4, 4, FILE_MEMORY_LOCAL, 0); in Converter()
/external/zstd/lib/compress/
Dzstd_compress.c1210 U32 const tSize = (U32)(srcSize + dictSize); in ZSTD_adjustCParams_internal() local
1212 U32 const srcLog = (tSize < hashSizeMin) ? ZSTD_HASHLOG_MIN : in ZSTD_adjustCParams_internal()
1213 ZSTD_highbit32(tSize-1) + 1; in ZSTD_adjustCParams_internal()