Home
last modified time | relevance | path

Searched refs:init (Results 1 – 25 of 776) sorted by relevance

12345678910>>...32

/dflybsd-src/contrib/gcc-8.0/gcc/cp/
H A Dinit.c153 tree init = NULL_TREE; in build_zero_init_1() local
184 init = fold (convert (type, nullptr_node)); in build_zero_init_1()
186 init = build_int_cst (type, 0); in build_zero_init_1()
188 init = fold (convert (type, integer_zero_node)); in build_zero_init_1()
239 init = build_constructor (type, v); in build_zero_init_1()
284 init = build_constructor (type, v); in build_zero_init_1()
287 init = build_zero_cst (type); in build_zero_init_1()
291 init = build_zero_cst (type); in build_zero_init_1()
295 if (init) in build_zero_init_1()
296 TREE_CONSTANT (init) = 1; in build_zero_init_1()
[all …]
H A Dtypeck2.c37 process_init_constructor (tree type, tree init, int nested,
597 split_nonconstant_init_1 (tree dest, tree init) in split_nonconstant_init_1() argument
612 if ((TREE_SIDE_EFFECTS (init) in split_nonconstant_init_1()
618 tree code = build_vec_init (dest, NULL_TREE, init, false, 1, in split_nonconstant_init_1()
628 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), idx, in split_nonconstant_init_1()
653 CONSTRUCTOR_ELTS (init)->ordered_remove (idx--); in split_nonconstant_init_1()
668 CONSTRUCTOR_ELTS (init)->ordered_remove (idx); in split_nonconstant_init_1()
710 if (!initializer_constant_valid_p (init, type)) in split_nonconstant_init_1()
713 tree cons = copy_node (init); in split_nonconstant_init_1()
714 CONSTRUCTOR_ELTS (init) = NULL; in split_nonconstant_init_1()
[all …]
H A Dlambda.c395 build_capture_proxy (tree member, tree init) in build_capture_proxy() argument
451 init = CONSTRUCTOR_ELT (init, 0)->value; in build_capture_proxy()
452 init = TREE_OPERAND (init, 0); // Strip ADDR_EXPR. in build_capture_proxy()
453 init = TREE_OPERAND (init, 0); // Strip ARRAY_REF. in build_capture_proxy()
457 if (PACK_EXPANSION_P (init)) in build_capture_proxy()
458 init = PACK_EXPANSION_PATTERN (init); in build_capture_proxy()
461 if (INDIRECT_REF_P (init)) in build_capture_proxy()
462 init = TREE_OPERAND (init, 0); in build_capture_proxy()
463 STRIP_NOPS (init); in build_capture_proxy()
465 gcc_assert (VAR_P (init) || TREE_CODE (init) == PARM_DECL); in build_capture_proxy()
[all …]
H A Drtti.c904 tree init; in tinfo_base_init() local
974 init = build_constructor (init_list_type_node, v); in tinfo_base_init()
975 TREE_CONSTANT (init) = 1; in tinfo_base_init()
976 TREE_STATIC (init) = 1; in tinfo_base_init()
978 return init; in tinfo_base_init()
988 tree init = tinfo_base_init (ti, target); in generic_initializer() local
990 init = build_constructor_single (init_list_type_node, NULL_TREE, init); in generic_initializer()
991 TREE_CONSTANT (init) = 1; in generic_initializer()
992 TREE_STATIC (init) = 1; in generic_initializer()
993 return init; in generic_initializer()
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/cp/
H A Dinit.c151 tree init = NULL_TREE; in build_zero_init_1() local
182 init = convert (type, nullptr_node); in build_zero_init_1()
184 init = convert (type, integer_zero_node); in build_zero_init_1()
232 init = build_constructor (type, v); in build_zero_init_1()
277 init = build_constructor (type, v); in build_zero_init_1()
280 init = build_zero_cst (type); in build_zero_init_1()
285 if (init) in build_zero_init_1()
286 TREE_CONSTANT (init) = 1; in build_zero_init_1()
288 return init; in build_zero_init_1()
505 perform_target_ctor (tree init) in perform_target_ctor() argument
[all …]
H A Dtypeck2.c42 process_init_constructor (tree type, tree init, tsubst_flags_t complain);
510 split_nonconstant_init_1 (tree dest, tree init) in split_nonconstant_init_1() argument
530 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (init), idx, in split_nonconstant_init_1()
568 VEC_ordered_remove (constructor_elt, CONSTRUCTOR_ELTS (init), in split_nonconstant_init_1()
597 if (!initializer_constant_valid_p (init, type)) in split_nonconstant_init_1()
600 tree cons = copy_node (init); in split_nonconstant_init_1()
601 CONSTRUCTOR_ELTS (init) = NULL; in split_nonconstant_init_1()
605 num_split_elts += CONSTRUCTOR_NELTS (init); in split_nonconstant_init_1()
614 TREE_CONSTANT (init) = 1; in split_nonconstant_init_1()
615 return complete_p && complete_ctor_at_level_p (TREE_TYPE (init), in split_nonconstant_init_1()
[all …]
H A Dtree.c395 build_aggr_init_expr (tree type, tree init, in build_aggr_init_expr() argument
403 if (TREE_CODE (init) == CALL_EXPR) in build_aggr_init_expr()
404 fn = CALL_EXPR_FN (init); in build_aggr_init_expr()
405 else if (TREE_CODE (init) == AGGR_INIT_EXPR) in build_aggr_init_expr()
406 fn = AGGR_INIT_EXPR_FN (init); in build_aggr_init_expr()
408 return convert (type, init); in build_aggr_init_expr()
429 if (TREE_CODE(init) == CALL_EXPR) in build_aggr_init_expr()
431 call_expr_nargs (init), in build_aggr_init_expr()
432 CALL_EXPR_ARGP (init)); in build_aggr_init_expr()
435 aggr_init_expr_nargs (init), in build_aggr_init_expr()
[all …]
H A Drtti.c867 tree init; in tinfo_base_init() local
936 init = build_constructor (init_list_type_node, v); in tinfo_base_init()
937 TREE_CONSTANT (init) = 1; in tinfo_base_init()
938 TREE_STATIC (init) = 1; in tinfo_base_init()
940 return init; in tinfo_base_init()
950 tree init = tinfo_base_init (ti, target); in generic_initializer() local
952 init = build_constructor_single (init_list_type_node, NULL_TREE, init); in generic_initializer()
953 TREE_CONSTANT (init) = 1; in generic_initializer()
954 TREE_STATIC (init) = 1; in generic_initializer()
955 return init; in generic_initializer()
[all …]
H A Ddecl.c3768 tree init = NULL_TREE; in cp_fname_init() local
3775 init = build_string (length + 1, name); in cp_fname_init()
3783 if (init) in cp_fname_init()
3784 TREE_TYPE (init) = type; in cp_fname_init()
3786 init = error_mark_node; in cp_fname_init()
3788 return init; in cp_fname_init()
3804 tree init = cp_fname_init (name, &type); in cp_make_fname_decl() local
3828 cp_finish_decl (decl, init, /*init_const_expr_p=*/false, NULL_TREE, in cp_make_fname_decl()
3834 pushdecl_top_level_and_finish (decl, init); in cp_make_fname_decl()
4642 grok_reference_init (tree decl, tree type, tree init, int flags) in grok_reference_init() argument
[all …]
/dflybsd-src/contrib/zstd/programs/
H A Dtimefn.c31 static int init = 0; in UTIL_getSpanTimeMicro() local
32 if (!init) { in UTIL_getSpanTimeMicro()
37 init = 1; in UTIL_getSpanTimeMicro()
45 static int init = 0; in UTIL_getSpanTimeNano() local
46 if (!init) { in UTIL_getSpanTimeNano()
51 init = 1; in UTIL_getSpanTimeNano()
65 static int init = 0; in UTIL_getSpanTimeMicro() local
66 if (!init) { in UTIL_getSpanTimeMicro()
68 init = 1; in UTIL_getSpanTimeMicro()
76 static int init = 0; in UTIL_getSpanTimeNano() local
[all …]
/dflybsd-src/contrib/tcpdump/
H A Dprint-sctp.c638 const struct sctpInitiation *init; in sctp_print() local
640 if (chunkLengthRemaining < sizeof(*init)) { in sctp_print()
644 init=(const struct sctpInitiation*)bp; in sctp_print()
645 ND_PRINT("[init tag: %u] ", GET_BE_U_4(init->initTag)); in sctp_print()
646 ND_PRINT("[rwnd: %u] ", GET_BE_U_4(init->rcvWindowCredit)); in sctp_print()
647 ND_PRINT("[OS: %u] ", GET_BE_U_2(init->NumPreopenStreams)); in sctp_print()
648 ND_PRINT("[MIS: %u] ", GET_BE_U_2(init->MaxInboundStreams)); in sctp_print()
649 ND_PRINT("[init TSN: %u] ", GET_BE_U_4(init->initialTSN)); in sctp_print()
650 bp += sizeof(*init); in sctp_print()
651 sctpPacketLengthRemaining -= sizeof(*init); in sctp_print()
[all …]
/dflybsd-src/sbin/adjkerntz/
H A Dadjkerntz.c86 init = Unknown; in main() local
92 if (init != Unknown) in main()
94 init = True; in main()
97 if (init != Unknown) in main()
99 init = False; in main()
107 if (init == Unknown) in main()
113 if (init) in main()
124 if (init && daemon(0, 1)) { in main()
139 if (init && !sleep_mode) { in main()
140 init = False; in main()
[all …]
/dflybsd-src/contrib/xz/src/liblzma/common/
H A Dfilter_decoder.c27 lzma_init_function init; member
49 .init = &lzma_lzma_decoder_init,
57 .init = &lzma_lzma2_decoder_init,
65 .init = &lzma_simple_x86_decoder_init,
73 .init = &lzma_simple_powerpc_decoder_init,
81 .init = &lzma_simple_ia64_decoder_init,
89 .init = &lzma_simple_arm_decoder_init,
97 .init = &lzma_simple_armthumb_decoder_init,
105 .init = &lzma_simple_sparc_decoder_init,
113 .init = &lzma_delta_decoder_init,
H A Dfilter_encoder.c27 lzma_init_function init; member
60 .init = &lzma_lzma_encoder_init,
71 .init = &lzma_lzma2_encoder_init,
82 .init = &lzma_simple_x86_encoder_init,
92 .init = &lzma_simple_powerpc_encoder_init,
102 .init = &lzma_simple_ia64_encoder_init,
112 .init = &lzma_simple_arm_encoder_init,
122 .init = &lzma_simple_armthumb_encoder_init,
132 .init = &lzma_simple_sparc_encoder_init,
142 .init = &lzma_delta_encoder_init,
/dflybsd-src/crypto/libressl/crypto/evp/
H A Dbio_md.c107 bi->init = 0; in md_new()
120 a->init = 0; in md_free()
139 if (b->init) { in md_read()
163 if (b->init) { in md_write()
192 if (b->init) in md_ctrl()
200 if (b->init) { in md_ctrl()
209 b->init = 1; in md_ctrl()
212 if (b->init) in md_ctrl()
227 b->init = 1; in md_ctrl()
234 b->init = 1; in md_ctrl()
H A De_aes.c549 .init = aesni_init_key,
561 .init = aes_init_key,
583 .init = aesni_init_key,
595 .init = aes_init_key,
617 .init = aesni_init_key,
629 .init = aes_init_key,
651 .init = aesni_init_key,
663 .init = aes_init_key,
685 .init = aesni_init_key,
697 .init = aes_init_key,
[all …]
H A Dm_sha1.c76 init(EVP_MD_CTX *ctx) in init() function
98 .init = init,
148 .init = init224,
168 .init = init256,
214 .init = init384,
234 .init = init512,
H A De_camellia.c167 .init = camellia_init_key,
189 .init = camellia_init_key,
211 .init = camellia_init_key,
233 .init = camellia_init_key,
325 .init = camellia_init_key,
347 .init = camellia_init_key,
369 .init = camellia_init_key,
391 .init = camellia_init_key,
483 .init = camellia_init_key,
505 .init = camellia_init_key,
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Doptc-gen.awk103 init = extra_vars[i]
105 sub(".*= *", "", init)
107 init = "0"
114 print " " init ", /* " name " */"
121 init = opt_args("Init", flags[i])
122 if (init != "") {
123 if (name in var_init && var_init[name] != init)
125 var_init[name] = init
137 init = var_init[name]
139 init = "0"
[all …]
/dflybsd-src/lib/i18n_module/HZ/
H A Dcitrus_hz.c181 escape_t *candidate, *init; in _citrus_HZ_mbrtowc_priv() local
242 init = INIT0(ei); in _citrus_HZ_mbrtowc_priv()
243 if (psenc->inuse == init) { in _citrus_HZ_mbrtowc_priv()
244 init = INIT1(ei); in _citrus_HZ_mbrtowc_priv()
245 } else if (INIT(psenc->inuse) == init) { in _citrus_HZ_mbrtowc_priv()
246 if (ESC(init) != ch) in _citrus_HZ_mbrtowc_priv()
248 candidate = init; in _citrus_HZ_mbrtowc_priv()
254 if (init == NULL || in _citrus_HZ_mbrtowc_priv()
255 ESC(init) != ch) in _citrus_HZ_mbrtowc_priv()
257 candidate = init; in _citrus_HZ_mbrtowc_priv()
[all …]
/dflybsd-src/sys/dev/drm/radeon/
H A Dradeon_asic.c199 .init = &r100_init,
241 .init = &r100_hpd_init,
267 .init = &r100_init,
309 .init = &r100_hpd_init,
363 .init = &r300_init,
405 .init = &r100_hpd_init,
431 .init = &r300_init,
473 .init = &r100_hpd_init,
499 .init = &r420_init,
541 .init = &r100_hpd_init,
[all …]
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/libsupc++/
H A Deh_globals.cc110 static __eh_globals_init init; variable
116 if (init._M_init) in __cxa_get_globals_fast()
117 g = static_cast<__cxa_eh_globals*>(__gthread_getspecific(init._M_key)); in __cxa_get_globals_fast()
127 if (init._M_init) in __cxa_get_globals()
129 g = static_cast<__cxa_eh_globals*>(__gthread_getspecific(init._M_key)); in __cxa_get_globals()
133 if (v == 0 || __gthread_setspecific(init._M_key, v) != 0) in __cxa_get_globals()
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/libsupc++/
H A Deh_globals.cc109 static __eh_globals_init init; variable
115 if (init._M_init) in __cxa_get_globals_fast()
116 g = static_cast<__cxa_eh_globals*>(__gthread_getspecific(init._M_key)); in __cxa_get_globals_fast()
126 if (init._M_init) in __cxa_get_globals()
128 g = static_cast<__cxa_eh_globals*>(__gthread_getspecific(init._M_key)); in __cxa_get_globals()
132 if (v == 0 || __gthread_setspecific(init._M_key, v) != 0) in __cxa_get_globals()
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Doptc-gen.awk180 init = extra_vars[i]
182 sub(".*= *", "", init)
184 init = "0"
191 print " " init ", /* " name " */"
198 init = opt_args("Init", flags[i])
199 if (init != "") {
200 if (name in var_init && var_init[name] != init)
202 var_init[name] = init
214 init = var_init[name]
216 init = "0"
[all …]
/dflybsd-src/bin/sh/
H A Dmksyntax.c112 static void init(const char *);
174 init("basesyntax"); in main()
187 init("dqsyntax"); in main()
200 init("sqsyntax"); in main()
210 init("arisyntax"); in main()
223 init("is_type"); in main()
240 init(const char *name) in init() function

12345678910>>...32