Lines Matching refs:threadCount

374 		html += "<tr><td>Number of threads:</td><td><select name='threadCount' title='The number of rendering threads to be used.'>\n";
375 html += "<option value='-1'" + (config.threadCount == -1 ? selected : empty) + ">Core count</option>\n";
376 html += "<option value='0'" + (config.threadCount == 0 ? selected : empty) + ">Process affinity (default)</option>\n";
377 html += "<option value='1'" + (config.threadCount == 1 ? selected : empty) + ">1</option>\n";
378 html += "<option value='2'" + (config.threadCount == 2 ? selected : empty) + ">2</option>\n";
379 html += "<option value='3'" + (config.threadCount == 3 ? selected : empty) + ">3</option>\n";
380 html += "<option value='4'" + (config.threadCount == 4 ? selected : empty) + ">4</option>\n";
381 html += "<option value='5'" + (config.threadCount == 5 ? selected : empty) + ">5</option>\n";
382 html += "<option value='6'" + (config.threadCount == 6 ? selected : empty) + ">6</option>\n";
383 html += "<option value='7'" + (config.threadCount == 7 ? selected : empty) + ">7</option>\n";
384 html += "<option value='8'" + (config.threadCount == 8 ? selected : empty) + ">8</option>\n";
385 html += "<option value='9'" + (config.threadCount == 9 ? selected : empty) + ">9</option>\n";
386 html += "<option value='10'" + (config.threadCount == 10 ? selected : empty) + ">10</option>\n";
387 html += "<option value='11'" + (config.threadCount == 11 ? selected : empty) + ">11</option>\n";
388 html += "<option value='12'" + (config.threadCount == 12 ? selected : empty) + ">12</option>\n";
389 html += "<option value='13'" + (config.threadCount == 13 ? selected : empty) + ">13</option>\n";
390 html += "<option value='14'" + (config.threadCount == 14 ? selected : empty) + ">14</option>\n";
391 html += "<option value='15'" + (config.threadCount == 15 ? selected : empty) + ">15</option>\n";
392 html += "<option value='16'" + (config.threadCount == 16 ? selected : empty) + ">16</option>\n";
608 else if(sscanf(post, "threadCount=%d", &integer))
610 config.threadCount = integer;
732 config.threadCount = ini.getInteger("Processor", "ThreadCount", DEFAULT_THREAD_COUNT);
790 ini.addValue("Processor", "ThreadCount", itoa(config.threadCount));