Searched refs:code (Results 1 - 25 of 406) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/lib/zlib/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
H A Dinftrees.h12 information needed to do the operation requested by the code that
14 table that indexes more bits of the code. op indicates whether
16 distance, an end-of-block, or an invalid code. For a table
19 is the number of extra bits to get after the code. bits is
20 the number of bits in this code or part of the code to drop off
26 unsigned char bits; /* bits in this part of the code */
27 unsigned short val; /* offset in table or code value */
28 } code; typedef in typeref:struct:__anon1419
35 01000000 - invalid code
[all...]
H A Dinflate.h13 the crc code when it is not needed. For shared libraries, gzip decoding
37 LENLENS, /* i: waiting for code length code lengths */
38 CODELENS, /* i: waiting for length/lit and distance code lengths */
39 LEN, /* i: waiting for length/lit code */
41 DIST, /* i: waiting for distance code */
99 /* for table and code decoding */
101 /* fixed and dynamic code tables */
102 code const FAR *lencode; /* starting table for length/literal codes */
103 code cons
[all...]
/barrelfish-2018-10-04/lib/libc/stdlib/
H A D_Exit.c16 * is where you would put the extra code if it were.)
19 _Exit(int code) argument
21 _exit(code);
/barrelfish-2018-10-04/lib/libc/regex/
H A Dcname.h6 * This code is derived from software contributed to Berkeley by
12 * 1. Redistributions of source code must retain the above copyright
40 char code; member in struct:cname
H A Dregerror.c6 * This code is derived from software contributed to Berkeley by
12 * 1. Redistributions of source code must retain the above copyright
85 int code; member in struct:rerr
106 {0, "", "*** unknown regexp error code ***"}
129 for (r = rerrs; r->code != 0; r++)
130 if (r->code == target)
134 if (r->code != 0)
166 for (r = rerrs; r->code != 0; r++)
169 if (r->code == 0)
172 sprintf(localbuf, "%d", r->code);
[all...]
/barrelfish-2018-10-04/lib/tommath/
H A Dbn_error.c19 int code; member in struct:__anon1397
27 /* return a char * string for a given code */
28 const char *mp_error_to_string(int code) argument
34 if (msgs[x].code == code) {
39 /* generic reply for invalid code */
40 return "Invalid error code";
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/rxspencer/
H A Dcname.h4 char code; member in struct:cname
H A Dregerror.c34 int code; member in struct:rerr
55 -1, "", "*** unknown regexp error code ***",
79 for (r = rerrs; r->code >= 0; r++)
80 if (r->code == target)
84 if (r->code >= 0)
118 for (r = rerrs; r->code >= 0; r++)
121 if (r->code < 0)
124 sprintf(localbuf, "%d", r->code);
/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_printint.c15 * Redistributions of source code must retain the above copyright notice,
105 /* This table of operator lengths is not actually used by the working code,
264 print_prop(FILE *f, pcre_uchar *code, const char *before, const char *after) argument
266 if (code[1] != PT_CLIST)
268 fprintf(f, "%s%s %s%s", before, priv_OP_names[*code], get_ucpname(code[1],
269 code[2]), after);
273 const char *not = (*code == OP_PROP)? "" : "not ";
275 fprintf(f, "%s%sclist %d%s", before, not, code[2], after);
277 const pcre_uint32 *p = PRIV(ucd_caseless_sets) + code[
313 pcre_uchar *codestart, *code; local
[all...]
H A Dpcre_get.c15 * Redistributions of source code must retain the above copyright notice,
61 code the compiled regex
70 pcre_get_stringnumber(const pcre *code, const char *stringname) argument
73 pcre16_get_stringnumber(const pcre16 *code, PCRE_SPTR16 stringname)
76 pcre32_get_stringnumber(const pcre32 *code, PCRE_SPTR32 stringname)
85 if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0)
89 if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMEENTRYSIZE, &entrysize)) != 0)
91 if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMETABLE, &nametable)) != 0)
95 if ((rc = pcre16_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0)
99 if ((rc = pcre16_fullinfo(code, NUL
150 pcre_get_stringtable_entries(const pcre *code, const char *stringname, char **firstptr, char **lastptr) argument
262 get_first_set(const pcre *code, const char *stringname, int *ovector, int stringcount) argument
394 pcre_copy_named_substring(const pcre *code, const char *subject, int *ovector, int stringcount, const char *stringname, char *buffer, int size) argument
614 pcre_get_named_substring(const pcre *code, const char *subject, int *ovector, int stringcount, const char *stringname, const char **stringptr) argument
[all...]
H A Dpcre_compile.c15 * Redistributions of source code must retain the above copyright notice,
100 soon as they can be, so that hopefully there will never be an overrun. The code
109 /(?1){0,1999}(b)/, and one user did hit the limit. The code has been changed so
365 POSIX classes (e.g. graph, print, punct) a special property code is compiled
482 "internal error: code overflow\0"
546 "disallowed Unicode code point (>= 0xd800 && <= 0xdfff)\0"
568 may mark arbitrary characters as digits - but the PCRE compiling code expects
580 Then we can use ctype_digit and ctype_xdigit in the code. */
583 is much faster, and the resulting code is simpler (the compiler turns it
711 zero because property types are handled separately in the code
1672 first_significant_code(const pcre_uchar *code, BOOL skipassert) argument
1739 find_fixedlength(pcre_uchar *code, BOOL utf, BOOL atend, compile_data *cd, recurse_check *recurses) argument
2083 find_bracket(const pcre_uchar *code, BOOL utf, int number) argument
2246 find_recurse(const pcre_uchar *code, BOOL utf) argument
2399 could_be_empty_branch(const pcre_uchar *code, const pcre_uchar *endcode, BOOL utf, compile_data *cd, recurse_check *recurses) argument
2774 could_be_empty(const pcre_uchar *code, const pcre_uchar *endcode, branch_chain *bcptr, BOOL utf, compile_data *cd) argument
2918 get_chr_property_list(const pcre_uchar *code, BOOL utf, const pcre_uint8 *fcc, pcre_uint32 *list) argument
3123 compare_opcodes(const pcre_uchar *code, BOOL utf, const compile_data *cd, const pcre_uint32 *base_list, const pcre_uchar *base_end, int *rec_limit) argument
3662 auto_possessify(pcre_uchar *code, BOOL utf, const compile_data *cd) argument
4079 auto_callout(pcre_uchar *code, const pcre_uchar *ptr, compile_data *cd) argument
4476 register pcre_uchar *code = *codeptr; local
8270 pcre_uchar *code = *codeptr; local
8616 is_anchored(register const pcre_uchar *code, unsigned int bracket_map, compile_data *cd, int atomcount) argument
8706 is_startline(const pcre_uchar *code, unsigned int bracket_map, compile_data *cd, int atomcount) argument
8827 find_firstassertedchar(const pcre_uchar *code, pcre_int32 *flags, BOOL inassert) argument
9027 pcre_uchar *code; local
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/lib_tcl/widget/
H A Dutil-dump.tcl51 set code ok
53 1 { set code [catch {uplevel $arg $args} result] }
57 return -code error "unknown [lindex [info level 0] 0] type\
62 return -code error "ambiguous type \"$type\",\
66 return -code $code $result
85 set code ok
94 set code error
99 return -code $code [strin
[all...]
H A Dventry.tcl98 bind $data(entry) <FocusIn> [namespace code [list focus $w in]]
99 bind $data(entry) <FocusOut> [namespace code [list focus $w out]]
122 return -code error "Invalid validation type \"$val\""
170 set code [catch {validate $w {} [$data(basecmd) get] \
173 return [expr {$code?0:1}]
197 set code [catch {uplevel \#0 $cmd} result]
198 if {$code != 0 && $code != 2} {
202 set code 1
205 if $val { set code
[all...]
H A Dwidget.tcl109 return -code error "unknown [lindex [info level 0] 0] method\
114 return -code error "ambiguous method \"$cmd\",\
123 return -code error "no known class \"$CLASS\""
134 return -code error "unknown type for add, must be one of:\
169 return -code error "unknown key \"$key\" in class \"$CLASS\""
187 return -code error "ambiguous method \"$subcmd\",\
190 return -code error $err
272 return -code error \"megawidget construction error: \$err\"
286 return -code error \"megawidget initialization error: \$err\"
311 return -code erro
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Dcode.c24 * VERSION $Id: code.c,v 1.18 2013/04/29 01:02:10 jschimpf Exp $
30 * File code.c
33 * sequences of abstract machine code.
75 * CAUTION: only static code that is never redefined may use
76 * an array to hold the code. Otherwise the system would
77 * try to free the code space to the code heap on recompilation.
80 * All code fragments which do not belong to a particular procedure
115 * code arrays for static procedures with proper header.
116 * They are used instead of heap-allocated space only when the code
203 vmcode *code; local
241 vmcode *code; local
272 vmcode *code; local
293 vmcode *code; local
322 register vmcode *code; local
375 Exported_Kernel_Proc(in_dict("trace_body",2), ARGFIXEDWAM|DEBUG_ST|DEBUG_SP|DEBUG_TRMETA, code); local
376 Exported_Kernel_Proc(in_dict("debug_body",2), ARGFIXEDWAM|DEBUG_ST|DEBUG_TRMETA, code); local
790 Exported_Kernel_Proc(in_dict("block",4), ARGFIXEDWAM | DEBUG_DF | DEBUG_TRMETA, code); local
1332 vmcode *code, *aux; local
[all...]
H A Dprintam.c30 * SEPIA abstract code printing
33 * so when it is used to print the whole code without executing it,
61 static vmcode *_print_init_mask(vmcode *code, int name);
68 #define Atom {p_fprintf(current_output_,"%s ", DidName(*code)); code++;}
69 #define VarOffset p_fprintf(current_output_,"%d ", (int)(*code++)/(word)sizeof(pword))
70 #define Integer p_fprintf(current_output_,"%d ", (int)(*code++))
71 #define ArgDesc p_fprintf(current_output_,"<%x> ", (int)(*code++))
72 #define Float p_fprintf(current_output_,"%f ", * (float *) code++)
75 v.str = (char *) *code
266 print_am(register vmcode *code, vmcode **label, int *res, int option) argument
1588 _print_init_mask(vmcode *code, int name) argument
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/rand/
H A Drand_vms.c12 * 1. Redistributions of source code must retain the above copyright
74 short length, code; /* length is amount of bytes */ member in struct:items_data_st
92 short length, code; member in struct:__anon1277
108 pitem->code = pitems_data->code;
115 pitem->length = pitem->code = 0;
/barrelfish-2018-10-04/include/lwip2/lwip/prot/
H A Dicmp.h13 * 1. Redistributions of source code must retain the above copyright notice,
71 PACK_STRUCT_FLD_8(u8_t code);
81 /* Compatibility defines, old versions used to combine type and code to an u16_t */
83 #define ICMPH_CODE(hdr) ((hdr)->code)
85 #define ICMPH_CODE_SET(hdr, c) ((hdr)->code = (c))
H A Dmld6.h13 * 1. Redistributions of source code must retain the above copyright notice,
54 PACK_STRUCT_FLD_8(u8_t code);
/barrelfish-2018-10-04/usr/eclipseclp/ecrc_solvers/chr/
H A Deager.pl2 %%% The following code has been produced by the CHR compiler
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/sha/asm/
H A Dsha1-thumb.pl14 # The code does not present direct interest to OpenSSL, because of low
16 # useless one I must say, because 30% or 88 bytes larger ARMv4 code
19 # by over 40%, while code increases by only 10% or 32 bytes. But once
67 $code.=$inline?&common():"\tbl .Lcommon\n";
68 $code.=<<___;
74 $code.=$inline?&rotate():"\tbl .Lrotate\n";
78 $code.=$inline?&common():"\tbl .Lcommon\n";
79 $code.=<<___;
84 $code.=$inline?&rotate():"\tbl .Lrotate\n";
88 $code
[all...]
H A Dsha1-s390x.pl14 # Performance is >30% better than gcc 3.3 generated code. But the real
24 $kimdfunc=1; # magic function code for kimd instruction
50 $code.=<<___ if ($i==15);
55 $code.=<<___ if ($i<16);
59 $code.=<<___ if ($i>=16);
70 $code.=<<___ if ($i<=70);
81 $code.=<<___;
100 $code.=<<___;
118 $code.=<<___;
134 $code
[all...]
H A Dsha1-sparcv9.pl12 # turned to be 40% faster than 64-bit code generated by Sun C 5.8 and
13 # >2x than 64-bit code generated by gcc 3.4. And there is a gimmick.
16 # instruction sequence, thus minimizing the window when the code is
56 $code.=<<___;
71 $code.=
74 $code.=<<___;
84 $code.=<<___;
90 $code.=<<___;
117 $code.="\tsrlx @X[($i/2)%8],32,$xi\n";
119 $code
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/md5/asm/
H A Dmd5-x86_64.pl6 # Licence: I hereby disclaim the copyright on this code and place it
12 my $code;
22 $code .= " mov 0*4(%rsi), %r10d /* (NEXT STEP) X[0] */\n" if ($pos == -1);
23 $code .= " mov %edx, %r11d /* (NEXT STEP) z' = %edx */\n" if ($pos == -1);
24 $code .= <<EOF;
46 $code .= " mov 1*4(%rsi), %r10d /* (NEXT STEP) X[1] */\n" if ($pos == -1);
47 $code .= " mov %edx, %r11d /* (NEXT STEP) z' = %edx */\n" if ($pos == -1);
48 $code .= " mov %edx, %r12d /* (NEXT STEP) z' = %edx */\n" if ($pos == -1);
49 $code .= <<EOF;
72 $code
[all...]

Completed in 98 milliseconds

1234567891011>>