Home
last modified time | relevance | path

Searched refs:itoa (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/Main/
DSwiftConfig.cpp32 std::string itoa(int number) in itoa() function
405 …html += "<tr><td>Optimization pass " + itoa(pass + 1) + ":</td><td><select name='optimization" + i… in page()
445 …nput type='text' size='10' maxlength='10' name='minPrimitives' value='" + itoa(config.minPrimitive… in page()
446 …nput type='text' size='10' maxlength='10' name='maxPrimitives' value='" + itoa(config.maxPrimitive… in page()
467 html += "<p>Frame: " + itoa(profiler.framesTotal) + "</p>\n"; in profile()
496 …html += "<div style='position:relative; float:left; width:" + itoa(rastTime) + "px; height:40px;… in profile()
497 …html += "<div style='position:relative; float:left; width:" + itoa(pipeTime) + "px; height:40px;… in profile()
498 …html += "<div style='position:relative; float:left; width:" + itoa(interpTime) + "px; height:40px;… in profile()
499 …html += "<div style='position:relative; float:left; width:" + itoa(shaderTime) + "px; height:40px;… in profile()
500 …html += "<div style='position:relative; float:left; width:" + itoa(texTime) + "px; height:40px;… in profile()
[all …]
/external/icu/icu4c/source/test/intltest/
Drestsnew.cpp51 itoa(int32_t i, char* buf) in itoa() function
360 expected+=itoa(row, buf); in TestIteration()
368 expected+=itoa(row, buf); in TestIteration()
369 expected+=itoa(col, buf); in TestIteration()
572 expected+=itoa(row, buf); in TestOtherAPI()
583 expected+=itoa(row, buf); in TestOtherAPI()
584 expected+=itoa(col, buf); in TestOtherAPI()
770 expected_string += itoa(j,buf); in testTag()
805 expected_string += itoa(index,buf); in testTag()
855 expected_string += itoa(row,buf); in testTag()
[all …]
Drestest.cpp52 itoa(int32_t i, char* buf) in itoa() function
435 expected_string += itoa(j,buf); in testTag()
457 expected_string += itoa(index,buf); in testTag()
/external/fmtlib/
DREADME.rst80 fmt can be used as a safe portable replacement for ``itoa``:
85 w << 42; // replaces itoa(42, buffer, 10)
86 w << fmt::hex(42); // replaces itoa(42, buffer, 16)