Lines Matching refs:words
120 guint32 *words, in strinfo_string_to_words() argument
133 words[0] = GUINT32_TO_LE (alias ? 0xfe : 0xff); in strinfo_string_to_words()
134 words[n_words - 1] = GUINT32_TO_BE (0xff); in strinfo_string_to_words()
135 memcpy (((gchar *) words) + 1, string, size + 1); in strinfo_string_to_words()
143 const guint32 *words, in strinfo_scan() argument
156 if (strinfo[i + j] != words[j]) in strinfo_scan()
175 guint32 words[STRINFO_MAX_WORDS]; in strinfo_find_string() local
181 n_words = strinfo_string_to_words (string, words, alias); in strinfo_find_string()
183 return strinfo_scan (strinfo + 1, length - 1, words, n_words); in strinfo_find_string()
297 guint32 words[STRINFO_MAX_WORDS]; in strinfo_builder_append_item() local
302 n_words = strinfo_string_to_words (string, words, FALSE); in strinfo_builder_append_item()
304 g_string_append_len (builder, (void *) words, 4 * n_words); in strinfo_builder_append_item()
312 guint32 words[STRINFO_MAX_WORDS]; in strinfo_builder_append_alias() local
325 n_words = strinfo_string_to_words (alias, words, TRUE); in strinfo_builder_append_alias()
327 g_string_append_len (builder, (void *) words, 4 * n_words); in strinfo_builder_append_alias()