Searched refs:ts (Results 101 - 125 of 287) sorted by relevance

1234567891011>>

/external/clang/test/Analysis/
H A Dtaint-generic.c140 size_t ts; local
141 scanf("%zd", &ts);
143 int *buf1 = (int*)malloc(ts*sizeof(int)); // expected-warning {{Untrusted data is used to specify the buffer size}}
144 char *dst = (char*)calloc(ts, sizeof(char)); //expected-warning {{Untrusted data is used to specify the buffer size}}
145 bcopy(buf1, dst, ts); // expected-warning {{Untrusted data is used to specify the buffer size}}
146 __builtin_memcpy(dst, buf1, (ts + 4)*sizeof(char)); // expected-warning {{Untrusted data is used to specify the buffer size}}
149 char *dst2 = (char*)malloc(ts*sizeof(char)); // expected-warning {{Untrusted data is used to specify the buffer size}}
150 strncat(dst2, dst, ts); // no-warning
/external/clang/test/Preprocessor/
H A Dpragma_diagnostic_sections.cpp26 TS<int> ts; local
27 ts.m();
/external/elfutils/
H A DMakefile.am49 rpmbuild -ts --sign elfutils-@PACKAGE_VERSION@.tar.gz
/external/libpcap/
H A Dpcap-win32.c198 ULONGLONG ts; local
302 ts = header->ts;
303 pcap_header.ts.tv_sec = (int)(ts >> 32);
304 ts = (ts & 0xffffffffi64) * 1000000;
305 ts += 0x80000000; /* rounding */
306 pcap_header.ts.tv_usec = (int)(ts >> 3
[all...]
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEConvolveMatrix.cpp453 static TextStream& operator<<(TextStream& ts, const EdgeModeType& type) argument
457 ts << "UNKNOWN";
460 ts << "DUPLICATE";
463 ts << "WRAP";
466 ts << "NONE";
469 return ts;
472 TextStream& FEConvolveMatrix::externalRepresentation(TextStream& ts, int indent) const argument
474 writeIndent(ts, indent);
475 ts << "[feConvolveMatrix";
476 FilterEffect::externalRepresentation(ts);
[all...]
H A DFEGaussianBlur.cpp226 TextStream& FEGaussianBlur::externalRepresentation(TextStream& ts, int indent) const argument
228 writeIndent(ts, indent);
229 ts << "[feGaussianBlur";
230 FilterEffect::externalRepresentation(ts);
231 ts << " stdDeviation=\"" << m_stdX << ", " << m_stdY << "\"]\n";
232 inputEffect(0)->externalRepresentation(ts, indent + 1);
233 return ts;
H A DFETurbulence.cpp374 static TextStream& operator<<(TextStream& ts, const TurbulenceType& type) argument
378 ts << "UNKNOWN";
381 ts << "TURBULANCE";
384 ts << "NOISE";
387 return ts;
390 TextStream& FETurbulence::externalRepresentation(TextStream& ts, int indent) const argument
392 writeIndent(ts, indent);
393 ts << "[feTurbulence";
394 FilterEffect::externalRepresentation(ts);
395 ts << " typ
[all...]
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
H A DgUnit.g100 gUnitTestSuite ts = null;
105 if ( $r2==null ) ts = new gUnitTestSuite($r1.text);
106 else ts = new gUnitTestSuite($r1.text, $r2.text);
110 ts = new gUnitTestSuite();
111 ts.setLexicalRuleName($t.text);
116 testcase[ts]+ {grammarInfo.addRuleTestSuite(ts);}
120 testcase[gUnitTestSuite ts] // individual test within a (rule)testsuite
121 : input expect {$ts.addTestCase($input.in, $expect.out);}
/external/chromium/base/
H A Dtime_posix.cc171 struct timespec ts; local
172 if (clock_gettime(CLOCK_MONOTONIC, &ts) != 0) {
178 (static_cast<int64>(ts.tv_sec) * Time::kMicrosecondsPerSecond) +
179 (static_cast<int64>(ts.tv_nsec) / Time::kNanosecondsPerMicrosecond);
/external/chromium/chrome/browser/history/
H A Dvisitsegment_database.h51 bool IncreaseSegmentVisitCount(SegmentID segment_id, base::Time ts,
/external/chromium-trace/trace-viewer/src/
H A Dtimeline_viewport.js337 var ts = this.positionWorld_;
338 if (ts >= viewLWorld && ts < viewRWorld) {
339 var viewX = vp.xWorldToView(ts);
360 var ts = this.positionWorld_;
361 if (ts >= viewLWorld && ts < viewRWorld) {
362 var viewX = vp.xWorldToView(ts);
H A Dlinux_perf_power_parser.js35 cpuStateSlice: function(ts, targetCpuNumber, eventType, cpuState) {
49 powerCounter.timestamps.push(ts);
53 cpuIdleSlice: function(ts, targetCpuNumber, cpuState) {
66 powerCounter.timestamps.push(ts);
69 cpuFrequencySlice: function(ts, targetCpuNumber, powerState) {
78 powerCounter.timestamps.push(ts);
85 powerStartEvent: function(eventName, cpuNumber, pid, ts, eventBase) {
92 this.cpuStateSlice(ts, targetCpuNumber, event[1], cpuState);
96 powerFrequencyEvent: function(eventName, cpuNumber, pid, ts, eventBase) {
104 this.cpuFrequencySlice(ts, targetCpuNumbe
[all...]
H A Dlinux_perf_importer.js51 switchRunningLinuxPid: function(importer, prevState, ts, pid, comm, prio) {
54 var duration = ts - this.lastActiveTs;
74 this.lastActiveTs = ts;
454 markPidRunnable: function(ts, pid, comm, prio) {
466 traceClockSyncEvent: function(eventName, cpuNumber, pid, ts, eventBase) {
472 perfTS: ts,
481 traceMarkingWriteEvent: function(eventName, cpuNumber, pid, ts, eventBase,
501 return handler(writeEventName, cpuNumber, pid, ts, event, threadName);
531 var ts = parseFloat(eventBase[3]) * 1000;
539 if (!handler(eventName, cpuNumber, pid, ts, eventBas
[all...]
/external/clang/test/PCH/
H A Dcxx-templates.cpp34 TS5 ts(0);
/external/qemu/audio/
H A Daudio.h122 void AUD_init_time_stamp_out (SWVoiceOut *sw, QEMUAudioTimeStamp *ts);
123 uint64_t AUD_get_elapsed_usec_out (SWVoiceOut *sw, QEMUAudioTimeStamp *ts);
142 void AUD_init_time_stamp_in (SWVoiceIn *sw, QEMUAudioTimeStamp *ts);
143 uint64_t AUD_get_elapsed_usec_in (SWVoiceIn *sw, QEMUAudioTimeStamp *ts);
/external/webkit/LayoutTests/fast/events/touch/script-tests/
H A Ddocument-create-touch-list.js22 ts = ev;
23 shouldBe("ts.touches.length", "2");
24 shouldBe("ts.touches[0].identifier", "12341");
25 shouldBe("ts.touches[0].clientX", "60");
26 shouldBe("ts.touches[1].screenY", "120");
27 shouldBe("ts.ctrlKey", "true");
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
H A DCCVideoLayerImpl.cpp163 void CCVideoLayerImpl::dumpLayerProperties(TextStream& ts, int indent) const argument
165 writeIndent(ts, indent);
166 ts << "video layer\n";
167 CCLayerImpl::dumpLayerProperties(ts, indent);
/external/blktrace/btt/
H A Dplat.c67 void plat_x2c(void *info, __u64 ts, __u64 latency) argument
69 double now = TO_SEC(ts);
/external/srtp/include/
H A Dsrtp_priv.h79 uint32_t ts; /* timestamp */ member in struct:__anon12523
93 uint32_t ts; /* timestamp */ member in struct:__anon12524
/external/valgrind/main/helgrind/tests/
H A Dtc08_hbl2.c105 struct timespec ts = { 0, 1000 * 1000 }; local
115 nanosleep(&ts, 0);
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
H A DModelConverter.java66 TriStrip ts = new TriStrip();
67 ts.setStitchStrips(stitch);
68 ts.setCacheSize(cacheSize);
69 ts.setListsOnly(listOnly);
70 ts.setMinStripSize(minStripSize);
77 PrimitiveGroup[] groups = ts.generateStrips(indices);
/external/dhcpcd/
H A Dcommon.c148 struct timespec ts; local
152 if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0) {
159 if (clock_gettime(posix_clock, &ts) == 0) {
160 tp->tv_sec = ts.tv_sec;
161 tp->tv_usec = ts.tv_nsec / 1000;
/external/stressapptest/src/
H A Ddisk_blocks.cc136 struct timespec ts; local
140 ts.tv_sec = tp.tv_sec;
141 ts.tv_nsec = tp.tv_usec * 1000;
142 ts.tv_sec += 2; // Wait for 2 seconds.
145 result = pthread_cond_timedwait(&data_condition_, &data_mutex_, &ts);
/external/webrtc/src/system_wrappers/interface/
H A Dtick_util.h166 struct timespec ts; local
168 clock_gettime(CLOCK_REALTIME, &ts);
170 clock_gettime(CLOCK_MONOTONIC, &ts);
172 result._ticks = 1000000000LL * static_cast<WebRtc_Word64>(ts.tv_sec) + static_cast<WebRtc_Word64>(ts.tv_nsec);
/external/ppp/pppd/
H A Deap.c434 struct t_server *ts; local
448 ts = (struct t_server *)esp->es_server.ea_session;
449 if (ts != NULL) {
450 t_serverclose(ts);
553 if ((ts = t_serveropenraw(&tpw.pebuf, tce)) == NULL)
555 esp->es_server.ea_session = (void *)ts;
559 t_serveraddexdata(ts, vals, 2);
561 t_servergenexp(ts);
570 ts = (struct t_server *)esp->es_server.ea_session;
571 if (ts !
650 struct t_server *ts; local
1734 struct t_server *ts; local
[all...]

Completed in 2213 milliseconds

1234567891011>>