HomeSort by relevance Sort by last modified time
    Searched defs:KERNEL (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/libusb/src/libusb/os/
linux_netlink.c 56 #define KERNEL 1
64 struct sockaddr_nl snl = { .nl_family=AF_NETLINK, .nl_groups=KERNEL };
98 snl.nl_groups = KERNEL;
195 /* parse parts of netlink message common to both libudev and the kernel */
284 /* TODO -- authenticate this message is from the kernel or udevd */
  /external/chromium_org/chrome_elf/create_file/
chrome_create_file_unittest.cc 49 KERNEL
114 reinterpret_cast<void(*)()>(&FakeNtCreateFile<KERNEL>));
117 reinterpret_cast<void(*)()>(&FakeNtCreateFile<KERNEL>));
  /external/chromium_org/third_party/libwebp/enc/
filter.c 110 enum { KERNEL = 3 };
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/
filter.c 110 enum { KERNEL = 3 };
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/
ssim.cc 36 enum { KERNEL = 3, KERNEL_SIZE = 2 * KERNEL + 1 };
38 // Symmetric Gaussian kernel: K[i] = ~11 * exp(-0.3 * i * i)
44 static const double kiW[KERNEL + 1 + 1] = {
105 org += (yo - KERNEL) * stride;
106 org += (xo - KERNEL);
107 rec += (yo - KERNEL) * stride;
108 rec += (xo - KERNEL);
110 if (((yo - KERNEL + y_) < 0) || ((yo - KERNEL + y_) >= H)) continue
    [all...]

Completed in 720 milliseconds