Searched refs:v1 (Results 126 - 150 of 243) sorted by relevance

12345678910

/freebsd-13-stable/contrib/libarchive/libarchive/test/
H A Dmain.c475 long long v1, const char *e1, long long v2, const char *e2, void *extra)
478 if (v1 == v2)
481 logprintf(" %s=%lld (0x%llx, 0%llo)\n", e1, v1, v1, v1);
637 const char *v1, const char *e1,
644 if (v1 == v2 || (v1 != NULL && v2 != NULL && strcmp(v1, v2) == 0))
651 strdump(e1, v1, l
474 assertion_equal_int(const char *file, int line, long long v1, const char *e1, long long v2, const char *e2, void *extra) argument
636 assertion_equal_string(const char *file, int line, const char *v1, const char *e1, const char *v2, const char *e2, void *extra, int utf8) argument
698 assertion_equal_wstring(const char *file, int line, const wchar_t *v1, const char *e1, const wchar_t *v2, const char *e2, void *extra) argument
764 const char *v1 = (const char *)_v1; local
802 const char *v1 = (const char *)_v1; local
[all...]
/freebsd-13-stable/contrib/libdivsufsort/lib/
H A Dsssort.c235 saidx_t *v1, saidx_t *v2, saidx_t *v3) {
237 if(Td[PA[*v1]] > Td[PA[*v2]]) { SWAP(v1, v2); }
239 if(Td[PA[*v1]] > Td[PA[*v3]]) { return v1; }
249 saidx_t *v1, saidx_t *v2, saidx_t *v3, saidx_t *v4, saidx_t *v5) {
254 if(Td[PA[*v1]] > Td[PA[*v3]]) { SWAP(v1, v3); }
255 if(Td[PA[*v1]] > Td[PA[*v4]]) { SWAP(v1, v
234 ss_median3(const sauchar_t *Td, const saidx_t *PA, saidx_t *v1, saidx_t *v2, saidx_t *v3) argument
248 ss_median5(const sauchar_t *Td, const saidx_t *PA, saidx_t *v1, saidx_t *v2, saidx_t *v3, saidx_t *v4, saidx_t *v5) argument
[all...]
H A Dtrsort.c139 tr_median3(const saidx_t *ISAd, saidx_t *v1, saidx_t *v2, saidx_t *v3) { argument
141 if(ISAd[*v1] > ISAd[*v2]) { SWAP(v1, v2); }
143 if(ISAd[*v1] > ISAd[*v3]) { return v1; }
153 saidx_t *v1, saidx_t *v2, saidx_t *v3, saidx_t *v4, saidx_t *v5) {
158 if(ISAd[*v1] > ISAd[*v3]) { SWAP(v1, v3); }
159 if(ISAd[*v1] > ISAd[*v4]) { SWAP(v1, v
152 tr_median5(const saidx_t *ISAd, saidx_t *v1, saidx_t *v2, saidx_t *v3, saidx_t *v4, saidx_t *v5) argument
[all...]
/freebsd-13-stable/sys/crypto/openssl/aarch64/
H A Dpoly1305-armv8.S436 ld1 {v0.4s,v1.4s,v2.4s,v3.4s},[x15],#64
498 umull v20.2d,v14.2s,v1.s[2]
512 umlal v21.2d,v15.2s,v1.s[2]
521 umlal v22.2d,v16.2s,v1.s[2]
530 umlal v23.2d,v17.2s,v1.s[2]
559 umlal v22.2d,v11.2s,v1.s[0]
581 umlal v20.2d,v9.2s,v1.s[0]
592 umlal v21.2d,v10.2s,v1.s[0]
603 umlal v23.2d,v12.2s,v1.s[0]
681 umull2 v22.2d,v16.4s,v1
[all...]
H A Dsha256-armv8.S1088 ld1 {v0.4s,v1.4s},[x0]
1100 orr v19.16b,v1.16b,v1.16b
1105 .inst 0x5e104020 //sha256h v0.16b,v1.16b,v16.4s
1106 .inst 0x5e105041 //sha256h2 v1.16b,v2.16b,v16.4s
1112 .inst 0x5e114020 //sha256h v0.16b,v1.16b,v17.4s
1113 .inst 0x5e115041 //sha256h2 v1.16b,v2.16b,v17.4s
1119 .inst 0x5e104020 //sha256h v0.16b,v1.16b,v16.4s
1120 .inst 0x5e105041 //sha256h2 v1.16b,v2.16b,v16.4s
1126 .inst 0x5e114020 //sha256h v0.16b,v1
[all...]
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java152 ValueRecord v1 = new ScalarRecord(new byte[] {(byte)1, (byte)2,
155 Tuple tuple = new Tuple(v1, v2);
318 ValueRecord v1 = getScalarRecord();
320 list.add(v1);
351 ValueRecord v1 = new ScalarRecord("cat", 256);
357 Tuple tuple = new Tuple(v1, v2, v3, v4, v5, v6);
/freebsd-13-stable/contrib/atf/atf-c++/
H A Dmacros_test.cpp119 long v1 = atf::text::to_type< long >(get_config_var("v1")); local
123 ATF_REQUIRE_EQ(v1, v2);
379 const char *v1; member in struct:test
393 for (t = &tests[0]; t->v1 != NULL; t++) {
395 config["v1"] = t->v1;
398 std::cout << "Checking with " << t->v1 << ", " << t->v2
410 ATF_REQUIRE(atf::utils::grep_file("^failed: .*v1 != v2", "result"));
/freebsd-13-stable/usr.bin/gprof/
H A Dprintgprof.c79 timecmp(const void *v1, const void *v2) argument
81 const nltype **npp1 = (const nltype **)v1;
271 totalcmp(const void *v1, const void *v2) argument
273 const nltype **npp1 = (const nltype **)v1;
695 namecmp(const void *v1, const void *v2) argument
697 const nltype **npp1 = (const nltype **)v1;
/freebsd-13-stable/sys/dev/hpt27xx/
H A Dldm.h43 #define __hpt_set_ver(x, v1, v2, v3, v4, v5) x ## _R_ ## v1 ## _ ## v2 ## _ ## v3 ## _ ## v4 ## _ ## v5
44 #define _hpt_set_ver(x, v1, v2, v3, v4, v5) __hpt_set_ver(x, v1, v2, v3, v4, v5)
/freebsd-13-stable/sys/dev/hptnr/
H A Dldm.h42 #define __hpt_set_ver(x, v1, v2, v3, v4, v5) x ## _R_ ## v1 ## _ ## v2 ## _ ## v3 ## _ ## v4 ## _ ## v5
43 #define _hpt_set_ver(x, v1, v2, v3, v4, v5) __hpt_set_ver(x, v1, v2, v3, v4, v5)
/freebsd-13-stable/sys/dev/hptrr/
H A Dldm.h45 #define __hpt_set_ver(x, v1, v2, v3, v4, v5) x ## _R_ ## v1 ## _ ## v2 ## _ ## v3 ## _ ## v4 ## _ ## v5
46 #define _hpt_set_ver(x, v1, v2, v3, v4, v5) __hpt_set_ver(x, v1, v2, v3, v4, v5)
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/cmd/btree_test/
H A Dbtree_test.c68 avl_compare(const void *v1, const void *v2) argument
70 const int_node_t *n1 = v1;
79 zfs_btree_compare(const void *v1, const void *v2) argument
81 const uint64_t *a = v1;
/freebsd-13-stable/sys/mips/include/
H A Dframe.h48 register_t v1; member in struct:trapframe
/freebsd-13-stable/sys/dev/cxgb/common/
H A Dcxgb_mc5.c102 static inline void dbgi_wr_data3(adapter_t *adapter, u32 v1, u32 v2, u32 v3) argument
104 t3_write_reg(adapter, A_MC5_DB_DBGI_REQ_DATA0, v1);
109 static inline void dbgi_rd_rsp3(adapter_t *adapter, u32 *v1, u32 *v2, u32 *v3) argument
111 *v1 = t3_read_reg(adapter, A_MC5_DB_DBGI_RSP_DATA0);
/freebsd-13-stable/sys/dev/iwm/
H A Dif_iwm_scan.c674 req->v1.active_dwell = 10;
675 req->v1.passive_dwell = 110;
676 req->v1.fragmented_dwell = 44;
677 req->v1.extended_dwell = 90;
678 req->v1.scan_priority = htole32(IWM_SCAN_PRIORITY_HIGH);
679 req->v1.channel.flags = channel_flags;
680 req->v1.channel.count = iwm_umac_scan_fill_channels(sc,
681 (struct iwm_scan_channel_cfg_umac *)req->v1.data, nssid);
683 tail = (void *)((char *)&req->v1.data +
/freebsd-13-stable/crypto/heimdal/lib/gssapi/ntlm/
H A Daccept_sec_context.c246 RC4_set_key(&ctx->u.v1.crypto_send.key,
249 RC4_set_key(&ctx->u.v1.crypto_recv.key,
/freebsd-13-stable/lib/msun/src/
H A De_lgammaf_r.c61 v1 = 1.10958421e+00, /* 0x3f8e06db */ variable
183 p2 = one+y*(v1+y*(v2+y*v3));
/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock-internal-utils_test.cc651 Chars v1; local
652 const Chars& v2(StlContainerView<Chars>::ConstReference(v1));
653 EXPECT_EQ(&v1, &v2);
655 v1.push_back('a');
656 Chars v3 = StlContainerView<Chars>::Copy(v1);
/freebsd-13-stable/sys/contrib/zstd/lib/dictBuilder/
H A Ddivsufsort.c325 int *v1, int *v2, int *v3) {
327 if(Td[PA[*v1]] > Td[PA[*v2]]) { SWAP(v1, v2); }
329 if(Td[PA[*v1]] > Td[PA[*v3]]) { return v1; }
339 int *v1, int *v2, int *v3, int *v4, int *v5) {
344 if(Td[PA[*v1]] > Td[PA[*v3]]) { SWAP(v1, v3); }
345 if(Td[PA[*v1]] > Td[PA[*v4]]) { SWAP(v1, v
324 ss_median3(const unsigned char *Td, const int *PA, int *v1, int *v2, int *v3) argument
338 ss_median5(const unsigned char *Td, const int *PA, int *v1, int *v2, int *v3, int *v4, int *v5) argument
987 tr_median3(const int *ISAd, int *v1, int *v2, int *v3) argument
1000 tr_median5(const int *ISAd, int *v1, int *v2, int *v3, int *v4, int *v5) argument
[all...]
/freebsd-13-stable/sys/mips/mips/
H A Dvm_machdep.c121 td2->td_frame->v1 = 1;
316 locr0->v1 = td->td_retval[0];
320 locr0->v1 = td->td_retval[1];
336 locr0->v1 = error;
504 DB_PRINT_REG(trapframe, v1);
H A Dexception.S274 SAVE_REG(v1, V1, sp) ;\
300 mfhi v1 ;\
306 SAVE_REG(v1, MULHI, sp) ;\
335 RESTORE_REG(v1, V1, sp) ;\
433 SAVE_U_PCB_REG(v1, V1, k1)
440 mfhi v1
468 SAVE_U_PCB_REG(v1, MULHI, k1)
529 RESTORE_U_PCB_REG(v1, V1, k1)
698 SAVE_U_PCB_REG(v1, V1, k1)
730 mfhi v1
[all...]
/freebsd-13-stable/usr.sbin/kldxref/
H A Dkldxref.c465 uint8_t v1; local
484 memcpy(&v1, walker + elt->pe_offset, sizeof(v1));
485 if ((elt->pe_kind & TYPE_FLAGGED) && v1 == 0xff)
488 value = v1;
/freebsd-13-stable/sys/dev/sound/usb/
H A Duaudio.c162 const struct usb_audio_streaming_interface_descriptor *v1; member in union:uaudio_asid
167 const struct usb_audio_streaming_type1_descriptor *v1; member in union:uaudio_asf1d
172 const struct usb_audio_streaming_endpoint_descriptor *v1; member in union:uaudio_sed
494 /* ==== USB audio v1.0 ==== */
537 /* USB audio v1.0 and v2.0 */
1430 } else if (chan_alt->p_sed.v1->bmAttributes & UA_SED_FREQ_CONTROL) {
1783 asid.v1 = NULL;
1784 asf1d.v1 = NULL;
1786 sed.v1 = NULL;
1832 (asid.v1
[all...]
/freebsd-13-stable/sys/dev/oce/
H A Doce_queue.c678 ctx->v1.num_pages = num_pages;
679 ctx->v1.ring_size = OCE_LOG2(q_len) + 1;
680 ctx->v1.cq_id = cq->cq_id;
681 ctx->v1.valid = 1;
682 ctx->v1.async_cq_id = cq->cq_id;
683 ctx->v1.async_cq_valid = 1;
685 ctx->v1.async_evt_bitmap |= LE_32(0x00000022);
686 ctx->v1.async_evt_bitmap |= LE_32(1 << ASYNC_EVENT_CODE_DEBUG);
687 ctx->v1.async_evt_bitmap |=
/freebsd-13-stable/sys/powerpc/ps3/
H A Dps3-hvcall.h82 int lv1_get_repository_node_value(uint64_t lpar_id, uint64_t n1, uint64_t n2, uint64_t n3, uint64_t n4, uint64_t *v1, uint64_t *v2);
116 int lv1_net_control(uint64_t bus, uint64_t dev, uint64_t p1, uint64_t p2, uint64_t p3, uint64_t p4, uint64_t *v1, uint64_t *v2);
131 int lv1_gpu_context_intr(uint64_t chandle, uint64_t *v1);

Completed in 322 milliseconds

12345678910