Searched defs:filters (Results 1 - 8 of 8) sorted by relevance

/external/freetype/src/base/
H A Dftlcdfil.c30 /* FIR filter used by the default and light filters */
174 static const int filters[3][3] = local
204 r += filters[0][0] * p;
205 g += filters[0][1] * p;
206 b += filters[0][2] * p;
209 r += filters[1][0] * p;
210 g += filters[1][1] * p;
211 b += filters[1][2] * p;
214 r += filters[2][0] * p;
215 g += filters[
[all...]
/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_audio.h80 /* A structure to hold a set of audio conversion filters and buffers */
91 void (SDLCALL *filters[10])(struct SDL_AudioCVT *cvt, Uint16 format); member in struct:SDL_AudioCVT
/external/dbus/tools/
H A Ddbus-monitor.c232 char **filters = NULL; local
275 filters = (char **)realloc(filters, numFilters * sizeof(char *));
276 filters[j] = (char *)malloc((strlen(arg) + 1) * sizeof(char *));
277 snprintf(filters[j], strlen(arg) + 1, "%s", arg);
330 dbus_bus_add_match (connection, filters[i], &error);
334 filters[i], error.message);
338 free(filters[i]);
/external/chromium/chrome/browser/ui/gtk/
H A Ddialogs_gtk.cc56 // Add the filters from |file_types_| to |chooser|.
131 // The file filters.
296 // Add the *.* filter, but only if we have added other filters (otherwise it
319 GSList* filters = gtk_file_chooser_list_filters(GTK_FILE_CHOOSER(dialog)); local
320 int idx = g_slist_index(filters, selected_filter);
321 g_slist_free(filters);
/external/libpng/
H A Dpngwrite.c1178 /* Allow the application to select one or more row filters to use. */
1180 png_set_filter(png_structp png_ptr, int method, int filters) argument
1193 switch (filters & (PNG_ALL_FILTERS | 0x07))
1211 default: png_ptr->do_filter = (png_byte)filters; break;
1220 * it is too late to start using the filters that need it, since we
1222 * wants to start and stop using particular filters during compression,
1223 * it should start out with all of the filters, and then add and
1393 /* Here is where we set the relative costs of the different filters. We
/external/qemu/distrib/libpng-1.2.19/
H A Dpngwrite.c1123 /* Allow the application to select one or more row filters to use. */
1125 png_set_filter(png_structp png_ptr, int method, int filters) argument
1137 switch (filters & (PNG_ALL_FILTERS | 0x07))
1155 default: png_ptr->do_filter = (png_byte)filters; break;
1164 * it is too late to start using the filters that need it, since we
1166 * wants to start and stop using particular filters during compression,
1167 * it should start out with all of the filters, and then add and
1336 /* Here is where we set the relative costs of the different filters. We
/external/bluetooth/hcidump/src/
H A Dhcidump.c802 } filters[] = { variable in typeref:struct:__anon736
830 for (n = 0; filters[n].name; n++) {
831 if (!strcasecmp(filters[n].name, argv[i])) {
832 filter |= filters[n].flag;
/external/chromium/chrome/browser/ui/views/
H A Dshell_dialogs_win.cc91 // returned. The filters created here are:
314 std::vector<std::wstring> filters; local
316 base::SplitString(filter, '\0', &filters);
318 if (!filters.empty())
319 filter_selected = filters[(2 * (save_as.nFilterIndex - 1)) + 1];
619 const std::wstring& filters,

Completed in 1763 milliseconds