Home
last modified time | relevance | path

Searched refs:pm1 (Results 1 – 19 of 19) sorted by relevance

/external/ltp/testcases/kernel/mem/mem/
Dmem02.c68 char *pm1, *pm2, *pm3, *pm4; in main() local
99 if ((pm2 = pm1 = calloc(memsize, 1)) == NULL) { in main()
111 pm2 = pm1; in main()
114 pm2 = pm1; in main()
121 free(pm1); in main()
129 if ((pm2 = pm1 = malloc(memsize)) == NULL) { in main()
135 pm2 = pm1; in main()
142 free(pm1); in main()
/external/libvpx/libvpx/vp8/common/mips/dspr2/
Dvp8_loopfilter_filters_dspr2.c307 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; in vp8_loop_filter_horizontal_edge_mips() local
346 pm1 = *((uint32_t *)(sm1)); in vp8_loop_filter_horizontal_edge_mips()
351 vp8_filter_mask_vec_mips(limit, flimit, p1, p2, pm1, p0, p3, p4, p5, p6, in vp8_loop_filter_horizontal_edge_mips()
388 pm1 = *((uint32_t *)(sm1)); in vp8_loop_filter_horizontal_edge_mips()
393 vp8_filter_mask_vec_mips(limit, flimit, p1, p2, pm1, p0, p3, p4, p5, p6, in vp8_loop_filter_horizontal_edge_mips()
430 pm1 = *((uint32_t *)(sm1)); in vp8_loop_filter_horizontal_edge_mips()
435 vp8_filter_mask_vec_mips(limit, flimit, p1, p2, pm1, p0, p3, p4, p5, p6, in vp8_loop_filter_horizontal_edge_mips()
472 pm1 = *((uint32_t *)(sm1)); in vp8_loop_filter_horizontal_edge_mips()
477 vp8_filter_mask_vec_mips(limit, flimit, p1, p2, pm1, p0, p3, p4, p5, p6, in vp8_loop_filter_horizontal_edge_mips()
500 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; in vp8_loop_filter_uvhorizontal_edge_mips() local
[all …]
/external/swiftshader/third_party/LLVM/test/CodeGen/ARM/
Dflag-crash.ll6 define fastcc void @func(%struct.gs_matrix* nocapture %pm1) nounwind {
8 %0 = getelementptr inbounds %struct.gs_matrix* %pm1, i32 0, i32 6
10 %2 = getelementptr inbounds %struct.gs_matrix* %pm1, i32 0, i32 8
12 %4 = getelementptr inbounds %struct.gs_matrix* %pm1, i32 0, i32 2
/external/llvm/test/CodeGen/ARM/
Dflag-crash.ll6 define fastcc void @func(%struct.gs_matrix* nocapture %pm1) nounwind {
8 %0 = getelementptr inbounds %struct.gs_matrix, %struct.gs_matrix* %pm1, i32 0, i32 6
10 %2 = getelementptr inbounds %struct.gs_matrix, %struct.gs_matrix* %pm1, i32 0, i32 8
12 %4 = getelementptr inbounds %struct.gs_matrix, %struct.gs_matrix* %pm1, i32 0, i32 2
/external/libvpx/libvpx/vpx_dsp/mips/
Dloopfilter_filters_dspr2.c28 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; in vpx_lpf_horizontal_4_dspr2() local
80 : [pm1] "=&r"(pm1), [p0] "=&r"(p0), [p5] "=&r"(p5), [p6] "=&r"(p6) in vpx_lpf_horizontal_4_dspr2()
83 filter_hev_mask_dspr2(limit_vec, flimit_vec, p1, p2, pm1, p0, p3, p4, p5, in vpx_lpf_horizontal_4_dspr2()
112 uint32_t pm1, p0, p1, p2, p3, p4, p5, p6; in vpx_lpf_vertical_4_dspr2() local
151 pm1 = *((uint32_t *)(s4 - 4)); in vpx_lpf_vertical_4_dspr2()
173 [pm1] "+r"(pm1), [sec3] "=&r"(sec3), [sec4] "=&r"(sec4) in vpx_lpf_vertical_4_dspr2()
202 filter_hev_mask_dspr2(limit_vec, flimit_vec, p1, p2, pm1, p0, p3, p4, p5, in vpx_lpf_vertical_4_dspr2()
/external/boringssl/src/crypto/fipsmodule/rsa/
Drsa.c569 BIGNUM n, pm1, qm1, lcm, gcd, de, dmp1, dmq1, iqmp_times_q; in RSA_check_key() local
601 BN_init(&pm1); in RSA_check_key()
612 !BN_sub(&pm1, key->p, BN_value_one()) || in RSA_check_key()
614 !BN_mul(&lcm, &pm1, &qm1, ctx) || in RSA_check_key()
615 !BN_gcd(&gcd, &pm1, &qm1, ctx)) { in RSA_check_key()
621 !BN_gcd(&gcd, &pm1, &qm1, ctx) || in RSA_check_key()
647 !BN_mod(&dmp1, key->d, &pm1, ctx) || in RSA_check_key()
669 BN_free(&pm1); in RSA_check_key()
Drsa_impl.c937 BIGNUM *pm1 = BN_CTX_get(ctx); in RSA_generate_key_ex() local
940 if (totient == NULL || pm1 == NULL || qm1 == NULL || gcd == NULL) { in RSA_generate_key_ex()
984 if (!BN_sub(pm1, rsa->p, BN_value_one()) || in RSA_generate_key_ex()
986 !BN_mul(totient, pm1, qm1, ctx) || in RSA_generate_key_ex()
987 !BN_gcd(gcd, pm1, qm1, ctx) || in RSA_generate_key_ex()
1000 !BN_mod(rsa->dmp1, rsa->d, pm1, ctx) || in RSA_generate_key_ex()
/external/clang/test/SemaTemplate/
Dinstantiate-complete.cpp45 void test_memptr(X<long> *p1, long X<long>::*pm1, argument
52 (void)(p1->*pm1);
Dmember-function-template.cpp33 int& (X::*pm1)(int) = &X::f0; in test_X_f0_address() local
38 int& (X::*pm1)(int) = &X::f1; in test_X_f1_address() local
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
Dp1-11.cpp40 PM<(0)> pm1; // expected-error{{null non-type template argument must be cast to template parameter … variable
/external/swiftshader/third_party/LLVM/test/CodeGen/PTX/
Dintrinsic.ll214 ; CHECK: mov.u32 %ret0, %pm1;
216 %x = call i32 @llvm.ptx.read.pm1()
277 declare i32 @llvm.ptx.read.pm1()
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
DPTXIntrinsicInstrInfo.td103 def PTX_READ_PM1 : PTX_READ_SPECIAL_REGISTER_R32<"pm1", int_ptx_read_pm1>;
/external/llvm/test/CodeGen/NVPTX/
Dintrinsic-old.ll244 ; CHECK: mov.u32 %r{{[0-9]+}}, %pm1;
246 %x = call i32 @llvm.nvvm.read.ptx.sreg.pm1()
308 declare i32 @llvm.nvvm.read.ptx.sreg.pm1()
/external/llvm/include/llvm/IR/
DIntrinsicsNVVM.td3685 def int_nvvm_read_ptx_sreg_pm1 : PTXReadSRegIntrinsic_r32<"pm1">;
/external/llvm/lib/Target/NVPTX/
DNVPTXIntrinsics.td7056 def INT_PTX_SREG_PM1 : PTX_READ_SREG_R32<"pm1", int_nvvm_read_ptx_sreg_pm1>;
/external/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/IR/
DIntrinsics.gen3168 nvvm_read_ptx_sreg_pm1, // llvm.nvvm.read.ptx.sreg.pm1
9226 "llvm.nvvm.read.ptx.sreg.pm1",
17166 1, // llvm.nvvm.read.ptx.sreg.pm1
/external/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/IR/
DIntrinsics.gen3162 nvvm_read_ptx_sreg_pm1, // llvm.nvvm.read.ptx.sreg.pm1
9186 "llvm.nvvm.read.ptx.sreg.pm1",
17071 1, // llvm.nvvm.read.ptx.sreg.pm1
/external/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/IR/
DIntrinsics.gen3168 nvvm_read_ptx_sreg_pm1, // llvm.nvvm.read.ptx.sreg.pm1
9226 "llvm.nvvm.read.ptx.sreg.pm1",
17166 1, // llvm.nvvm.read.ptx.sreg.pm1
/external/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/IR/
DIntrinsics.gen3168 nvvm_read_ptx_sreg_pm1, // llvm.nvvm.read.ptx.sreg.pm1
9226 "llvm.nvvm.read.ptx.sreg.pm1",
17166 1, // llvm.nvvm.read.ptx.sreg.pm1