Home
last modified time | relevance | path

Searched refs:rc1 (Results 1 – 25 of 134) sorted by relevance

123456

/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setscope/
D5-1.c28 int rc1; in main() local
33 rc1 = pthread_attr_init(&attr); in main()
34 if (rc1 != 0) { in main()
35 ERR_MSG("pthread_attr_init()", rc1); in main()
39 rc1 = pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM); in main()
41 if (rc1 || rc2) { in main()
42 if (rc1 && rc2) { in main()
44 ERR_MSG("pthread_attr_setscope()", rc1); in main()
47 if (rc1 && rc1 != ENOTSUP) { in main()
48 ERR_MSG("pthread_attr_setscope()", rc1); in main()
/external/strace/xlat/
Dloop_flags_options.in2 /* Added in v2.6.11-732-gf3f28e4, Removed in v3.2-rc1~49^2~5^2~3 */
4 /* Added in v2.6.25-rc1~758 */
6 /* Added in v3.2-rc1~48^2~7 */
8 /* Added in v4.4-rc1~133^2~22 */
Dblock_ioctl_cmds.in32 /* BLKDAXSET was present between v4.5-rc1~112^2^2~16 and v4.5-rc3~23^2~3 */
34 /* BLKDAXGET was present between v4.5-rc1~112^2^2~16 and v4.7-rc1~78^2^2~4 */
Dnl_audit_types.in62 * Linux kernel commit v3.15-rc1~18^2~1 has changed the value
63 * of AUDIT_FEATURE_CHANGE constant introduced by commit v3.13-rc1~19^2~20
66 * Linux kernel commit v3.15-rc1~18^2~1 also claims that the old value
Dkvm_cpuid_flags.in3 * Workaround a bug in kernel headers fixed by linux commit v4.7-rc1~32^2~42.
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setspecific/
D1-2.c34 void *rc1; variable
85 rc1 = pthread_getspecific(key); in main()
89 if (rc1 != (void *)(KEY_VALUE_1)) { in main()
92 KEY_VALUE_1, (long)rc1); in main()
/external/ltp/testcases/kernel/security/integrity/ima/tests/
Dima_policy.sh73 local p1 p2 rc1 rc2
78 wait "$p1"; rc1=$?
80 if [ $rc1 -eq 0 ] && [ $rc2 -eq 0 ]; then
82 elif [ $rc1 -eq 0 ] || [ $rc2 -eq 0 ]; then
/external/e2fsprogs/debian/
Dlibext2fs2.symbols65 ext2fs_alloc_block3@Base 1.44.0~rc1
182 ext2fs_djb2_hash@Base 1.44.3~rc1
187 ext2fs_ext_attr_block_rehash@Base 1.44.0~rc1
188 ext2fs_ext_attr_hash_entry2@Base 1.44.0~rc1
299 ext2fs_get_ea_inode_hash@Base 1.44.0~rc1
300 ext2fs_get_ea_inode_ref@Base 1.44.0~rc1
337 ext2fs_hashmap_add@Base 1.44.3~rc1
338 ext2fs_hashmap_create@Base 1.44.3~rc1
339 ext2fs_hashmap_free@Base 1.44.3~rc1
340 ext2fs_hashmap_iter_in_order@Base 1.44.3~rc1
[all …]
/external/llvm-project/llvm/test/Transforms/IRCE/
Dnon_known_positive_end.ll17 %rc1 = icmp slt i32 %iv, %len
20 %rc = and i1 %rc1, %rc2
51 %rc1 = icmp ult i32 %iv, %len
54 %rc = and i1 %rc1, %rc2
84 %rc1 = icmp slt i32 %iv, %len
87 %rc = and i1 %rc1, %rc2
117 %rc1 = icmp ult i32 %iv, %len
120 %rc = and i1 %rc1, %rc2
/external/libbackup/
Dbuild.gradle37 shadowCompile 'org.robolectric:robolectric:3.1-rc1'
38 shadowCompile 'org.robolectric:shadows-core:3.1-rc1'
/external/jackson-core/docs/javadoc/2.11.rc1/
Doptions17 'Jackson-core 2.11.0.rc1 API'
25 'Jackson-core 2.11.0.rc1 API'
/external/selinux/libsepol/src/
Dnode_record.c322 int rc1, rc2; in hidden_def() local
331 rc1 = memcmp(node->addr, key->addr, node->addr_sz); in hidden_def()
334 return (rc2 != 0) ? rc2 : rc1; in hidden_def()
340 int rc1, rc2; in sepol_node_compare2() local
350 rc1 = memcmp(node->addr, node2->addr, node->addr_sz); in sepol_node_compare2()
353 return (rc2 != 0) ? rc2 : rc1; in sepol_node_compare2()
/external/tensorflow/tensorflow/
Dversion_check.bzl8 e.g. "1.2.3rc1 abc1234" where "abc1234" is a commit hash.
21 # "0.10.0rc1 abc123d" => (0, 10, 0)
/external/openssh/contrib/hpux/
DREADME22 # ln -s /sbin/init.d/sshd.rc /sbin/rc1.d/K100sshd
44 # ln -s /sbin/init.d/egd.rc /sbin/rc1.d/K600egd
/external/pdfium/core/fxcrt/
Dfx_coordinates.h486 friend bool operator==(const CFX_RectF& rc1, const CFX_RectF& rc2) {
487 return rc1.left == rc2.left && rc1.top == rc2.top &&
488 rc1.width == rc2.width && rc1.height == rc2.height;
490 friend bool operator!=(const CFX_RectF& rc1, const CFX_RectF& rc2) {
491 return !(rc1 == rc2);
/external/llvm-project/clang/test/CodeGenOpenCLCXX/
Daddress-space-castoperators.cpp12 __generic int& rc1 = reinterpret_cast<__generic int&>(x); in test_reinterpret_cast() local
/external/python/cpython3/Misc/NEWS.d/
D3.5.3.rst7 There were no code changes between 3.5.3rc1 and 3.5.3 final.
D3.6.4.rst8 There were no new code changes in version 3.6.4 since v3.6.4rc1.
D3.6.3.rst8 regression in 3.6.3rc1.
/external/iptables/extensions/
Dlibxt_SNAT.man26 Later Kernels (>= 2.6.11-rc1) don't have the ability to NAT to multiple ranges
44 Kernels prior to 2.6.36-rc1 don't have the ability to
/external/lottie/LottieSample/
Dbuild.gradle82 implementation 'com.jakewharton:butterknife:9.0.0-rc1'
83 kapt 'com.jakewharton:butterknife-compiler:9.0.0-rc1'
/external/linux-kselftest/android/patches/
D0008-selftests-exec-use-system-bin-sh.patch30 2.16.0.rc1.238.g530d649a79-goog
D0012-kselftest-vDSO-fix-build-issues.patch38 2.16.0.rc1.238.g530d649a79-goog
D0009-seccomp-disable-tests-broken-on-kernels-4.8.patch42 2.16.0.rc1.238.g530d649a79-goog
/external/mesa3d/docs/
Drelease-calendar.rst37 | 20.3 | 2020-11-04 | 20.3.0-rc1 | Dylan Baker | |

123456