Home
last modified time | relevance | path

Searched refs:ctp (Results 1 – 6 of 6) sorted by relevance

/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
D22-1.c54 long ctp, ctt; in main() local
61 ctp = sysconf(_SC_CPUTIME); in main()
64 if ((ctp == -1) && (ctt == -1)) { in main()
71 output(" _POSIX_CPUTIME : %ld\n", ctp); in main()
76 if (ctp > 0) { in main()
123 if (ctp > 0) { in main()
/external/doclava/src/com/google/doclava/
DClassInfo.java378 ClassTypePair ctp = itr.next(); in interfacesWithTypes() local
379 if (ctp.classInfo().checkLevel()) { in interfacesWithTypes()
384 ctp.classInfo().justMyInterfacesWithTypes(ctp.getTypeArgumentMapping())); in interfacesWithTypes()
407 ClassTypePair ctp = itr.next(); in allInterfacesWithTypes() local
409 ctp.classInfo().justMyInterfacesWithTypes(ctp.getTypeArgumentMapping())); in allInterfacesWithTypes()
413 ClassTypePair ctp = toParse.remove(); in allInterfacesWithTypes() local
414 if (!visited.contains(ctp.typeInfo().fullName())) { in allInterfacesWithTypes()
415 mAllInterfacesWithTypes.add(ctp); in allInterfacesWithTypes()
416 visited.add(ctp.typeInfo().fullName()); in allInterfacesWithTypes()
417 toParse.addAll(ctp.classInfo().justMyInterfacesWithTypes(ctp.getTypeArgumentMapping())); in allInterfacesWithTypes()
[all …]
/external/libcxx/test/std/utilities/memory/default.allocator/allocator.members/
Daddress.pass.cpp23 const T* ctp = tp; in test_address() local
26 assert(a.address(*ctp) == tp); in test_address()
/external/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.addressof/
Daddressof.pass.cpp38 const A* ctp = tp; in main() local
40 assert(std::addressof(*ctp) == tp); in main()
/external/e2fsprogs/lib/ext2fs/
Dtdbtool.c425 COMMAND_TABLE *ctp = cmd_table; in do_command() local
432 while (ctp->name) { in do_command()
433 cmd_len = strlen(ctp->name); in do_command()
434 if (strncmp(ctp->name,cmdname,cmd_len) == 0) { in do_command()
435 mycmd = ctp->cmd; in do_command()
438 ctp++; in do_command()
/external/curl/lib/vtls/
Dgskit.c302 const gskit_cipher *ctp; in set_ciphers() local
347 for(ctp = ciphertable; ctp->name; ctp++) in set_ciphers()
348 if(strncasecompare(ctp->name, clp, l) && !ctp->name[l]) in set_ciphers()
350 if(!ctp->name) { in set_ciphers()
355 unsupported |= !(ctp->versions & (CURL_GSKPROTO_SSLV2_MASK | in set_ciphers()
358 if(ctp->versions & (1 << i)) { in set_ciphers()
359 strcpy(ciphers[i].ptr, ctp->gsktoken); in set_ciphers()
360 ciphers[i].ptr += strlen(ctp->gsktoken); in set_ciphers()