| /src/external/gpl3/gcc/dist/gcc/ |
| wide-int-print.h | 29 extern void print_dec (const wide_int_ref &wi, char *buf, signop sgn); 30 extern void print_dec (const wide_int_ref &wi, FILE *file, signop sgn); 31 extern void print_decs (const wide_int_ref &wi, char *buf); 32 extern void print_decs (const wide_int_ref &wi, FILE *file); 33 extern void print_decu (const wide_int_ref &wi, char *buf); 34 extern void print_decu (const wide_int_ref &wi, FILE *file); 35 extern void print_hex (const wide_int_ref &wi, char *buf); 36 extern void print_hex (const wide_int_ref &wi, FILE *file); 40 print_dec_buf_size (const wide_int_ref &wi, signop sgn, unsigned int *len) 42 unsigned int l = wi.get_len () [all...] |
| wide-int-print.cc | 34 print_dec (const wide_int_ref &wi, char *buf, signop sgn) 37 print_decs (wi, buf); 39 print_decu (wi, buf); 43 print_dec (const wide_int_ref &wi, FILE *file, signop sgn) 46 print_decs (wi, file); 48 print_decu (wi, file); 55 print_decs (const wide_int_ref &wi, char *buf) 57 if (wi.get_precision () <= HOST_BITS_PER_WIDE_INT || wi.get_len () == 1) 59 if (wi::neg_p (wi) [all...] |
| range.cc | 35 wide_int zero = wi::zero (TYPE_PRECISION (type)); 42 wide_int zero = wi::zero (TYPE_PRECISION (type)); 51 return value_range (type, wi::zero (prec), wi::max_value (prec, sign)); 63 r = value_range (type, wi::min_value (prec, sign), wi::minus_one (prec));
|
| range.h | 35 return int_range<1> (type, wi::one (prec), wi::one (prec)); 44 return int_range<1> (type, wi::zero (prec), wi::zero (prec)); 55 return int_range<1> (type, wi::zero (prec), wi::one (prec));
|
| gimple-walk.cc | 33 on each one. WI is as in walk_gimple_stmt. 36 value is stored in WI->CALLBACK_RESULT. Also, the statement that 38 removed by a callback (wi->removed_stmt). If the statement has 45 walk_tree_fn callback_op, struct walk_stmt_info *wi) 51 tree ret = walk_gimple_stmt (&gsi, callback_stmt, callback_op, wi); 54 /* If CALLBACK_STMT or CALLBACK_OP return a value, WI must exist 56 gcc_assert (wi); 57 wi->callback_result = ret; 60 if (!wi->removed_stmt) 65 wi->removed_stmt = false [all...] |
| gimple-range-tests.cc | 39 wi::shwi (20, TYPE_PRECISION (type)), 40 wi::shwi (30, TYPE_PRECISION (type))); 53 r.set (type, wi::shwi (5, prec), wi::shwi (10, prec)); 58 r.set (type, wi::shwi (15, prec), wi::shwi (20, prec));
|
| wide-int.cc | 143 wi::from_array (HOST_WIDE_INT *val, const HOST_WIDE_INT *xval, 156 wi::from_buffer (const unsigned char *buffer, unsigned int buffer_len) 206 wi::to_mpz (const wide_int_ref &x, mpz_t result, signop sgn) 212 if (wi::neg_p (x, sgn)) 232 else if (excess < 0 && wi::neg_p (x)) 253 wi::from_mpz (const_tree type, mpz_t x, bool wrap) 328 wi::max_value (unsigned int precision, signop sgn) 342 wi::min_value (unsigned int precision, signop sgn) 350 return wi::set_bit_in_zero (precision - 1, precision); 364 wi::force_to_size (HOST_WIDE_INT *val, const HOST_WIDE_INT *xval [all...] |
| wide-int.h | 80 wi::leu_p (a, b) as a more efficient short-hand for 159 wi::to_wide (t) // Treat T as a wide_int 160 wi::to_offset (t) // Treat T as an offset_int 161 wi::to_widest (t) // Treat T as a widest_int 167 wi::tree_to_wide_ref twide = wi::to_wide (t); 168 wi::tree_to_offset_ref toffset = wi::to_offset (t); 169 wi::tree_to_widest_ref twidest = wi::to_widest (t) [all...] |
| range-op.cc | 494 wi::shwi (0, TYPE_PRECISION (op.type ())), 495 wi::shwi (TYPE_PRECISION (type) - 1, TYPE_PRECISION (op.type ()))); 531 widest_int lh_range = wi::sub (widest_int::from (lh_ub, TYPE_SIGN (type)), 561 widest_int rh_range = wi::sub (widest_int::from (rh_ub, TYPE_SIGN (type)), 563 widest_int lh_range = wi::sub (widest_int::from (lh_ub, TYPE_SIGN (type)), 784 if (wi::cmp (tmin, tmax, sgn) < 0) 787 if (wi::cmp (tmax, tem, sgn) > 0) 793 if (covers || wi::cmp (tmin, tmax, sgn) > 0) 806 wi::overflow_type min_ovf = wi::OVF_NONE [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| wide-int-print.cc | 33 print_dec (const wide_int_ref &wi, char *buf, signop sgn) 36 print_decs (wi, buf); 38 print_decu (wi, buf); 42 print_dec (const wide_int_ref &wi, FILE *file, signop sgn) 45 print_decs (wi, file); 47 print_decu (wi, file); 55 print_decs (const wide_int_ref &wi, char *buf) 57 if ((wi.get_precision () <= HOST_BITS_PER_WIDE_INT) 58 || (wi.get_len () == 1)) 60 if (wi::neg_p (wi) [all...] |
| wide-int-print.h | 29 extern void print_dec (const wide_int_ref &wi, char *buf, signop sgn); 30 extern void print_dec (const wide_int_ref &wi, FILE *file, signop sgn); 31 extern void print_decs (const wide_int_ref &wi, char *buf); 32 extern void print_decs (const wide_int_ref &wi, FILE *file); 33 extern void print_decu (const wide_int_ref &wi, char *buf); 34 extern void print_decu (const wide_int_ref &wi, FILE *file); 35 extern void print_hex (const wide_int_ref &wi, char *buf); 36 extern void print_hex (const wide_int_ref &wi, FILE *file);
|
| gimple-walk.cc | 33 on each one. WI is as in walk_gimple_stmt. 36 value is stored in WI->CALLBACK_RESULT. Also, the statement that 38 removed by a callback (wi->removed_stmt). If the statement has 45 walk_tree_fn callback_op, struct walk_stmt_info *wi) 51 tree ret = walk_gimple_stmt (&gsi, callback_stmt, callback_op, wi); 54 /* If CALLBACK_STMT or CALLBACK_OP return a value, WI must exist 56 gcc_assert (wi); 57 wi->callback_result = ret; 59 return wi->removed_stmt ? NULL : gsi_stmt (gsi); 62 if (!wi->removed_stmt [all...] |
| range.cc | 50 return value_range (type, wi::zero (prec), wi::max_value (prec, sign)); 62 r = value_range (type, wi::min_value (prec, sign), wi::minus_one (prec));
|
| wide-int.cc | 144 wi::from_array (HOST_WIDE_INT *val, const HOST_WIDE_INT *xval, 157 wi::from_buffer (const unsigned char *buffer, unsigned int buffer_len) 207 wi::to_mpz (const wide_int_ref &x, mpz_t result, signop sgn) 213 if (wi::neg_p (x, sgn)) 233 else if (excess < 0 && wi::neg_p (x)) 255 wi::from_mpz (const_tree type, mpz_t x, bool wrap) 330 wi::max_value (unsigned int precision, signop sgn) 344 wi::min_value (unsigned int precision, signop sgn) 352 return wi::set_bit_in_zero (precision - 1, precision); 366 wi::force_to_size (HOST_WIDE_INT *val, const HOST_WIDE_INT *xval [all...] |
| range-op.cc | 55 return wi::max_value (TYPE_PRECISION (type) , TYPE_SIGN (type)); 63 return wi::min_value (TYPE_PRECISION (type) , TYPE_SIGN (type)); 111 return wi::le_p (wmin, 0, sign) && wi::ge_p (wmax, 0, sign); 120 return wmin == wmax && wi::eq_p (wmin, wi::zero (prec)); 148 widest_int rh_range = wi::sub (widest_int::from (rh_ub, TYPE_SIGN (type)), 150 widest_int lh_range = wi::sub (widest_int::from (lh_ub, TYPE_SIGN (type)), 318 if (wi::cmp (tmin, tmax, sgn) < 0) 321 if (wi::cmp (tmax, tem, sgn) > 0 [all...] |
| wide-int.h | 76 wi::leu_p (a, b) as a more efficient short-hand for 156 wi::to_wide (t) // Treat T as a wide_int 157 wi::to_offset (t) // Treat T as an offset_int 158 wi::to_widest (t) // Treat T as a widest_int 164 wi::tree_to_wide_ref twide = wi::to_wide (t); 165 wi::tree_to_offset_ref toffset = wi::to_offset (t); 166 wi::tree_to_widest_ref twidest = wi::to_widest (t) 348 namespace wi namespace 490 namespace wi namespace 641 namespace wi namespace 958 namespace wi namespace 1038 namespace wi namespace 1049 namespace wi namespace 1090 namespace wi namespace 1237 namespace wi namespace 1369 namespace wi namespace 1505 namespace wi namespace 1539 namespace wi namespace 1576 namespace wi namespace 1651 namespace wi namespace 1675 namespace wi namespace 1715 namespace wi namespace 3366 namespace wi namespace [all...] |
| /src/external/bsd/openldap/dist/servers/slapd/back-wt/ |
| ctx.c | 28 wt_ctx_init(struct wt_info *wi) 41 rc = wi->wi_conn->open_session(wi->wi_conn, NULL, NULL, &wc->session); 49 if (!wi->wi_cache) { 53 rc = wi->wi_cache->open_session(wi->wi_cache, NULL, NULL, &wc->idlcache_session); 87 wt_ctx_get(Operation *op, struct wt_info *wi){ 93 wi, &data, NULL ); 95 wc = wt_ctx_init(wi); 101 wi, wc, wt_ctx_free [all...] |
| init.c | 37 struct wt_info *wi; local 42 wi = ch_calloc( 1, sizeof(struct wt_info) ); 43 wi->wi_home = ch_strdup( SLAPD_DEFAULT_DB_DIR ); 44 wi->wi_config = ch_calloc( 1, WT_CONFIG_MAX + 1); 46 strcpy(wi->wi_config, "readonly"); 48 strcpy(wi->wi_config, "create"); 50 wi->wi_lastid = 0; 51 wi->wi_search_stack_depth = DEFAULT_SEARCH_STACK_DEPTH; 52 wi->wi_search_stack = NULL; 53 wi->wi_flags = WT_USE_IDLCACHE 64 struct wt_info *wi = (struct wt_info *) be->be_private; local 240 struct wt_info *wi = (struct wt_info *) be->be_private; local 268 struct wt_info *wi = (struct wt_info *) be->be_private; local [all...] |
| config.c | 105 struct wt_info *wi = (struct wt_info *) c->be->be_private; local 112 if ( wi->wi_home ) { 113 c->value_string = ch_strdup( wi->wi_home ); 119 wt_attr_index_unparse( wi, &c->rvalue_vals ); 123 if ( wi->wi_flags & WT_USE_IDLCACHE) { 136 ch_free( wi->wi_home ); 137 wi->wi_home = c->value_string; 140 if(strlen(wi->wi_config) + 1 + strlen(c->value_string) > WT_CONFIG_MAX){ 146 /* size of wi->wi_config is WT_CONFIG_MAX + 1, it's guaranteed with NUL-terminate. */ 147 strcat(wi->wi_config, ",") [all...] |
| attr.c | 32 wt_attr_slot( struct wt_info *wi, AttributeDescription *ad, int *ins ) 35 unsigned n = wi->wi_nattrs; 42 val = SLAP_PTRCMP( ad, wi->wi_attrs[cursor]->ai_desc ); 61 ainfo_insert( struct wt_info *wi, AttrInfo *a ) 64 int i = wt_attr_slot( wi, a->ai_desc, &x ); 70 wi->wi_attrs = ch_realloc( wi->wi_attrs, ( wi->wi_nattrs+1 ) * 72 if ( x < wi->wi_nattrs ) 73 AC_MEMCPY( &wi->wi_attrs[x+1], &wi->wi_attrs[x] [all...] |
| idl.h | 68 #define WT_IDL_ID( wi, ids, id ) WT_IDL_RANGE( ids, id, ((wi)->wi_lastid) ) 69 #define WT_IDL_ALL( wi, ids ) WT_IDL_RANGE( ids, 1, ((wi)->wi_lastid) )
|
| /src/external/bsd/tmux/dist/ |
| cmd-wait-for.c | 143 struct wait_item *wi, *wi1; local 155 TAILQ_FOREACH_SAFE(wi, &wc->waiters, entry, wi1) { 156 cmdq_continue(wi->item); 158 TAILQ_REMOVE(&wc->waiters, wi, entry); 159 free(wi); 171 struct wait_item *wi; local 188 wi = xcalloc(1, sizeof *wi); 189 wi->item = item; 190 TAILQ_INSERT_TAIL(&wc->waiters, wi, entry) 199 struct wait_item *wi; local 224 struct wait_item *wi; local 247 struct wait_item *wi, *wi1; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/pru/ |
| pru-passes.cc | 128 struct walk_stmt_info *wi = (struct walk_stmt_info *) data; 144 gcall *call = dyn_cast <gcall *> (gsi_stmt (wi->gsi)); 164 error_at (gimple_location (wi->stmt), "function pointers " 176 error_at (gimple_location (wi->stmt), 193 struct walk_stmt_info wi; 198 memset (&wi, 0, sizeof (wi)); 199 wi.info = NULL; 200 wi.want_locations = true; 203 walk_gimple_seq (body, NULL, check_op_callback, &wi); 127 struct walk_stmt_info *wi = (struct walk_stmt_info *) data; local 192 struct walk_stmt_info wi; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/pru/ |
| pru-passes.cc | 128 struct walk_stmt_info *wi = (struct walk_stmt_info *) data; 144 gcall *call = dyn_cast <gcall *> (gsi_stmt (wi->gsi)); 164 error_at (gimple_location (wi->stmt), "function pointers " 176 error_at (gimple_location (wi->stmt), 193 struct walk_stmt_info wi; 198 memset (&wi, 0, sizeof (wi)); 199 wi.info = NULL; 200 wi.want_locations = true; 203 walk_gimple_seq (body, NULL, check_op_callback, &wi); 127 struct walk_stmt_info *wi = (struct walk_stmt_info *) data; local 192 struct walk_stmt_info wi; local [all...] |
| /src/lib/libc/stdio/ |
| vfwscanf.c | 166 wint_t wi; /* handy wint_t */ local 209 if ((wi = __fgetwc_unlock(fp)) == WEOF) 211 if (wi != c) { 212 ungetwc(wi, fp); 372 while ((wi = __fgetwc_unlock(fp)) != WEOF && 373 iswspace_l(wi, loc)) 375 if (wi == WEOF) 377 ungetwc(wi, fp); 394 (wi = __fgetwc_unlock(fp)) != WEOF) { 396 *p++ = (wchar_t)wi; [all...] |