Searched refs:class (Results 1 - 23 of 23) sorted by relevance

/seL4-camkes-master/projects/musllibc/src/ctype/
H A Dwctrans.c5 wctrans_t wctrans(const char *class) argument
7 if (!strcmp(class, "toupper")) return (wctrans_t)1;
8 if (!strcmp(class, "tolower")) return (wctrans_t)2;
/seL4-camkes-master/projects/musllibc/src/network/
H A Dres_query.c8 int __res_query(const char *name, int class, int type, unsigned char *dest, int len) argument
11 int ql = __res_mkquery(0, name, class, type, 0, 0, 0, q, sizeof q);
H A Dres_querydomain.c4 int res_querydomain(const char *name, const char *domain, int class, int type, unsigned char *dest, int len) argument
13 return res_query(tmp, class, type, dest, len);
H A Dres_mkquery.c6 int __res_mkquery(int op, const char *dname, int class, int type, argument
18 if (l>253 || buflen<n || op>15u || class>255u || type>255u)
32 q[i+3] = class;
/seL4-camkes-master/projects/projects_libs/libusbdrivers/src/drivers/
H A Dcdc.c83 /* CDC device interface class */
125 cdc->udev->class = idesc->bInterfaceClass;
127 if (cdc->udev->class == INF_COMM && cdc->subclass < 0xd) {
133 } else if (cdc->udev->class == INF_DATA) {
186 int class; local
237 class = usbdev_get_class(udev);
238 if (class != USB_CLASS_CDCDATA && class != USB_CLASS_COMM) {
239 ZF_LOGD("Not a CDC device(%d)\n", class);
H A Dhid.c136 int class; local
157 class = usbdev_get_class(udev);
158 if (class != USB_CLASS_HID) {
159 ZF_LOGD("Not a HID device(%d)\n", class);
H A Dstorage.c129 ubms->udev->class = idesc->bInterfaceClass;
247 int class; local
264 * The class info is stored in the interface descriptor.
286 class = usbdev_get_class(udev);
287 if (class != USB_CLASS_STORAGE) {
288 ZF_LOGD("Not a USB mass storage(%d)\n", class);
/seL4-camkes-master/projects/lwip/src/netif/ppp/
H A Dmultilink.c462 ep->class = EPD_MAC;
474 ep->class = EPD_IP;
501 if (ep->class == EPD_NULL && ep->length == 0)
503 if (ep->class == EPD_IP && ep->length == 4) {
513 if (ep->class == EPD_MAC && ep->length == 6)
515 else if (ep->class == EPD_MAGIC && (ep->length % 4) == 0)
518 if (ep->class <= EPD_PHONENUM)
520 endp_class_names[ep->class]);
522 q += slprintf(q, sizeof(str)-1, "%d", ep->class);
559 /* not a class nam
[all...]
H A Dlcp.c880 #define ADDCIENDP(opt, neg, class, val, len) \
885 PUTCHAR(class, ucp); \
1044 #define ACKCIENDP(opt, neg, class, val, vlen) \
1055 if (cichar != class) \
1740 #define REJCIENDP(opt, neg, class, val, vlen) \
1749 if (cichar != class) \
2551 GETCHAR(epd.class, p);
/seL4-camkes-master/projects/util_libs/libethdrivers/include/ethdrivers/virtio/
H A Dvirtio_net.h106 uint8_t class;
138 * In addition to the class/cmd header, the TABLE_SET command requires
/seL4-camkes-master/projects/lwip/src/apps/http/makefsdata/
H A Dmakefsdata32 } elsif($file =~ /\.class$/) {
/seL4-camkes-master/projects/camkes-tool/tools/
H A Dtpp24 class Pass(object):
39 class RemoveDuplicateNewlines(Pass):
55 class Rstrip(Pass):
62 class DropLeadingBlankLines(Pass):
76 class Condense(Pass):
86 class LockIndent(Pass):
99 class Cowsay(Pass):
115 class Accumulate(Pass):
142 class CompressBrackets(Pass):
152 class CompressBrace
[all...]
/seL4-camkes-master/projects/musllibc/src/regex/
H A Dregcomp.c53 tre_ctype_t class; member in struct:__anon461
105 tre_ctype_t class; member in struct:__anon464
523 Chclass = '[:' class ':]'
534 tre_ctype_t class; local
540 class = 0;
562 class = tre_ctype(tmp);
566 if (!class || s[len+1] != ']')
586 if (class && neg->negate) {
589 neg->a[neg->len++] = class;
596 lit->class
2022 tre_set_one(tre_mem_t mem, int position, int code_min, int code_max, tre_ctype_t class, tre_ctype_t *neg_classes, int backref) argument
[all...]
H A Dtre.h109 /* Character class assertion. */
110 tre_ctype_t class;
114 /* Negative character class assertions. */
122 #define ASSERT_CHAR_CLASS 4 /* Character class in `class'. */
H A Dregexec.c85 && !tre_isctype((tre_cint_t)prev_c, trans_i->u.class)) \
88 && !tre_isctype(tre_tolower((tre_cint_t)prev_c),trans_i->u.class) \
89 && !tre_isctype(tre_toupper((tre_cint_t)prev_c),trans_i->u.class)) \
/seL4-camkes-master/projects/projects_libs/libusbdrivers/src/
H A Dusb.c428 usb_class_get_description(d->class));
559 /* Device class defined at interface level */
560 if (!udev->class) {
561 udev->class =
690 * c) device class
756 udev->class = d_desc->bDeviceClass;
914 if (udev->class == USB_CLASS_HUB) {
1049 return dev->class;
/seL4-camkes-master/projects/projects_libs/libusbdrivers/include/usb/
H A Dusb.h85 uint8_t class;
164 CS_INTERFACE = 0x24, //USB class-specific
165 CS_ENDPOINT = 0x25, //USB class-specific
355 /** Return the class reported by a USB device
357 * @return The class ID
362 * Returns a string representation of the provided USB class code.
365 * @param[in] usb_class the class id in question.
366 * @return a string representation of the USB class.
/seL4-camkes-master/projects/camkes-tool/cdl-refine-tests/
H A Drun_tests162 class TempDir():
/seL4-camkes-master/tools/cogent/cogent/manual/
H A Dcogent-manual.tex564 several other programming languages. In Java, a generic class definition has the form \texttt{class Pair<A> \{\ldots\}},
565 it defines the generic class \code{Pair} with its type parameter \code{A}. In C++ a similar concept is
/seL4-camkes-master/tools/cogent/cogent/doc/
H A Ddoc.tex637 have ``partial'' record types, which are first class as well. These "partial" record types have
/seL4-camkes-master/projects/projects_libs/libjansson/jansson-2.7/
H A Dltmain.sh2062 *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \
/seL4-camkes-master/tools/rumprun/tests/configure/build-aux/
H A Dltmain.sh2062 *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \
/seL4-camkes-master/tools/rumprun/tests/configure/
H A Dconfigure6604 # Character class describing NM global symbol codes.
13593 class Foo

Completed in 355 milliseconds