HomeSort by relevance Sort by last modified time
    Searched refs:maj (Results 1 - 25 of 140) sorted by null

1 2 3 4 5 6

  /external/e2fsprogs/include/mingw/sys/
sysmacros.h 10 #define makedev(maj, min) (((maj) << 8) + (min))
  /external/fio/oslib/
linux-dev-lookup.h 4 int blktrace_lookup_device(const char *redirect, char *path, unsigned int maj,
linux-dev-lookup.c 10 int blktrace_lookup_device(const char *redirect, char *path, unsigned int maj,
36 maj, min);
57 if (maj == major(st.st_rdev) && min == minor(st.st_rdev)) {
  /hardware/libhardware/include/hardware/
hardware.h 37 #define HARDWARE_MAKE_API_VERSION(maj,min) \
38 ((((maj) & 0xff) << 8) | ((min) & 0xff))
40 #define HARDWARE_MAKE_API_VERSION_2(maj,min,hdr) \
41 ((((maj) & 0xff) << 24) | (((min) & 0xff) << 16) | ((hdr) & 0xffff))
68 #define HARDWARE_MODULE_API_VERSION(maj,min) HARDWARE_MAKE_API_VERSION(maj,min)
69 #define HARDWARE_MODULE_API_VERSION_2(maj,min,hdr) HARDWARE_MAKE_API_VERSION_2(maj,min,hdr)
74 #define HARDWARE_DEVICE_API_VERSION(maj,min) HARDWARE_MAKE_API_VERSION(maj,min
    [all...]
  /external/libnl/include/netlink/
version.h 23 #define LIBNL_VER(maj,min) ((maj) << 8 | (min))
version.h.in 23 #define LIBNL_VER(maj,min) ((maj) << 8 | (min))
  /external/libxaac/decoder/drc_src/
impd_drc_api_defs.h 41 #define IA_MAKE_VERSION_STR(maj, min) IA_STR(maj) "." IA_STR(min)
  /external/libxaac/decoder/
ixheaacd_api_defs.h 31 #define IA_MAKE_VERSION_STR(maj, min) IA_STR(maj) "." IA_STR(min)
  /external/curl/tests/python_dependencies/impacket/
uuid.py 38 (maj,min) = s.split('.')
39 return pack('<H',int(maj)) + pack('<H',int(min))
48 maj, min = unpack("<HH", bin[16:])
49 return uuidstr, "%d.%d" % (maj, min)
67 uuid, (maj, min) = tup
68 return "%s v%d.%d" % (uuid, maj, min)
  /external/curl/lib/
krb5.c 80 OM_uint32 maj, min; local
88 maj = gss_unseal(&min, *context, &enc, &dec, NULL, NULL);
89 if(maj != GSS_S_COMPLETE) {
117 OM_uint32 maj, min; local
126 maj = gss_seal(&min, *context,
131 if(maj != GSS_S_COMPLETE)
160 OM_uint32 maj, min; local
203 maj = gss_import_name(&min, &input_buffer, GSS_C_NT_HOSTBASED_SERVICE,
206 if(maj != GSS_S_COMPLETE) {
227 maj = Curl_gss_init_sec_context(data
324 OM_uint32 maj = local
    [all...]
  /hardware/intel/bootstub/
imr_toc.h 18 #define MAKE_TOC_VERSION(maj, min) ((min) << 16 | (maj))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
sysmacros.h 69 # define makedev(maj, min) gnu_dev_makedev (maj, min)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
sysmacros.h 69 # define makedev(maj, min) gnu_dev_makedev (maj, min)
  /external/strace/
gcc_compat.h 33 # define GNUC_PREREQ(maj, min) \
34 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
37 # define GNUC_PREREQ(maj, min) 0
  /external/libdrm/libkms/
linux.c 62 unsigned maj, min; local
85 maj = major(buffer.st_rdev);
88 snprintf(path, PATH_SIZE, "/sys/dev/char/%d:%d/device/driver", maj, min);
  /external/libvpx/libvpx/vpx_util/
endian_inl.h 21 #define LOCAL_GCC_PREREQ(maj, min) (LOCAL_GCC_VERSION >= (((maj) << 8) | (min)))
24 #define LOCAL_GCC_PREREQ(maj, min) 0
  /external/kmod/tools/
static-nodes.c 62 static int write_human(FILE *out, char modname[], char devname[], char type, unsigned int maj, unsigned int min)
73 (type == 'c') ? "character" : "block", maj, min);
86 static int write_tmpfiles(FILE *out, char modname[], char devname[], char type, unsigned int maj, unsigned int min)
100 type, devname, maj, min);
113 static int write_devname(FILE *out, char modname[], char devname[], char type, unsigned int maj, unsigned int min)
117 ret = fprintf(out, "%s %s %c%u:%u\n", modname, devname, type, maj, min);
248 unsigned int maj, min; local
255 &type, &maj, &min);
262 format->write(out, modname, devname, type, maj, min);
  /external/libnl/include/netlink/route/
tc.h 40 #define TC_HANDLE(maj, min) (TC_H_MAJ((maj) << 16) | TC_H_MIN(min))
  /external/iproute2/lib/
names.c 25 int min, maj; local
36 if (sscanf(p, "%x:%x %s\n", &maj, &min, name) == 3) {
37 *id = (maj << 16) | min;
38 } else if (sscanf(p, "%x:%x %s #", &maj, &min, name) == 3) {
39 *id = (maj << 16) | min;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
features.h 141 # define __GNUC_PREREQ(maj, min) \
142 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
144 # define __GNUC_PREREQ(maj, min) 0
343 #define __GLIBC_PREREQ(maj, min) \
344 ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
getopt.h 40 # define __GNUC_PREREQ(maj, min) (0)
  /external/libdrm/
xf86drm.c 2729 int maj, min, type; local
2790 int maj, min; local
3710 int maj, min, n, ret, base; local
3937 int maj, min; local
4077 unsigned int maj, min; local
    [all...]
  /device/generic/goldfish-opengl/system/egl/
eglContext.h 29 EGLContext_t(EGLDisplay dpy, EGLConfig config, EGLContext_t* shareCtx, int maj, int min);
  /external/perf_data_converter/src/quipper/
dso.h 26 u32 maj = 0; member in struct:quipper::DSOInfo
  /external/libnl/tests/
test-complex-HTB-with-hash-filters.c 29 #define TC_HANDLE(maj, min) (TC_H_MAJ((maj) << 16) | TC_H_MIN(min))
99 __u32 maj, min; local
102 maj = TC_H_ROOT;
105 maj = TC_H_UNSPEC;
108 maj = strtoul(str, &p, 16);
110 maj = 0;
115 if (maj >= (1<<16))
117 maj <<= 16;
124 maj |= min
    [all...]

Completed in 532 milliseconds

1 2 3 4 5 6