/third_party/gptfdisk/ |
H A D | support.cc | 139 uint64_t IeeeToInt(string inValue, uint64_t sSize, uint64_t low, uint64_t high, uint32_t sectorAlignment, uint64_t def) { in IeeeToInt() argument 146 if (sSize == 0) { in IeeeToInt() 147 sSize = SECTOR_SIZE; in IeeeToInt() 186 mult = bytesPerUnit / sSize; in IeeeToInt() 187 divide = sSize / bytesPerUnit; in IeeeToInt()
|
H A D | gptcl.cc | 71 uint64_t low, high, startSector, endSector, sSize, mainTableLBA, secondTableLBA; in DoOptions() local 169 sSize = GetBlockSize(); in DoOptions() 328 startSector = IeeeToInt(GetString(newPartInfo, 2), sSize, low, high, sectorAlignment, low); in DoOptions() 329 endSector = IeeeToInt(GetString(newPartInfo, 3), sSize, startSector, high, sectorAlignment, high); in DoOptions()
|
H A D | support.h | 75 uint64_t IeeeToInt(std::string IeeeValue, uint64_t sSize, uint64_t low, uint64_t high, uint32_t sectorAlignment, uint64_t def = 0);
|
/third_party/icu/icu4c/source/io/ |
H A D | ufmt_cmn.cpp | 227 ufmt_defaultCPToUnicode(const char *s, int32_t sSize, in ufmt_defaultCPToUnicode() argument 237 if(sSize <= 0) { in ufmt_defaultCPToUnicode() 238 sSize = static_cast<int32_t>(uprv_strlen(s)) + 1; in ufmt_defaultCPToUnicode() 245 ucnv_toUnicode(defConverter, &alias, alias + tSize, &s, s + sSize - 1, in ufmt_defaultCPToUnicode()
|
H A D | ufmt_cmn.h | 149 * @param sSize The size of s to convert. 156 ufmt_defaultCPToUnicode(const char *s, int32_t sSize,
|
/third_party/skia/third_party/externals/icu/source/io/ |
H A D | ufmt_cmn.cpp | 227 ufmt_defaultCPToUnicode(const char *s, int32_t sSize, in ufmt_defaultCPToUnicode() argument 237 if(sSize <= 0) { in ufmt_defaultCPToUnicode() 238 sSize = static_cast<int32_t>(uprv_strlen(s)) + 1; in ufmt_defaultCPToUnicode() 245 ucnv_toUnicode(defConverter, &alias, alias + tSize, &s, s + sSize - 1, in ufmt_defaultCPToUnicode()
|
H A D | ufmt_cmn.h | 149 * @param sSize The size of s to convert. 156 ufmt_defaultCPToUnicode(const char *s, int32_t sSize,
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | tscoll.cpp | 99 int32_t sSize = pieceSize, tSize = pieceSize; in compareUsingPartials() local 104 while(sSize == pieceSize && tSize == pieceSize && partialSKResult == 0) { in compareUsingPartials() 107 sSize = ucol_nextSortKeyPart(coll, &sIter, sState, sBuf, pieceSize, &status); in compareUsingPartials()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | callcoll.c | 240 int32_t sSize = pieceSize, tSize = pieceSize; in compareUsingPartials() local 251 while(sSize == pieceSize && tSize == pieceSize && partialSKResult == 0) { in compareUsingPartials() 254 sSize = ucol_nextSortKeyPart(coll, &sIter, sState, sBuf, pieceSize, status); in compareUsingPartials()
|
/third_party/skia/src/ports/ |
H A D | SkFontHost_win.cpp | 97 size_t sSize = WideCharToMultiByte(CP_UTF8, 0, t, -1, nullptr, 0, nullptr, nullptr); in tchar_to_skstring() local 98 s->resize(sSize); in tchar_to_skstring() 99 WideCharToMultiByte(CP_UTF8, 0, t, -1, s->writable_str(), sSize, nullptr, nullptr); in tchar_to_skstring()
|
/third_party/ffmpeg/libavformat/ |
H A D | movenc.c | 234 int sSize = track->entry ? track->cluster[0].size / track->cluster[0].entries : 0; in mov_write_stsz_tag() local 235 sSize = FFMAX(1, sSize); // adpcm mono case could make sSize == 0 in mov_write_stsz_tag() 236 avio_wb32(pb, sSize); // sample size in mov_write_stsz_tag()
|