Searched defs:no (Results 1 - 25 of 31) sorted by relevance

12

/external/linux-tools-perf/util/ui/
H A Dutil.c108 static const char yes[] = "Yes", no[] = "No", variable
114 return newtWinChoice(NULL, (char *)yes, (char *)no, (char *)msg) == 1;
/external/qemu/audio/
H A Dnoaudio.c43 NoVoiceOut *no = (NoVoiceOut *) hw; local
50 ticks = now - no->old_ticks;
55 no->old_ticks = now;
99 NoVoiceIn *no = (NoVoiceIn *) hw; local
106 int64_t ticks = now - no->old_ticks;
110 no->old_ticks = now;
/external/clang/test/Sema/
H A DMicrosoftExtensions.c56 var.bad1; // expected-error {{no member named 'bad1' in 'struct test'}}
57 var.bad2; // expected-error {{no member named 'bad2' in 'struct test'}}
103 enum DE1 no; // no warning because E1 is not deprecated local
/external/fsck_msdos/
H A Dfat.c119 * Now check the actual clean flag (and the no-error flag).
169 _readfat(int fs, struct bootblock *boot, int no, u_char **buffer) argument
182 off = boot->ResSectors + no * boot->FATsecs;
207 readfat(int fs, struct bootblock *boot, int no, struct fatEntry **fp) argument
216 if (!_readfat(fs, boot, no, &buffer))
292 ret |= checkclnum(boot, no, cl, &fat[cl].next);
298 ret |= checkclnum(boot, no, cl, &fat[cl].next);
304 ret |= checkclnum(boot, no, cl, &fat[cl].next);
309 ret |= checkclnum(boot, no, cl, &fat[cl].next);
/external/srec/srec/ca/
H A Dsyn_srec.c333 int CA_CheckTranscription(CA_Syntax *hSyntax, const char *transcription, int no) argument
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadstabs.c120 Int no; /* current line */ member in struct:__anon13631
275 addr, line.no + line.ovf * LINENO_OVERFLOW, i);
282 line.no = 0;
300 addr, line.no + line.ovf * LINENO_OVERFLOW, i);
304 line.prev = line.no;
305 line.no = (Int)((UShort)st->n_desc);
307 if (line.prev > line.no + OVERFLOW_DIFFERENCE && file.same) {
310 line.prev, line.no, file.name);
323 func.line = line.no;
359 addr, line.no
[all...]
/external/clang/test/SemaCXX/
H A Denum-scoped.cpp108 enum class scoped_enum { yes, no, maybe }; member in class:E1::E2::Redeclare5::scoped_enum
110 if (e == scoped_enum::no) { }
/external/grub/lib/
H A Ddevice.c496 auto void show_error (int no, const char *msg);
497 auto void show_warning (int no, const char *msg, ...);
499 auto void show_error (int no, const char *msg) argument
501 fprintf (stderr, "%s:%d: error: %s\n", map_file, no, msg);
504 auto void show_warning (int no, const char *msg, ...) argument
509 fprintf (stderr, "%s:%d: warning: ", map_file, no);
/external/iproute2/include/linux/
H A Dinet_diag.h46 * to offset cc+"yes" or to offset cc+"no". "yes" is supposed to be
53 unsigned short no; member in struct:inet_diag_bc_op
/external/ppp/pppd/
H A Dccp.c251 #define RREQ_REPEAT 2 /* send another reset-req if no reset-ack */
623 error("MPPE required, but kernel has no support.");
903 ccp_options no; /* options we've seen already */ local
906 memset(&no, 0, sizeof(no));
912 no.mppe = 1;
935 no.deflate = 1;
958 no.bsd_compress = 1;
972 * Predictor-1 and 2 have no options, so they can't be Naked.
1177 error("MPPE required, but kernel has no suppor
[all...]
H A Dipv6cp.c339 * If comma first character, then no local identifier
359 * If comma last character, the no remote identifier
683 ipv6cp_options no; /* options we've seen Naks for */ local
686 BZERO(&no, sizeof(no));
702 no.neg = 1; \
714 no.neg = 1; \
767 if (go->neg_vj || no.neg_vj ||
770 no.neg_vj = 1;
773 if (go->neg_ifaceid || no
[all...]
H A Dipcp.c215 { "ipcp-no-addresses", o_bool, &ipcp_wantoptions[0].old_addrs,
218 { "ipcp-no-address", o_bool, &ipcp_wantoptions[0].neg_addr,
428 * If colon first character, then no local addr.
450 * If colon last character, then no remote addr.
975 ipcp_options no; /* options we've seen Naks for */ local
978 BZERO(&no, sizeof(no));
997 no.old_addrs = 1; \
1009 no.neg = 1; \
1022 no
[all...]
H A Dipxcp.c567 * If no routing agent was specified then we do RIP/SAP according to the
775 ipxcp_options no; /* options we've seen Naks for */ local
778 BZERO(&no, sizeof(no));
791 if (!go->neg_nn || no.neg_nn || (cilen != CILEN_NETN))
793 no.neg_nn = 1;
803 if (!go->neg_node || no.neg_node || (cilen != CILEN_NODEN))
805 no.neg_node = 1;
827 if (no.router & s) /* duplicate NAKs are always bad */
830 if (no
[all...]
H A Dlcp.c938 lcp_options no; /* options we've seen Naks for */ local
943 BZERO(&no, sizeof(no));
958 no.neg = 1; \
970 no.neg = 1; \
981 no.neg = 1; \
992 no.neg = 1; \
1003 no.neg = 1; \
1015 no.neg = 1; \
1026 no
[all...]
/external/grub/stage2/
H A Dchar_io.c251 get_history (int no) argument
253 if (no < 0 || no >= num_history)
256 return (char *) HISTORY_BUF + MAX_CMDLINE * no;
261 add_history (const char *cmdline, int no) argument
263 grub_memmove ((char *) HISTORY_BUF + MAX_CMDLINE * (no + 1),
264 (char *) HISTORY_BUF + MAX_CMDLINE * no,
265 MAX_CMDLINE * (num_history - no));
266 grub_strcpy ((char *) HISTORY_BUF + MAX_CMDLINE * no, cmdline);
1092 /* If the terminal is dumb, there is no wa
[all...]
/external/openssl/crypto/comp/
H A Dc_zlib.c36 static void* zlib_zalloc(void* opaque, unsigned int no, unsigned int size) argument
40 p=OPENSSL_malloc(no*size);
42 memset(p, 0, no*size);
671 /* If no data written or already flush show success */
/external/libogg/src/
H A Dframing.c505 (undersized page). If there are no packets or partial packets to
631 0) page not ready; more data (no bytes skipped)
957 /* Gather the whole packet. We'll have no holes or a partial packet */
1010 void checkpacket(ogg_packet *op,int len, int no, int pos){ argument
1026 if(no==0){
1030 if(no>lastno+1)
1033 lastno=no;
1042 if(op->packet[j]!=((j+no)&0xff)){
1044 j,op->packet[j],(j+no)&0xff);
1801 /* Test lost pages on pagein/packetout: no rollbac
[all...]
/external/libxml2/
H A Dxinclude.c621 "detected a local recursion with no xpointer in %s\n",
870 * @no: the child number
875 xmlXIncludeGetNthChild(xmlNodePtr cur, int no) { argument
880 for (i = 0;i <= no;cur = cur->next) {
887 if (i == no)
1724 /* If no current base, set it */
2126 "could not load %s, and no fallback was found\n",
2328 * Returns 0 if no substitution were done, -1 if some processing failed
2442 * Returns 0 if no substitution were done, -1 if some processing failed
2477 * Returns 0 if no substitutio
[all...]
H A Dxpointer.c175 * @no: the child number
177 * Returns the @no'th element child of @cur or NULL
180 xmlXPtrGetNthChild(xmlNodePtr cur, int no) { argument
185 for (i = 0;i <= no;cur = cur->next) {
192 if (i == no)
975 * TODO: there is no new scheme registration mechanism
2401 * if there is no move needed return the current value.
2749 * is matched literally, with no normalization except that provided by
/external/libxslt/libxslt/
H A Dxsltutils.c72 * or has no namespace and the element is in that namespace.
157 * or has no namespace and the element is in that namespace.
445 } else if (xmlStrEqual(prop, (const xmlChar *)"no")) {
449 "xsl:message : terminate expecting 'yes' or 'no'\n");
784 "QName: no element for namespace lookup %s\n",
821 "%s:%s : no namespace bound to prefix %s\n",
858 "QName: no element for namespace lookup %s\n",
895 "%s : no namespace bound to prefix %s\n",
1130 "xsltDoSortFunction: no support for data-type = %s\n",
1558 xmlOutputBufferWriteString(buf, " standalone=\"no\"");
2220 xsltSetDebuggerCallbacks(int no, void *block) argument
[all...]
/external/llvm/lib/Support/
H A Dregcomp.c331 case ')': /* happens only if no current unmatched ( */
389 return; /* no repetition, we're done */
444 - p_str - string (no metacharacters) "parser"
630 * no set operations are done.
864 static char /* if no counterpart, return ch */
1032 int no = p->g->ncsets++; local
1039 if (no >= p->ncsalloc) { /* need another column of space */
1057 for (i = 0; i < no; i++)
1066 cs = &p->g->sets[no];
1067 cs->ptr = p->g->setbits + css*((no)/CHAR_BI
[all...]
/external/mksh/src/
H A Dhistrap.c16 * implied; without malicious intent or gross negligence. In no event
448 bi_errorf("no history (yet)");
459 bi_errorf("no history (yet)");
792 sn1, /* bytes 1 to 4 of a line no */
877 * find a pointer to the data 'no' back from the end of the file
881 hist_skip_back(unsigned char *base, int *bytes, int no) argument
896 if (++lines == no) {
1274 * XXX: this means the alarm will have no effect if a trap
1332 * no problem with afree(p->trap) in settrap() while still in use.
/external/yaffs2/yaffs2/direct/
H A Ddtest.c21 int ni,no; local
27 no = yaffs_write(outh,buffer,ni);
28 if(ni != no)
511 printf("no alias");
558 printf("no alias");
/external/bison/src/
H A Dvcg.h92 int no; /* Class number */ member in struct:classname
93 const char *name; /* Name associated to the class no. */
105 /* VCG decision yes/no. */
109 no enumerator in enum:decision
165 /* Label the text displayed inside the node. If no label is specified
174 if the whole graph is fully specified with locations and no part is
189 for the nodes automatically, if no fixed levels are given.
209 If no value (in pixels) is given then width and height are
232 no folding is specified for a node, then the node may be folded if
340 Default: no labe
[all...]
/external/v8/src/
H A Dd8.cc1102 ShellThread(int no, char* files) argument
1104 no_(no), files_(files) { }
1518 // Run interactive shell if explicitly requested or if no script has been

Completed in 4332 milliseconds

12