Home
last modified time | relevance | path

Searched refs:tsp (Results 1 – 21 of 21) sorted by relevance

/external/tcpdump/
Dprint-timed.c50 struct tsp *tsp = (struct tsp *)bp; in timed_print() local
54 if (endof(tsp->tsp_type) > snapend) { in timed_print()
58 if (tsp->tsp_type < TSPTYPENUMBER) in timed_print()
59 printf("TSP_%s", tsptype[tsp->tsp_type]); in timed_print()
61 printf("(tsp_type %#x)", tsp->tsp_type); in timed_print()
63 if (endof(tsp->tsp_vers) > snapend) { in timed_print()
67 printf(" vers %d", tsp->tsp_vers); in timed_print()
69 if (endof(tsp->tsp_seq) > snapend) { in timed_print()
73 printf(" seq %d", tsp->tsp_seq); in timed_print()
75 if (tsp->tsp_type == TSP_LOOP) { in timed_print()
[all …]
Dtimed.h47 struct tsp { struct
/external/chromium/third_party/libevent/compat/sys/
D_libevent_time.h105 #define timespecclear(tsp) (tsp)->tv_sec = (tsp)->tv_nsec = 0 argument
106 #define timespecisset(tsp) ((tsp)->tv_sec || (tsp)->tv_nsec) argument
107 #define timespeccmp(tsp, usp, cmp) \ argument
108 (((tsp)->tv_sec == (usp)->tv_sec) ? \
109 ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
110 ((tsp)->tv_sec cmp (usp)->tv_sec))
111 #define timespecadd(tsp, usp, vsp) \ argument
113 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \
114 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
120 #define timespecsub(tsp, usp, vsp) \ argument
[all …]
D_time.h105 #define timespecclear(tsp) (tsp)->tv_sec = (tsp)->tv_nsec = 0 argument
106 #define timespecisset(tsp) ((tsp)->tv_sec || (tsp)->tv_nsec) argument
107 #define timespeccmp(tsp, usp, cmp) \ argument
108 (((tsp)->tv_sec == (usp)->tv_sec) ? \
109 ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
110 ((tsp)->tv_sec cmp (usp)->tv_sec))
111 #define timespecadd(tsp, usp, vsp) \ argument
113 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \
114 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
120 #define timespecsub(tsp, usp, vsp) \ argument
[all …]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/tsp/
DTimeStampRespTest.java18 package org.apache.harmony.security.tests.x509.tsp;
38 import org.apache.harmony.security.x509.tsp.MessageImprint;
39 import org.apache.harmony.security.x509.tsp.PKIFailureInfo;
40 import org.apache.harmony.security.x509.tsp.PKIStatus;
41 import org.apache.harmony.security.x509.tsp.PKIStatusInfo;
42 import org.apache.harmony.security.x509.tsp.TSTInfo;
43 import org.apache.harmony.security.x509.tsp.TimeStampResp;
DPKIStatusInfoTest.java18 package org.apache.harmony.security.tests.x509.tsp;
24 import org.apache.harmony.security.x509.tsp.PKIFailureInfo;
25 import org.apache.harmony.security.x509.tsp.PKIStatus;
26 import org.apache.harmony.security.x509.tsp.PKIStatusInfo;
DTimeStampReqTest.java18 package org.apache.harmony.security.tests.x509.tsp;
29 import org.apache.harmony.security.x509.tsp.MessageImprint;
30 import org.apache.harmony.security.x509.tsp.TimeStampReq;
DTSTInfoTest.java18 package org.apache.harmony.security.tests.x509.tsp;
32 import org.apache.harmony.security.x509.tsp.MessageImprint;
33 import org.apache.harmony.security.x509.tsp.TSTInfo;
/external/webkit/Tools/android/flex-2.5.4a/
Ddfa.c250 register int stkpos, ns, tsp; local
333 tsp = trans1[ns] + MARKER_DIFFERENCE;
335 if ( tsp != NO_TRANSITION )
337 if ( ! IS_MARKED(tsp) )
338 STACK_STATE(tsp)
340 tsp = trans2[ns];
342 if ( tsp != NO_TRANSITION && ! IS_MARKED(tsp) )
343 STACK_STATE(tsp)
928 int ns, tsp, sym, i, j, lenccl, ch, numstates, ccllist; local
936 tsp = trans1[ns];
[all …]
/external/llvm/utils/
DNightlyTest.gnuplot41 "running_Olden_cbe_time.txt" u 1:6 t "tsp" with lines, \
58 "running_Olden_cbe_time.txt" u 1:6 t "tsp" with lines, \
78 "running_Olden_jit_time.txt" u 1:6 t "tsp" with lines, \
95 "running_Olden_jit_time.txt" u 1:6 t "tsp" with lines, \
115 "running_Olden_llc_time.txt" u 1:6 t "tsp" with lines, \
132 "running_Olden_llc_time.txt" u 1:6 t "tsp" with lines, \
153 "running_Olden_opt_time.txt" u 1:6 t "tsp" with lines, \
170 "running_Olden_opt_time.txt" u 1:6 t "tsp" with lines, \
191 "running_Olden_bytecode.txt" u 1:6 t "tsp" with lines, \
208 "running_Olden_bytecode.txt" u 1:6 t "tsp" with lines, \
/external/llvm/lib/CodeGen/
DBranchFolding.h57 SameTailElt(MPIterator mp, MachineBasicBlock::iterator tsp) in SameTailElt() argument
58 : MPIter(mp), TailStartPos(tsp) {} in SameTailElt()
/external/clang/lib/StaticAnalyzer/Checkers/
DIteratorsChecker.cpp191 static RefKind getTemplateKind(const TemplateSpecializationType *tsp) { in getTemplateKind() argument
192 const TemplateName &tname = tsp->getTemplateName(); in getTemplateKind()
200 if (const TemplateSpecializationType *tsp = in getTemplateKind() local
202 return getTemplateKind(tsp); in getTemplateKind()
208 if (const TemplateSpecializationType *tsp = in getTemplateKind() local
210 return getTemplateKind(tsp); in getTemplateKind()
/external/llvm/test/CodeGen/ARM/
D2009-08-21-PostRAKill.ll10 define %struct.tree* @tsp(%struct.tree* %t, i32 %nproc) nounwind {
/external/blktrace/
Dblktrace.c502 static inline void make_timespec(struct timespec *tsp, long delta_msec) in make_timespec() argument
507 tsp->tv_sec = now.tv_sec; in make_timespec()
508 tsp->tv_nsec = 1000L * now.tv_usec; in make_timespec()
510 tsp->tv_nsec += (delta_msec * 1000000L); in make_timespec()
511 if (tsp->tv_nsec > 1000000000L) { in make_timespec()
512 long secs = tsp->tv_nsec / 1000000000L; in make_timespec()
514 tsp->tv_sec += secs; in make_timespec()
515 tsp->tv_nsec -= (secs * 1000000000L); in make_timespec()
/external/bouncycastle/
Dbouncycastle.config18 org/bouncycastle/asn1/tsp \
40 org/bouncycastle/tsp \
/external/webkit/Source/WebKit/gtk/po/
Dlv.po263 "uzņēmuma prasa, lai tas būtu konkurētspējīgs. Viņš uzskata, ka, samazinot "
264 "nodokļus, uzņēmēju aktivitāte palielinātos un augtu arī konkurētspēja."
/external/llvm/lib/Target/ARM/
DARMInstrThumb2.td3195 (outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp!, $mode",
3198 (outs),(ins i32imm:$mode),NoItinerary,"srsdb","\tsp, $mode",
3201 (outs),(ins i32imm:$mode),NoItinerary,"srsia","\tsp!, $mode",
3204 (outs), (ins i32imm:$mode),NoItinerary,"srsia","\tsp, $mode",
DARMInstrInfo.td1648 NoItinerary, "srs${amode}\tsp!, $mode",
1657 NoItinerary, "srs${amode}\tsp, $mode",
/external/bluetooth/glib/po/
Dsv.po558 msgstr "bakåtspårningsgräns nådd"
/external/valgrind/main/coregrind/m_syswrap/
Dsyswrap-linux.c1054 struct vki_timespec *, tsp, vki_sigset_t *, sigmask, in PRE()
/external/webkit/PerformanceTests/Parser/resources/
Dfinal-url-en6088 http://focus.ti.com/general/docs/lit/getliterature.tsp?literatureNumber=sbou012&fileType=pdf
17633 http://tspweb02.tsp.utexas.edu/webarchive/02-05-01/2001020501_s05_See.html
53764 http://www.liebsoft.com/index.cfm/products/tsp/features
76379 http://www.tsp.gov/curinfo/loanprogram.html
76380 http://www.tsp.gov/faq/faq7.html