Searched refs:words (Results 151 - 175 of 175) sorted by relevance

1234567

/freebsd-13-stable/contrib/bmake/unit-tests/
H A DMakefile362 TESTS+= varmod-select-words
370 TESTS+= varmod-to-many-words
H A Dvarmod-loop.mk135 # The remaining words of USE_8_DOLLARS are not affected by any variable
H A Dvarmod-sysv.mk72 # of words in the variable expression.
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DCuda.cpp82 // Helper lambda which skips the words if the line starts with them or returns
86 const SmallVector<StringRef, 3> words) -> llvm::Optional<StringRef> {
87 for (StringRef word : words) {
/freebsd-13-stable/usr.bin/bmake/unit-tests/
H A DMakefile366 TESTS+= varmod-select-words
374 TESTS+= varmod-to-many-words
/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock-matchers_test.cc5118 list<std::string> words; local
5119 words.push_back("say");
5120 words.push_back("hello");
5121 words.push_back("world");
5122 EXPECT_THAT(words, WhenSortedBy(less<std::string>(),
5124 EXPECT_THAT(words, Not(WhenSortedBy(less<std::string>(),
5167 list<std::string> words; local
5168 words.push_back("3");
5169 words.push_back("1");
5170 words
[all...]
/freebsd-13-stable/sys/dev/ixgbe/
H A Dixgbe_x550.c398 * @data: Pointer to 4 32-bit words of data
3129 /* convert offset from words to bytes */
3155 * @words: number of words
3161 u16 offset, u16 words, u16 *data)
3179 while (words) {
3180 if (words > FW_MAX_READ_BUFFER_SIZE / 2)
3183 words_to_read = words;
3190 /* convert offset from words to bytes */
3218 words
3160 ixgbe_read_ee_hostif_buffer_X550(struct ixgbe_hw *hw, u16 offset, u16 words, u16 *data) argument
3295 ixgbe_write_ee_hostif_buffer_X550(struct ixgbe_hw *hw, u16 offset, u16 words, u16 *data) argument
[all...]
/freebsd-13-stable/crypto/openssl/crypto/sha/asm/
H A Dsha1-c64xplus.pl76 || [A0] SUBAW SP,2,SP ; reserve two words above buffer
H A Dsha256-c64xplus.pl93 || [A0] SUBAW SP,2,SP ; reserve two words above buffer
/freebsd-13-stable/sys/dev/qlnx/qlnxe/
H A Decore_rdma_api.h367 u16 words[8]; member in union:ecore_gid
/freebsd-13-stable/contrib/tcsh/
H A Dsh.hist.c201 * include 3 versions of the code to pack Chars into 32-bit words for the
384 addCharToHash(&s, ' '); /* space between words */
448 /* Generate multiple words of length 2, 3, 5, then all the rest. */
503 xprintf("Hash %d (%d Char %u words) with %s: %d nsec/hash, %d mcps\n",
522 unsigned words = local
525 generateHashes(length, words, 0, hashes, 4);
/freebsd-13-stable/contrib/kyua/store/
H A Dschema_v3.sql55 -- In other words, this table keeps the history of the database metadata.
H A Dschema_v1.sql53 -- In other words, this table keeps the history of the database metadata.
H A Dschema_v2.sql55 -- In other words, this table keeps the history of the database metadata.
/freebsd-13-stable/sys/dev/netmap/
H A Dnetmap_freebsd.c225 uint16_t *words = (uint16_t *)data; local
230 cur_sum += be16toh(words[i]);
/freebsd-13-stable/sys/dev/mfi/
H A Dmfireg.h1810 uint64_t words; member in union:mfi_mpi2_request_descriptor
1877 uint64_t words; member in union:mfi_mpi2_reply_descriptor
/freebsd-13-stable/sys/dev/fxp/
H A Dif_fxp.c257 int offset, int words);
259 int offset, int words);
1287 /* guess maximum size of 256 words */
1295 fxp_read_eeprom(struct fxp_softc *sc, u_short *data, int offset, int words) argument
1299 for (i = 0; i < words; i++)
1304 fxp_write_eeprom(struct fxp_softc *sc, u_short *data, int offset, int words) argument
1308 for (i = 0; i < words; i++)
/freebsd-13-stable/contrib/googletest/googletest/src/
H A Dgtest.cc2172 static std::string FormatWordList(const std::vector<std::string>& words) { argument
2174 for (size_t i = 0; i < words.size(); ++i) {
2175 if (i > 0 && words.size() > 2) {
2178 if (i == words.size() - 1) {
2181 word_list << "'" << words[i] << "'"; local
/freebsd-13-stable/sbin/ping/
H A Dping6.c2080 u_int16_t words; /*32bit count*/ member in struct:cbit
2112 if (sizeof(cbit) + ntohs(cbit.words) * sizeof(v) >
2116 clen = ntohs(cbit.words) * sizeof(v);
/freebsd-13-stable/crypto/openssl/crypto/bn/asm/
H A Dbn-c64xplus.asm17 ;; being the number of 32-bit words, addition - 8*n. Corresponding 4x
/freebsd-13-stable/usr.sbin/cxgbetool/
H A Dcxgbetool.c1498 * consist of @nwords 32-bit words (i.e, it's an (@nwords * 32)-bit structure)
1499 * whose fields are described by @fd. The 32-bit words are given in @words
1503 show_struct(const uint32_t *words, int nwords, const struct field_desc *fd) argument
1518 data = (words[first_word] >> shift) |
1519 ((uint64_t)words[first_word + 1] << (32 - shift));
1521 data |= ((uint64_t)words[first_word + 2] << (64 - shift));
/freebsd-13-stable/sys/dev/isci/scil/
H A Dscic_sds_stp_request.c305 task_context->type.words[0] = *(U32 *)this_request->command_buffer;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1344 std::tie(high, low) = Result->words();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp99 // Calculate the number of words to copy
100 unsigned words = std::min<unsigned>(bigVal.size(), getNumWords()); local
101 // Copy the words from bigVal to pVal
102 memcpy(U.pVal, bigVal.data(), words * APINT_WORD_SIZE);
125 // If the number of words is the same we can just change the width and stop.
325 // Fill any words between loWord and hiWord with all ones.
378 // Direct copy whole words.
422 static_assert(8 * sizeof(WordType) <= 64, "This code assumes only two words affected");
452 // General case - shift + copy source words directly into place.
485 static_assert(8 * sizeof(WordType) <= 64, "This code assumes only two words affecte
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp222 uint64_t words[2] = { CN->getValueAPF().bitcastToAPInt().getRawData()[1], local
224 APInt Val(128, words);

Completed in 200 milliseconds

1234567