Searched defs:KERNEL (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dlinux_netlink.c56 #define KERNEL 1 macro
64 struct sockaddr_nl snl = { .nl_family=AF_NETLINK, .nl_groups=KERNEL };
98 snl.nl_groups = KERNEL;
/external/chromium_org/chrome_elf/create_file/
H A Dchrome_create_file_unittest.cc49 KERNEL enumerator in enum:__anon6049::ChromeCreateFileTest::CallPath
114 reinterpret_cast<void(*)()>(&FakeNtCreateFile<KERNEL>));
117 reinterpret_cast<void(*)()>(&FakeNtCreateFile<KERNEL>));
/external/chromium_org/third_party/libwebp/enc/
H A Dfilter.c110 enum { KERNEL = 3 }; enumerator in enum:__anon13272
126 const int ymin = (yo - KERNEL < 0) ? 0 : yo - KERNEL;
127 const int ymax = (yo + KERNEL > H - 1) ? H - 1 : yo + KERNEL;
128 const int xmin = (xo - KERNEL < 0) ? 0 : xo - KERNEL;
129 const int xmax = (xo + KERNEL > W - 1) ? W - 1 : xo + KERNEL;
/external/webp/src/enc/
H A Dfilter.c110 enum { KERNEL = 3 }; enumerator in enum:__anon33369
126 const int ymin = (yo - KERNEL < 0) ? 0 : yo - KERNEL;
127 const int ymax = (yo + KERNEL > H - 1) ? H - 1 : yo + KERNEL;
128 const int xmin = (xo - KERNEL < 0) ? 0 : xo - KERNEL;
129 const int xmax = (xo + KERNEL > W - 1) ? W - 1 : xo + KERNEL;
/external/chromium_org/third_party/libyuv/util/
H A Dssim.cc35 enum { KERNEL = 3, KERNEL_SIZE = 2 * KERNEL + 1 }; enumerator in enum:__anon13411
43 static const double kiW[KERNEL + 1 + 1] = {
104 org += (yo - KERNEL) * stride;
105 org += (xo - KERNEL);
106 rec += (yo - KERNEL) * stride;
107 rec += (xo - KERNEL);
109 if (((yo - KERNEL + y_) < 0) || ((yo - KERNEL + y_) >= H)) continue;
113 if (((xo - KERNEL
[all...]

Completed in 865 milliseconds