HomeSort by relevance Sort by last modified time
    Searched defs:tp (Results 26 - 50 of 376) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/syslinux/core/thread/
timeout.c 17 struct thread_list *tp; local
24 for (tp = curr->list.next; tp != &curr->list; tp = tp->next) {
25 t = container_of(tp, struct thread, list);
  /system/security/keystore/
keystore_keymaster_enforcement.h 34 struct timespec tp; variable in typeref:struct:keystore::KeystoreKeymasterEnforcement::timespec
35 int err = clock_gettime(CLOCK_MONOTONIC, &tp);
36 if (err || tp.tv_sec < 0)
38 return static_cast<uint32_t>(tp.tv_sec);
  /cts/tests/tests/text/src/android/text/style/cts/
MaskFilterSpanTest.java 46 TextPaint tp = new TextPaint(); local
47 assertNull(tp.getMaskFilter());
49 maskFilterSpan.updateDrawState(tp);
50 assertSame(mf, tp.getMaskFilter());
StrikethroughSpanTest.java 52 TextPaint tp = new TextPaint(); local
53 tp.setStrikeThruText(false);
54 assertFalse(tp.isStrikeThruText());
56 strikethroughSpan.updateDrawState(tp);
57 assertTrue(tp.isStrikeThruText());
UnderlineSpanTest.java 50 TextPaint tp = new TextPaint(); local
51 tp.setUnderlineText(false);
52 assertFalse(tp.isUnderlineText());
54 underlineSpan.updateDrawState(tp);
55 assertTrue(tp.isUnderlineText());
  /bionic/libc/upstream-openbsd/lib/libc/net/
inet_ntop.c 104 char *tp, *ep; local
144 tp = tmp;
146 for (i = 0; i < (IN6ADDRSZ / INT16SZ) && tp < ep; i++) {
151 if (tp + 1 >= ep) {
155 *tp++ = ':';
161 if (tp + 1 >= ep) {
165 *tp++ = ':';
170 if (!inet_ntop4(src+12, tp, (size_t)(ep - tp)))
172 tp += strlen(tp)
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/NetUtil/
inet_ntop.c 139 char *tp, *ep; local
184 tp = tmp;
191 *tp++ = ':';
196 if (tp + 1 >= ep)
198 *tp++ = ':';
205 if (!inet_ntop4(src+12, tp, (socklen_t)(ep - tp)))
207 tp += strlen(tp);
210 advance = snprintf(tp, (size_t)(ep - tp), "%x", words[i]);
    [all...]
  /external/android-clat/
ring.c 119 struct tpacket2_hdr *tp = ring->next; local
120 if (tp->tp_status & TP_STATUS_USER) {
121 uint8_t *packet = ((uint8_t *) tp) + tp->tp_net;
122 translate_packet(write_fd, to_ipv6, packet, tp->tp_len);
123 tp->tp_status = TP_STATUS_KERNEL;
124 tp = ring_advance(ring);
  /external/c-ares/
inet_ntop.c 128 char *tp; local
169 tp = tmp;
175 *tp++ = ':';
180 *tp++ = ':';
185 if (!inet_ntop4(src+12, tp, sizeof(tmp) - (tp - tmp)))
187 tp += strlen(tp);
190 tp += sprintf(tp, "%x", words[i])
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-cxx03-extra-copy.cpp 33 T *tp = dp; // expected-error{{cannot initialize a variable of type 'int *' with an lvalue of type 'double *'}} local
p5-cxx0x-no-extra-copy.cpp 30 T *tp = dp; local
  /external/clang/test/CodeGen/
builtins-arm64.c 8 void *tp (void) { function
  /external/curl/lib/
inet_ntop.c 87 char *tp; local
126 tp = tmp;
131 *tp++ = ':';
138 *tp++ = ':';
144 if(!inet_ntop4(src+12, tp, sizeof(tmp) - (tp - tmp))) {
148 tp += strlen(tp);
151 tp += snprintf(tp, 5, "%lx", words[i])
    [all...]
  /external/iproute2/tc/
f_fw.c 36 struct tc_police tp; local
42 memset(&tp, 0, sizeof(tp));
f_route.c 39 struct tc_police tp; local
45 memset(&tp, 0, sizeof(tp));
  /external/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.addressof/
addressof.pass.cpp 37 A* tp = new A; local
38 const A* ctp = tp;
39 assert(std::addressof(*tp) == tp);
40 assert(std::addressof(*ctp) == tp);
41 delete tp;
  /external/ltp/testcases/kernel/syscalls/sched_rr_get_interval/
sched_rr_get_interval03.c 40 * address specified as &tp is invalid
81 struct timespec tp; variable in typeref:struct:timespec
89 struct timespec *tp; member in struct:test_cases_t
93 &inval_pid, &tp, EINVAL}, {
94 &unused_pid, &tp, ESRCH},
122 test_cases[i].tp));
  /external/ltp/testcases/kernel/syscalls/settimeofday/
settimeofday02.c 71 struct timeval tp; variable in typeref:struct:timeval
108 tp.tv_sec = VAL_SEC;
109 tp.tv_usec = VAL_MSEC;
110 TEST(settimeofday(&tp, NULL));
162 if ((gettimeofday(&tp, (struct timezone *)&tp)) == -1) {
166 save_tv_sec = tp.tv_sec;
167 save_tv_usec = tp.tv_usec;
183 tp.tv_sec = save_tv_sec;
184 tp.tv_usec = save_tv_usec
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
22-1.c 57 struct timespec tp; local
85 ret = clock_gettime(clp, &tp);
92 while (tp.tv_sec < 1);
104 ret = clock_gettime(clt, &tp);
111 while (tp.tv_sec < 1);
131 ret = clock_gettime(clp, &tp);
138 if (tp.tv_sec > 0) {
152 ret = clock_gettime(clt, &tp);
159 if (tp.tv_sec > 0) {
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ReferToParser.java 74 ReferToParser tp = new ReferToParser(to[i]); local
75 ReferTo t = (ReferTo) tp.parse();
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
ReferredByParser.java 51 ReferredByParser tp = new ReferredByParser(to[i]); local
52 ReferredBy t = (ReferredBy) tp.parse();
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/src/
chrono.cpp 120 struct timespec tp; variable in typeref:struct:chrono::timespec
121 if (0 != clock_gettime(CLOCK_MONOTONIC, &tp))
123 return time_point(seconds(tp.tv_sec) + nanoseconds(tp.tv_nsec));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/specialized.algorithms/specialized.addressof/
addressof.pass.cpp 37 A* tp = new A; local
38 const A* ctp = tp;
39 assert(std::addressof(*tp) == tp);
40 assert(std::addressof(*ctp) == tp);
41 delete tp;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/src/
chrono.cpp 40 struct timespec tp; variable in typeref:struct:chrono::timespec
41 if (0 != clock_gettime(CLOCK_REALTIME, &tp))
43 return time_point(seconds(tp.tv_sec) + microseconds(tp.tv_nsec / 1000));
77 struct timespec tp; variable in typeref:struct:chrono::timespec
78 if (0 != clock_gettime(CLOCK_MONOTONIC, &tp))
80 return time_point(seconds(tp.tv_sec) + nanoseconds(tp.tv_nsec));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/specialized.algorithms/specialized.addressof/
addressof.pass.cpp 37 A* tp = new A; local
38 const A* ctp = tp;
39 assert(std::addressof(*tp) == tp);
40 assert(std::addressof(*ctp) == tp);
41 delete tp;

Completed in 535 milliseconds

12 3 4 5 6 7 8 91011>>