Home
last modified time | relevance | path

Searched refs:PUTCHAR (Results 1 – 14 of 14) sorted by relevance

/external/ppp/pppd/
Dcbcp.c388 PUTCHAR(CB_CONF_USER, bufp);
390 PUTCHAR(len , bufp);
391 PUTCHAR(5, bufp); /* delay */
392 PUTCHAR(1, bufp);
400 PUTCHAR(CB_CONF_ADMIN, bufp);
402 PUTCHAR(len, bufp);
403 PUTCHAR(5, bufp); /* delay */
410 PUTCHAR(CB_CONF_NO, bufp);
412 PUTCHAR(len , bufp);
435 PUTCHAR(code, outp);
[all …]
Dlcp.c717 PUTCHAR(opt, ucp); \
718 PUTCHAR(CILEN_VOID, ucp); \
722 PUTCHAR(opt, ucp); \
723 PUTCHAR(CILEN_SHORT, ucp); \
728 PUTCHAR((opt), ucp); \
729 PUTCHAR(CILEN_CHAP, ucp); \
731 PUTCHAR((CHAP_DIGEST(val)), ucp); \
735 PUTCHAR(opt, ucp); \
736 PUTCHAR(CILEN_LONG, ucp); \
741 PUTCHAR(opt, ucp); \
[all …]
Deap.c274 PUTCHAR(EAP_FAILURE, outp);
276 PUTCHAR(esp->es_server.ea_id, outp);
299 PUTCHAR(EAP_SUCCESS, outp);
301 PUTCHAR(esp->es_server.ea_id, outp);
687 PUTCHAR(EAP_REQUEST, outp);
688 PUTCHAR(esp->es_server.ea_id, outp);
694 PUTCHAR(EAPT_IDENTITY, outp);
702 PUTCHAR(EAPT_MD5CHAP, outp);
710 PUTCHAR(challen, outp);
723 PUTCHAR(EAPT_SRP, outp);
[all …]
Dupap.c562 PUTCHAR(UPAP_AUTHREQ, outp);
563 PUTCHAR(++u->us_id, outp);
565 PUTCHAR(u->us_userlen, outp);
568 PUTCHAR(u->us_passwdlen, outp);
596 PUTCHAR(code, outp);
597 PUTCHAR(id, outp);
599 PUTCHAR(msglen, outp);
Dipxcp.c619 PUTCHAR (IPX_NETWORK_NUMBER, ucp);
620 PUTCHAR (CILEN_NETN, ucp);
626 PUTCHAR (IPX_NODE_NUMBER, ucp);
627 PUTCHAR (CILEN_NODEN, ucp);
629 PUTCHAR (go->our_node[indx], ucp);
635 PUTCHAR (IPX_ROUTER_NAME, ucp);
636 PUTCHAR (CILEN_NAME + cilen - 1, ucp);
638 PUTCHAR (go->name [indx], ucp);
644 PUTCHAR (IPX_ROUTER_PROTOCOL, ucp);
645 PUTCHAR (CILEN_PROTOCOL, ucp);
[all …]
Dipcp.c780 PUTCHAR(opt, ucp); \
781 PUTCHAR(CILEN_ADDRS, ucp); \
795 PUTCHAR(opt, ucp); \
796 PUTCHAR(vjlen, ucp); \
799 PUTCHAR(maxslotindex, ucp); \
800 PUTCHAR(cflag, ucp); \
811 PUTCHAR(opt, ucp); \
812 PUTCHAR(CILEN_ADDR, ucp); \
824 PUTCHAR(opt, ucp); \
825 PUTCHAR(CILEN_ADDR, ucp); \
[all …]
Dipv6cp.c575 PUTCHAR(opt, ucp); \
576 PUTCHAR(vjlen, ucp); \
587 PUTCHAR(opt, ucp); \
588 PUTCHAR(idlen, ucp); \
1066 PUTCHAR(CI_IFACEID, ucp);
1067 PUTCHAR(CILEN_IFACEID, ucp);
Dpppd.h759 #define PUTCHAR(c, cp) { \ macro
806 PUTCHAR(PPP_ALLSTATIONS, p); \
807 PUTCHAR(PPP_UI, p); \
Dfsm.c813 PUTCHAR(code, outp);
814 PUTCHAR(id, outp);
/external/llvm-project/llvm/test/Transforms/InstCombine/
Dprintf-1.ll40 ; CHECK-NEXT: [[PUTCHAR:%.*]] = call i32 @putchar(i32 104)
44 ; CHECK-IPRINTF-NEXT: [[PUTCHAR:%.*]] = call i32 @putchar(i32 104)
56 ; CHECK-NEXT: [[PUTCHAR:%.*]] = call i32 @putchar(i32 37)
60 ; CHECK-IPRINTF-NEXT: [[PUTCHAR:%.*]] = call i32 @putchar(i32 37)
70 ; CHECK-NEXT: [[PUTCHAR:%.*]] = call i32 @putchar(i32 37)
74 ; CHECK-IPRINTF-NEXT: [[PUTCHAR:%.*]] = call i32 @putchar(i32 37)
102 ; CHECK-NEXT: [[PUTCHAR:%.*]] = call i32 @putchar(i32 104)
106 ; CHECK-IPRINTF-NEXT: [[PUTCHAR:%.*]] = call i32 @putchar(i32 104)
Dprintf-2.ll20 ; CHECK-NEXT: [[PUTCHAR:%.*]] = call i32 @putchar(i32 104)
51 ; CHECK-NEXT: [[PUTCHAR:%.*]] = call i32 @putchar(i32 97)
Dputs-1.ll16 ; CHECK-NEXT: [[PUTCHAR:%.*]] = call i32 @putchar(i32 10)
/external/pcre/dist2/src/
Dpcre2_intmodedep.h80 #undef PUTCHAR
266 #define PUTCHAR(c, p) (*p = c, 1) macro
357 #define PUTCHAR(c, p) ((utf && c > MAX_UTF_SINGLE_CU)? \ macro
463 #define PUTCHAR(c, p) ((utf && c > MAX_UTF_SINGLE_CU)? \ macro
537 #define PUTCHAR(c, p) (*p = c, 1) macro
Dpcre2_compile.c5586 code += PUTCHAR(c, code); in compile_branch()