Home
last modified time | relevance | path

Searched full:characters (Results 1 – 25 of 531) sorted by relevance

12345678910>>...22

/openbmc/u-boot/arch/x86/include/asm/fsp/
H A Dfsp_types.h19 * Returns a 16-bit signature built from 2 ASCII characters.
21 * This macro returns a 16-bit value built from the two ASCII characters
27 * @return: A 16-bit value built from the two ASCII characters specified by
33 * Returns a 32-bit signature built from 4 ASCII characters.
35 * This macro returns a 32-bit value built from the four ASCII characters
43 * @return: A 32-bit value built from the two ASCII characters specified by
50 * Returns a 64-bit signature built from 8 ASCII characters.
52 * This macro returns a 64-bit value built from the eight ASCII characters
64 * @return: A 64-bit value built from the two ASCII characters specified by
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libtext/
H A Dlibtext-wrapi18n-perl_0.06.bb2 fullwidth, and combining characters and languages without whitespaces \
6 EUC-KR, GB2312, and Big5. This module also supports characters with \
7 irregular widths, such as combining characters (which occupy zero columns \
8 on terminal, like diacritical marks in UTF-8) and fullwidth characters \
10 characters). Also, minimal handling of languages which doesn't use \
H A Dlibtext-charwidth-perl_0.04.bb4 Characters have its own width on terminal depending on locale. For \
5 example, ASCII characters occupy one column per character, east Asian \
6 fullwidth characters (like Hiragana or Han Ideograph) occupy two columns \
7 per character, and combining characters (apperaring in ISO-8859-11 Thai, \
/openbmc/libcper/include/libcper/
H A DBaseTypes.h78 Returns a 16-bit signature built from 2 ASCII characters.
80 This macro returns a 16-bit value built from the two ASCII characters specified
86 @return A 16-bit value built from the two ASCII characters specified by A and B.
91 Returns a 32-bit signature built from 4 ASCII characters.
93 This macro returns a 32-bit value built from the four ASCII characters specified
101 @return A 32-bit value built from the two ASCII characters specified by A, B,
/openbmc/u-boot/include/
H A Dvsprintf.h33 * simple_strtoul just ignores the successive invalid characters and
61 * characters between @str and @end - 1 are examined. If @end is NULL, it is
103 * The function returns the number of characters written
117 * @return the number of characters which have been written into
134 * @return the number of characters which would be
152 * The return value is the number of characters written into @buf not including
167 * @return The number characters which would be generated for the given
169 * characters may be written if this number of characters is >= size.
176 * The function returns the number of characters which would be
192 * @return the number of characters which have been written into
H A Ds_record.h38 * is two hex characters. This defines the length of the
39 * record in bytes (not characters). It includes the address
43 * is 4, 6, or 8 characters. Corresponding to a 16-, 24-, or
49 * Are the data bytes. Each pair of hex characters represent
H A Dserial.h193 * pending() - Check if input/output characters are waiting
196 * characters if the driver knows this (e.g. by looking at the FIFO
198 * of characters is waiting.
203 * @input: true to check input characters, false for output
204 * @return number of waiting characters, 0 for none, -ve on error
212 * This quickly clears any input/output characters from the UART.
213 * If this is not possible, but characters still exist, then it
/openbmc/phosphor-logging/extensions/openpower-pels/
H A Dascii_string.cpp75 // Only allow certain ASCII characters as other entities will in unflatten()
95 char characters[3]; in setByte() local
96 sprintf(characters, "%02X", value); in setByte()
99 _string[writeOffset++] = characters[0]; in setByte()
100 _string[writeOffset] = characters[1]; in setByte()
/openbmc/openpower-hw-diags/util/
H A Dbin_stream.hpp48 * @brief Extracts n characters from the stream and stores them in the array
54 * @param s Pointer to an array of at least n characters.
55 * @param n Number of characters to extract.
145 * @brief Inserts the first n characters of the the array pointed to by s
151 * @param s Pointer to an array of at least n characters.
152 * @param n Number of characters to insert.
/openbmc/bmcweb/include/
H A Dhuman_sort.hpp38 // check if this are digit characters in alphanumComp()
41 // if both characters are digits, we continue in NUMBER mode in alphanumComp()
56 // compute the difference of both characters in alphanumComp()
63 // otherwise process the next characters in alphanumComp()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/figlet/
H A Dfiglet_git.bb1 SUMMARY = "FIGlet is a program that creates large characters out of ordinary screen characters"
/openbmc/u-boot/lib/efi_loader/
H A Defi_unicode_collation.c14 /* Characters that may not be used in file names */
22 /* Unicode code points for code page 1250 characters 0x80 - 0xff */
25 /* Unicode code points for code page 437 characters 0x80 - 0xff */
48 * For ASCII characters it results in the same sort order as EDK2.
83 * - * matches >= 0 characters
103 /* Match 0 or more characters */ in metai_match()
164 * - * matches >= 0 characters
260 * efi_fat_to_str() - convert a utf-16 string to legal characters for a FAT
/openbmc/openbmc/poky/meta/recipes-graphics/libfakekey/
H A Dlibfakekey_git.bb1 SUMMARY = "Library for converting characters to X key-presses"
2 DESCRIPTION = "libfakekey is a simple library for converting UTF-8 characters into 'fake' X \
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A Ddammit.py68 """The ability to substitute XML or HTML entities for certain characters."""
99 … # - https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references
111 # characters.
121 # _find_ those characters in output strings so we can
129 # characters like | into named entities like
136 # characters like 'fj' into named entities like 'fj',
144 # expression needs to match the first two characters of
148 # In this step, we build two sets of characters that
179 # 'rsquo' and 'rsquor'. When converting Unicode characters to
258 """Substitute XML entities for special XML characters.
[all …]
/openbmc/phosphor-host-ipmid/transport/serialbridge/
H A Dserialcmd.cpp21 * @brief Table of special characters
23 static const std::unordered_map<uint8_t, uint8_t> characters = { variable
51 std::find_if(characters.begin(), characters.end(), in getUnescapedCharacter()
54 if (search == characters.end()) in getUnescapedCharacter()
131 auto search = characters.find(c); in processEscapedCharacter()
132 if (search != characters.end()) in processEscapedCharacter()
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libxml/
H A Dlibxml-filter-buffertext-perl_1.01.bb1 SUMMARY = "XML::Filter::BufferText - Filter to put all characters() in one event"
7 of putting all characters into a single event. \
/openbmc/openbmc/poky/meta/recipes-support/libunistring/
H A Dlibunistring_1.3.bb5 with many kinds of special characters accents, right-to-left writing\
8 particular properties of many Unicode characters. In fact, the POSIX\
/openbmc/sdbusplus/include/sdbusplus/message/
H A Dtypes.hpp30 * @returns A tuple of characters representing the dbus types for ...Args.
34 * C-string). There are other options to create a string of characters but
109 /** An empty tuple indicating no type-characters. */
120 * @tparam C - The remaining sequence of dbus type characters.
122 * A tuple_type_id must be one or more characters. The C1 template param
131 /** A tuple containing the type-characters. */
152 * @brief Get a tuple containing the dbus type characters for a sequence of
/openbmc/qemu/include/semihosting/
H A Dconsole.h25 * Returns: number of characters read, OR cpu_loop_exit!
53 * Return true if characters are available for read; does not block.
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/
H A Dtest_project_config_page.py23 'any of these characters'
139 msg = 'downloads directory path characters invalid but treated as valid'
147 msg = 'downloads directory path characters invalid but treated as valid'
194 msg = 'sstate directory path characters invalid but treated as valid'
202 msg = 'sstate directory path characters invalid but treated as valid'
/openbmc/phosphor-webui/app/access-control/controllers/
H A Duser-accounts-modal-user.html62 <p class="label__helper-text">No special characters except underscore</p>
78 Length must be between <span class="nowrap">1 – 16</span> characters</span>
110 …ss="nowrap">{{modalCtrl.minPasswordLength}} – {{modalCtrl.maxPasswordLength}}</span> characters</p>
129 …"nowrap">{{modalCtrl.minPasswordLength}} – {{modalCtrl.maxPasswordLength}}</span> characters</span>
156 Length must be between <span class="nowrap">1 – 16</span> characters</span>
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Ipmi/
H A DSOL.interface.yaml48 this number of characters as soon as this number of characters (or
/openbmc/qemu/qobject/
H A Djson-lexer.c23 * The set of tokens includes six structural characters, strings,
26 * These are the six structural characters:
36 * structural characters.
38 * the same, as the grammar always has structural characters between
137 * Skip characters until a structural character, an ASCII
139 * bytes '\xFE', '\xFF'. Structural characters and line
/openbmc/u-boot/lib/efi_selftest/
H A Defi_selftest_textoutput.c49 efi_st_error("TestString failed for ANSI characters\n"); in execute()
56 efi_st_error("OutputString failed for ANSI characters"); in execute()
80 efi_st_error("OutputString failed for ANSI characters\n"); in execute()
/openbmc/u-boot/board/gdsys/common/
H A Dosd_cmd.c48 puts("Hexadecimal input contained invalid characters\n"); in do_osd_write()
144 "set OSD XY size in characters",
145 "osdsize [size_x] [size_y] - set OSD XY size in characters\n"

12345678910>>...22