Home
last modified time | relevance | path

Searched refs:words (Results 1 – 25 of 49) sorted by relevance

12

/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/config/CI/
Dcodespell-allowed3 # Spec words
13 # Markup/script/style guide words
22 # proposals/ words
25 # vk.xml words
Dcodespellrc5 ignore-words=config/CI/codespell-allowed
/hardware/google/gfxstream/guest/mesa/src/util/
Dbitset.h156 const unsigned int words = amount / BITSET_WORDBITS; in __bitset_shr() local
161 if (words) { in __bitset_shr()
164 for (i = 0; i < n - words; i++) in __bitset_shr()
165 x[i] = x[i + words]; in __bitset_shr()
180 const int words = amount / BITSET_WORDBITS; in __bitset_shl() local
185 if (words) { in __bitset_shl()
188 for (i = n - 1; i >= words; i--) { in __bitset_shl()
189 x[i] = x[i - words]; in __bitset_shl()
481 if (words[i]) \
496 return BITSET_EQUAL(b.words, c.words); \
[all …]
/hardware/interfaces/power/stats/1.0/default/
DPowerStats.cpp110 std::vector<std::string> words = android::base::Split(line, ":"); in parsePowerRails() local
111 if (words.size() == 2) { in parsePowerRails()
113 words[0], RailData{.devicePath = path, in parsePowerRails()
115 .subsysName = words[1], in parsePowerRails()
140 std::vector<std::string> words = android::base::Split(line, ","); in parseIioEnergyNode() local
142 if (words.size() == 1) { in parseIioEnergyNode()
143 timestamp = strtoull(words[0].c_str(), NULL, 10); in parseIioEnergyNode()
149 } else if (words.size() == 2) { in parseIioEnergyNode()
150 std::string railName = words[0]; in parseIioEnergyNode()
155 mPm.reading[index].energy = strtoull(words[1].c_str(), NULL, 10); in parseIioEnergyNode()
/hardware/google/pixel/powerstats/dataproviders/
DIioEnergyMeterDataSelector.cpp47 std::vector<std::string> words = ::android::base::Split(line, "]["); in parseConfigData() local
48 if (words.size() == 3) { in parseConfigData()
55 deviceName = words[1]; in parseConfigData()
DIioEnergyMeterDataProvider.cpp87 std::vector<std::string> words = ::android::base::Split(line, ":]["); in parseEnabledRails() local
88 if (words.size() == 4) { in parseEnabledRails()
89 const std::string channelName = words[1]; in parseEnabledRails()
90 const std::string subsystemName = words[3]; in parseEnabledRails()
/hardware/google/pixel/pixelstats/
DMmMetricsReporter.cpp234 std::vector<std::string> words = android::base::Tokenize(file_contents, delim); in ReadFileToLongs() local
235 if (words.size() == 0) in ReadFileToLongs()
238 for (auto &w : words) { in ReadFileToLongs()
323 std::vector<std::string> words = android::base::Tokenize(line, " "); in readSysfsNameValue() local
326 if (words.size() < 2 || !android::base::ParseUint(words[1], &i)) { in readSysfsNameValue()
332 if (words[0][words[0].length() - 1] == ':') in readSysfsNameValue()
333 words[0].pop_back(); in readSysfsNameValue()
335 metrics[words[0]] = i; in readSysfsNameValue()
1131 std::vector<std::string> words = android::base::Tokenize(line, " "); in parsePressureStallFileContent() local
1132 if (words.size() != kNumOfWords) { in parsePressureStallFileContent()
[all …]
/hardware/interfaces/gnss/1.0/
DIGnssNavigationMessageCallback.hal54 * navigation words, the status must be set to PARITY_PASSED.
55 * If a message is received with words that failed a parity check, but the GNSS
56 * receiver has corrected those words, the status must be set to PARITY_REBUILT.
57 * Do not send any navigation message that contains words with parity errors
82 * No need to send any navigation message that contains words with parity
128 * The data of the reported GNSS message. The bytes (or words) are specified
132 * words. Each word (30 bits) must fit into the last 30 bits in a
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/
Dmap_html_anchors.py22 def contains_any_of(words, wordlist): argument
28 for word in words:
Dreflow.py314 words = line.split()
317 numWords = len(words) - 1
320 word = words[i]
/hardware/google/gfxstream/guest/mesa/include/drm-uapi/
Dtegra_drm.h293 __u32 words; member
849 __u32 words; member
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/style/
Drevisions.adoc17 * 2023-07-07 - Add "`use case`" as <<writing-compound-words, preferred
54 command`" to the <<writing-compound-words, Compound Words and Preferred
61 * 2021-10-29 - add "`render pass" to the <<writing-compound-words, Compound
77 * 2021-09-06 - add "`cube map`" to the <<writing-compound-words, Compound
83 <<writing-compound-words, Compound Words and Preferred Orthography>>
97 <<writing-compound-words, preferred orthography>> (public issue 1484).
Dnaming.adoc18 Names of identifiers should generally be written with full words, as a
54 words, with every character in upper case.
93 Type names are declared with no separator between words.
174 Enumerants include an underscore `_` as a delimiter between words, with
212 Command names are declared with no separator between words.
370 Function parameter names are declared with no separator between words.
578 This is analogous to the <<writing-compound-words,spelling conventions
Dintroduction.adoc34 The key words *must*, *required*, *should*, *recommend*, *may*, and
54 language use, API naming conventions, common words and phrases to use
/hardware/broadcom/wlan/bcmdhd/dhdutil/
Ddhdu.c1218 uint offset, words, bytes; in dhd_sprom()
1242 words = SPROM_WORDS; in dhd_sprom()
1243 bytes = 2 * words; in dhd_sprom()
1273 words = bytes / 2; in dhd_sprom()
1296 if (fread((uint16*)bufp, sizeof(uint16), words, fp) != words) { in dhd_sprom()
1298 words * 2, fname); in dhd_sprom()
1331 for (words = 0, wordptr = (uint16*)bufp; *++argv; words++) { in dhd_sprom()
1337 if (words > SPROM_WORDS) { in dhd_sprom()
1343 bytes = 2 * words; in dhd_sprom()
1359 for (i = 0; i < (int)words; i++) { in dhd_sprom()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/
DVK_EXT_full_screen_exclusive.adoc92 *RESOLVED*: Two words.
100 Vulkan style guidelines and avoid inventing new compound words.
DVK_EXT_external_memory_dma_buf.adoc34 modifier) of the slink:VkImage? In other words, how does the application
DVK_KHR_maintenance5.adoc70 * Two new flags words elink:VkPipelineCreateFlagBits2KHR and
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/
Dintroduction.adoc87 Within this specification, the key words *must*, *required*, *should*,
89 https://www.ietf.org/rfc/rfc2119.txt[RFC 2119 - Key words for use in RFCs to
94 These key words are highlighted in the specification for clarity.
100 In text addressing application developers, the additional key words *can*
113 These key words are never used in text addressing implementors.
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/cereal/
Dfunctable.py174 words = re.split(vkTypeNameRegex, typeName)
176 for word in words[1:]:
/hardware/google/pixel/pixelstats/include/pixelstats/
DMmMetricsReporter.h137 bool parsePressureStallWords(const std::vector<std::string> &words, std::vector<long> *store,
/hardware/interfaces/automotive/can/1.0/
Dtypes.hal79 * one) and all exclude filters must match. In other words:
/hardware/google/gfxstream/host/gl/OpenGLESDispatch/
Dgles_common_for_gles1.entries7 %// Return types must be single words, see GLDispatch.cpp
Dgles_common_for_gles2.entries7 %// Return types must be single words, see GLDispatch.cpp
Dgles_common.entries6 %// Return types must be single words, see GLDispatch.cpp

12