Lines Matching full:to

32  * @brief Copies a block of memory from a source address to a destination address.
33 * @param dst Pointer to the destination array where the content is to be copied.
34 * @param src Pointer to the source of data to be copied.
35 * @param len Number of bytes to copy.
36 * @return Pointer to the destination array.
43 * @param dst Pointer to the destination array to fill with the specified value.
44 * @param v Value to be set. The value is passed as an int, but the function fills
46 * @param len Number of bytes to be set to the value.
51 * @brief Move a block of memory from source to destination
52 * @param dst Pointer to the destination array where the content is to be copied.
53 * @param src Pointer to the source of data to be copied.
54 * @param len Number of bytes to copy
55 * @return Pointer to the destination array.
61 * @param p1 Pointer to the first memory block
62 * @param p2 Pointer to the second memory block
63 * @param len Number of bytes to compare
70 * @param dst pointer to the destination buffer
71 * @param len number of byte to set
79 …* @brief Computes the length of the string str up to, but not including the terminating null chara…
80 * @param str Pointer to the null-terminated byte string to be examined.
86 …* @brief Copies up to dst_size-1 (non-null) characters from src to dst. A null terminator is alway…
87 * @param dst Pointer to the destination array where the content is to be copied.
88 * @param src Pointer to the source of data to be copied.
89 * @param dst_size Maximum number of characters to be copied to dst, including the null character.
90 * @return The length of src. The return value is equivalent to the value returned by lv_strlen(src)
95 …* @brief Copies up to dest_size characters from the string pointed to by src to the character arra…
97 * @param dst Pointer to the destination array where the content is to be copied.
98 * @param src Pointer to the source of data to be copied.
99 * @param dest_size Maximum number of characters to be copied to dst.
100 * @return A pointer to the destination array, which is dst.
106 * @brief Copies the string pointed to by src, including the terminating null character,
107 * to the character array pointed to by dst.
108 * @param dst Pointer to the destination array where the content is to be copied.
109 * @param src Pointer to the source of data to be copied.
110 * @return A pointer to the destination array, which is dst.
116 * @param s1 pointer to the first string
117 * @param s2 pointer to the second string
123 * @brief This function will compare two strings up to the given length.
124 * @param s1 pointer to the first string
125 * @param s2 pointer to the second string
126 * @param len the maximum amount of characters to compare
133 * @param s1 pointer to the first string
134 * @param s2 pointer to the second string
144 * @param src Pointer to the source of data to be copied.
145 * @return A pointer to the new allocated string. NULL if failed.
150 * @brief Copies the string pointed to by src, including the terminating null character,
151 * to the end of the string pointed to by dst.
152 * @param dst Pointer to the destination string where the content is to be appended.
153 * @param src Pointer to the source of data to be copied.
154 * @return A pointer to the destination string, which is dst.
159 * @brief Copies up to src_len characters from the string pointed to by src
160 * to the end of the string pointed to by dst.
161 * A terminating null character is appended to dst even if no null character
163 * @param dst Pointer to the destination string where the content is to be appended.
164 * @param src Pointer to the source of data to be copied.
165 * @param src_len Maximum number of characters from src to be copied to the end of dst.
166 * @return A pointer to the destination string, which is dst.
172 * @param str Pointer to the null-terminated byte string to be searched.
173 * @param c The character to be searched for.
174 …* @return A pointer to the first occurrence of character c in the string str, or a null pointer if…