Home
last modified time | relevance | path

Searched refs:maj (Results 1 – 25 of 61) sorted by relevance

123

/external/iproute2/tc/
Dtc_util.c44 __u32 maj; in get_qdisc_handle() local
47 maj = TC_H_UNSPEC; in get_qdisc_handle()
50 maj = strtoul(str, &p, 16); in get_qdisc_handle()
53 maj <<= 16; in get_qdisc_handle()
57 *h = maj; in get_qdisc_handle()
63 __u32 maj, min; in get_tc_classid() local
66 maj = TC_H_ROOT; in get_tc_classid()
69 maj = TC_H_UNSPEC; in get_tc_classid()
72 maj = strtoul(str, &p, 16); in get_tc_classid()
74 maj = 0; in get_tc_classid()
[all …]
/external/libvorbis/
Dautogen.sh54 maj=`echo $ver | $VERSIONMKMAJ`
56 if test $maj -eq $majneeded -a $min -ge $minneeded; then
68 maj=`echo $ver | $VERSIONMKMAJ`
70 if test $maj -eq $majneeded -a $min -ge $minneeded; then
/external/webp/src/dsp/
Ddsp.h32 # define LOCAL_GCC_PREREQ(maj, min) \ argument
33 (LOCAL_GCC_VERSION >= (((maj) << 8) | (min)))
36 # define LOCAL_GCC_PREREQ(maj, min) 0
41 # define LOCAL_CLANG_PREREQ(maj, min) \ argument
42 (LOCAL_CLANG_VERSION >= (((maj) << 8) | (min)))
45 # define LOCAL_CLANG_PREREQ(maj, min) 0
/external/fio/lib/
Dlinux-dev-lookup.c10 int blktrace_lookup_device(const char *redirect, char *path, unsigned int maj, in blktrace_lookup_device() argument
36 maj, min); in blktrace_lookup_device()
57 if (maj == major(st.st_rdev) && min == minor(st.st_rdev)) { in blktrace_lookup_device()
Dlinux-dev-lookup.h4 int blktrace_lookup_device(const char *redirect, char *path, unsigned int maj,
/external/fio/
Dblktrace.c133 unsigned int maj = FMAJOR(device); in trace_add_file() local
139 if (last_maj == maj && last_min == min) in trace_add_file()
142 last_maj = maj; in trace_add_file()
149 if (f->major == maj && f->minor == min) { in trace_add_file()
155 if (blktrace_lookup_device(td->o.replay_redirect, dev, maj, min)) { in trace_add_file()
160 " with: %s\n", maj, min, in trace_add_file()
163 dprint(FD_BLKTRACE, "device lookup: %d/%d\n", maj, min); in trace_add_file()
168 td->files[fileno]->major = maj; in trace_add_file()
Ddiskutil.c156 static int get_device_numbers(char *file_name, int *maj, int *min) in get_device_numbers() argument
193 *maj = majdev; in get_device_numbers()
198 static int read_block_dev_entry(char *path, int *maj, int *min) in read_block_dev_entry() argument
215 if (sscanf(p, "%u:%u", maj, min) != 2) in read_block_dev_entry()
/external/llvm/include/llvm/Support/
DCompiler.h41 # define LLVM_GNUC_PREREQ(maj, min, patch) \ argument
43 ((maj) << 20) + ((min) << 10) + (patch))
45 # define LLVM_GNUC_PREREQ(maj, min, patch) \ argument
46 ((__GNUC__ << 20) + (__GNUC_MINOR__ << 10) >= ((maj) << 20) + ((min) << 10))
48 # define LLVM_GNUC_PREREQ(maj, min, patch) 0 argument
/external/libdrm/libkms/
Dlinux.c55 unsigned maj, min; in linux_name_from_sysfs() local
78 maj = major(buffer.st_rdev); in linux_name_from_sysfs()
81 snprintf(path, PATH_SIZE, "/sys/dev/char/%d:%d/device/driver", maj, min); in linux_name_from_sysfs()
/external/libvncserver/x11vnc/
Dxkb_bell.c56 int op, ev, er, maj, min; in initialize_xkb() local
62 } else if (! XkbQueryExtension(dpy, &op, &ev, &er, &maj, &min)) { in initialize_xkb()
Dxwrappers.h95 extern Bool XTestQueryExtension_wr(Display *dpy, int *ev, int *er, int *maj,
103 extern Bool XRecordQueryVersion_wr(Display *dpy, int *maj, int *min);
Dxwrappers.c99 Bool XTestQueryExtension_wr(Display *dpy, int *ev, int *er, int *maj,
107 Bool XRecordQueryVersion_wr(Display *dpy, int *maj, int *min);
1129 Bool XTestQueryExtension_wr(Display *dpy, int *ev, int *er, int *maj, in XTestQueryExtension_wr() argument
1133 return XTestQueryExtension(dpy, ev, er, maj, min); in XTestQueryExtension_wr()
1135 if (!dpy || !ev || !er || !maj || !min) {} in XTestQueryExtension_wr()
1278 Bool XRecordQueryVersion_wr(Display *dpy, int *maj, int *min) { in XRecordQueryVersion_wr() argument
1281 return XRecordQueryVersion(dpy, maj, min); in XRecordQueryVersion_wr()
1283 if (!dpy || !maj || !min) {} in XRecordQueryVersion_wr()
/external/icu/icu4c/source/data/locales/
Dkl.txt88 "maj",
118 "maj",
Deo.txt115 "maj",
Dda.txt590 "maj",
618 "maj",
634 "maj",
662 "maj",
/external/libunwind/include/
Dlibunwind-common.h34 #define UNW_VERSION_CODE(maj,min) (((maj) << 16) | (min)) argument
/external/libnl/include/linux/
Dpkt_sched.h70 #define TC_H_MAKE(maj,min) (((maj)&TC_H_MAJ_MASK)|((min)&TC_H_MIN_MASK)) argument
/external/fio/t/
Dbtrace2fio.c275 unsigned int maj = FMAJOR(devno); in btrace_add_file() local
283 if (p->last_major == maj && p->last_minor == min) in btrace_add_file()
286 p->last_major = maj; in btrace_add_file()
295 if (f->major == maj && f->minor == min) in btrace_add_file()
300 if (!blktrace_lookup_device(NULL, dev, maj, min)) { in btrace_add_file()
301 log_err("fio: failed to find device %u/%u\n", maj, min); in btrace_add_file()
312 f->major = maj; in btrace_add_file()
/external/elfutils/src/tests/
Drun-dwarf-getmacros.sh533 __GNUC_PREREQ(maj,min) ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
567 __GLIBC_PREREQ(maj,min) ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
/external/strace/
Ddefs.h71 # define GNUC_PREREQ(maj, min) \ argument
72 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
75 # define GNUC_PREREQ(maj, min) 0 argument
/external/icu/icu4c/source/data/lang/
Dca.txt14 colCaseFirst{"Ordenació per majúscules i minúscules"}
15 colCaseLevel{"Ordenació per detecció de majúscules"}
749 upper{"Ordena amb majúscules primer"}
752 no{"Ordena sense distingir majúscules i minúscules"}
753 yes{"Ordena amb detecció de majúscules i minúscules"}
770 quaternary{"Ordena per accents/majúscules/amplada/kana"}
772 tertiary{"Ordena per accent/majúscules/amplada"}
/external/bison/darwin-lib/
Dgetopt.h117 # define __GNUC_PREREQ(maj, min) (0) argument
/external/bison/lib/
Dgetopt.in.h116 # define __GNUC_PREREQ(maj, min) (0) argument
/external/iproute2/include/linux/
Dpkt_sched.h70 #define TC_H_MAKE(maj,min) (((maj)&TC_H_MAJ_MASK)|((min)&TC_H_MIN_MASK)) argument
/external/kernel-headers/original/uapi/linux/
Dpkt_sched.h70 #define TC_H_MAKE(maj,min) (((maj)&TC_H_MAJ_MASK)|((min)&TC_H_MIN_MASK)) argument

123