Home
last modified time | relevance | path

Searched refs:element (Results 1 – 25 of 737) sorted by relevance

12345678910>>...30

/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/Meta/
H A DConverter.pm139 my ($element, undef, undef, $version) = @_;
175 my ($element) = @_;
176 return 'unknown' unless defined $element;
177 if ( $license_map_1{lc $element} ) {
178 return $license_map_1{lc $element};
231 my ($element) = @_;
232 return [ 'unknown' ] unless defined $element;
233 $element = [ $element ] unless ref $element eq 'ARRAY';
235 for my $lic ( @$element ) {
275 my ($element) = @_;
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dbitmap.c109 bitmap_element *element; local
115 element = bitmap_free;
116 bitmap_free = element->next;
149 element = (bitmap_element *) obstack_alloc (&bitmap_obstack,
157 element = bitmap_ggc_free;
158 bitmap_ggc_free = element->next;
161 element = ggc_alloc (sizeof (bitmap_element));
164 memset (element->bits, 0, sizeof (element->bits));
166 return element;
185 bitmap_element_zerop (element) in bitmap_element_zerop() argument
[all …]
/openbsd-src/lib/libc/stdlib/
H A Dlsearch.c45 void *element = lfind(key, base, nelp, width, compar); in lsearch() local
51 if (element == NULL) { in lsearch()
52 element = memmove((char *)base + *nelp * width, key, width); in lsearch()
55 return element; in lsearch()
62 const char *element, *end; in lfind() local
65 for (element = base; element < end; element += width) in lfind()
66 if (!compar(key, element)) /* key found */ in lfind()
67 return((void *)element); in lfind()
/openbsd-src/gnu/usr.bin/gcc/gcc/f/
H A Dbit.c77 ffebitCount element; in ffebit_count() local
84 element = offset / CHAR_BIT; in ffebit_count()
87 == ((b->bits[element] & ((unsigned char) 1 << bitno)) == 0 ? FALSE : TRUE)) in ffebit_count()
146 ffebitCount element; in ffebit_set() local
153 element = offset / CHAR_BIT; in ffebit_set()
155 b->bits[element] = (((unsigned char) (value ? 1 : 0)) << bitno) in ffebit_set()
156 | (b->bits[element] & ~((unsigned char) 1 << bitno)); in ffebit_set()
177 ffebitCount element; in ffebit_test() local
187 element = offset / CHAR_BIT; in ffebit_test()
189 *value = (b->bits[element] & ((unsigned char) 1 << bitno)) == 0 ? FALSE : TRUE; in ffebit_test()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/tui/
H A Dtui-data.c481 init_content_element (struct tui_win_element * element, enum tui_win_type type) in init_content_element() argument
483 element->highlight = FALSE; in init_content_element()
488 element->which_element.source.line = (char *) NULL; in init_content_element()
489 element->which_element.source.line_or_addr.line_no = 0; in init_content_element()
490 element->which_element.source.is_exec_point = FALSE; in init_content_element()
491 element->which_element.source.has_break = FALSE; in init_content_element()
494 tui_init_generic_part (&element->which_element.data_window); in init_content_element()
495 element->which_element.data_window.type = DATA_ITEM_WIN; in init_content_element()
496 ((struct tui_gen_win_info *) & element->which_element.data_window)->content = in init_content_element()
499 & element->which_element.data_window)->content_size = 1; in init_content_element()
[all …]
H A Dtui-stack.c251 struct tui_win_element * element; in tui_show_locator_content() local
253 element = (struct tui_win_element *) locator->content[0]; in tui_show_locator_content()
255 string = tui_make_status_line (&element->which_element.locator); in tui_show_locator_content()
274 struct tui_locator_element * element; in tui_set_locator_filename() local
282 element = &((struct tui_win_element *) locator->content[0])->which_element.locator; in tui_set_locator_filename()
283 element->file_name[0] = 0; in tui_set_locator_filename()
284 strcat_to_buf (element->file_name, MAX_LOCATOR_ELEMENT_LEN, filename); in tui_set_locator_filename()
293 struct tui_locator_element * element; in tui_set_locator_info() local
302 element = &((struct tui_win_element *) locator->content[0])->which_element.locator; in tui_set_locator_info()
303 element->proc_name[0] = (char) 0; in tui_set_locator_info()
[all …]
H A Dtui-source.c115 struct tui_win_element * element = (struct tui_win_element *) in tui_set_source_content() local
140 element->which_element.source.line_or_addr.line_no = in tui_set_source_content()
142 element->which_element.source.is_exec_point = in tui_set_source_content()
248 struct tui_win_element * element = in tui_set_source_content_nil() local
250 element->which_element.source.line_or_addr.line_no = 0; in tui_set_source_content_nil()
251 element->which_element.source.is_exec_point = FALSE; in tui_set_source_content_nil()
252 element->which_element.source.has_break = FALSE; in tui_set_source_content_nil()
255 element->which_element.source.line[0] = (char) 0; in tui_set_source_content_nil()
270 src_line = element->which_element.source.line; in tui_set_source_content_nil()
H A Dtui-winsource.c209 struct tui_win_element * element = in tui_clear_source_content() local
211 element->which_element.source.has_break = FALSE; in tui_clear_source_content()
212 element->which_element.source.is_exec_point = FALSE; in tui_clear_source_content()
469 struct tui_win_element * element; in tui_set_exec_info_content() local
473 element = (struct tui_win_element *) exec_info_ptr->content[i]; in tui_set_exec_info_content()
476 memset(element->which_element.simple_string, ' ', in tui_set_exec_info_content()
477 sizeof(element->which_element.simple_string)); in tui_set_exec_info_content()
478 element->which_element.simple_string[TUI_EXECINFO_SIZE - 1] = 0; in tui_set_exec_info_content()
484 element->which_element.simple_string[TUI_BP_HIT_POS] = in tui_set_exec_info_content()
487 element->which_element.simple_string[TUI_BP_HIT_POS] = in tui_set_exec_info_content()
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dbitmap.c103 bitmap_element *element; in bitmap_element_allocate() local
108 element = bit_obstack->elements; in bitmap_element_allocate()
110 if (element) in bitmap_element_allocate()
113 if (element->next) in bitmap_element_allocate()
115 bit_obstack->elements = element->next; in bitmap_element_allocate()
116 bit_obstack->elements->prev = element->prev; in bitmap_element_allocate()
120 bit_obstack->elements = element->prev; in bitmap_element_allocate()
122 element = XOBNEW (&bit_obstack->obstack, bitmap_element); in bitmap_element_allocate()
126 element = bitmap_ggc_free; in bitmap_element_allocate()
127 if (element) in bitmap_element_allocate()
[all …]
H A Dtree-ssa-dom.c465 initialize_hash_element (tree expr, tree lhs, struct expr_hash_elt *element) in initialize_hash_element() argument
474 element->stmt = NULL; in initialize_hash_element()
475 element->rhs = expr; in initialize_hash_element()
479 element->stmt = expr; in initialize_hash_element()
480 element->rhs = COND_EXPR_COND (expr); in initialize_hash_element()
484 element->stmt = expr; in initialize_hash_element()
485 element->rhs = SWITCH_COND (expr); in initialize_hash_element()
489 element->stmt = expr; in initialize_hash_element()
490 element->rhs = TREE_OPERAND (TREE_OPERAND (expr, 0), 1); in initialize_hash_element()
494 element->stmt = expr; in initialize_hash_element()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/opt/
H A Dpr15054.C17 struct element struct
21 element() : canary(123) { } in element() function
22 ~element() { pointer(); if (canary != 123) abort (); } in ~element() argument
26 insert(const element& x) in insert()
28 return pointer(new element(x)); in insert()
34 insert(element()); in main()
/openbsd-src/gnu/usr.bin/perl/dist/Dumpvalue/t/
H A Drt-134441-dumpvalue.t43 'dumpValue worked on array ref, first element undefined' );
47 'dumpValues worked on array, first element undefined' );
49 "dumpValues called on array returns same as dumpValue on array ref, first element undefined");
55 'dumpValue worked on array ref, last element undefined' );
59 'dumpValues worked on array, last element undefined' );
61 "dumpValues called on array returns same as dumpValue on array ref, last element undefined");
67 'dumpValue worked on array ref, first element empty string' );
71 'dumpValues worked on array, first element empty string' );
73 … "dumpValues called on array returns same as dumpValue on array ref, first element empty string");
79 'dumpValue worked on array ref, last element empty string' );
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/osf-share/
H A Dcma_list.h58 #define cma__list_insert(element,list) (void)( \ argument
59 (element)->link = (list)->link, \
60 (list)->link = (element))
66 #define cma__list_next(element) ((element)->link) argument
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/tests/
H A Dasan_mem_test.cpp24 int element = Ident(42); in MemSetOOBTestTemplate() local
28 MEMSET(array, element, size); in MemSetOOBTestTemplate()
29 MEMSET(array, element, size - 1); in MemSetOOBTestTemplate()
30 MEMSET(array + length - 1, element, sizeof(T)); in MemSetOOBTestTemplate()
31 MEMSET(array, element, 1); in MemSetOOBTestTemplate()
34 MEMSET(array - 10, element, zero); in MemSetOOBTestTemplate()
35 MEMSET(array - 1, element, zero); in MemSetOOBTestTemplate()
36 MEMSET(array, element, zero); in MemSetOOBTestTemplate()
43 EXPECT_DEATH(MEMSET((char*)(array + length) - 1, element, 6), in MemSetOOBTestTemplate()
45 EXPECT_DEATH(MEMSET(array + 1, element, size + sizeof(T)), in MemSetOOBTestTemplate()
[all …]
/openbsd-src/gnu/llvm/clang/tools/scan-build/share/scan-build/
H A Dsorttable.js374 function dean_addEvent(element, type, handler) { argument
375 if (element.addEventListener) {
376 element.addEventListener(type, handler, false);
381 if (!element.events) element.events = {};
383 var handlers = element.events[type];
385 handlers = element.events[type] = {};
387 if (element["on" + type]) {
388 handlers[0] = element["on" + type];
394 element["on" + type] = handleEvent;
400 function removeEvent(element, type, handler) { argument
[all …]
/openbsd-src/gnu/llvm/clang/tools/scan-build-py/lib/libscanbuild/resources/
H A Dsorttable.js415 function dean_addEvent(element, type, handler) { argument
416 if (element.addEventListener) {
417 element.addEventListener(type, handler, false);
423 if (!element.events)
424 element.events = {};
426 var handlers = element.events[type];
428 handlers = element.events[type] = {};
430 if (element["on" + type]) {
431 handlers[0] = element["on" + type];
437 element["on" + type] = handleEvent;
[all …]
/openbsd-src/gnu/llvm/clang/tools/scan-build-py/libscanbuild/resources/
H A Dsorttable.js374 function dean_addEvent(element, type, handler) { argument
375 if (element.addEventListener) {
376 element.addEventListener(type, handler, false);
381 if (!element.events) element.events = {};
383 var handlers = element.events[type];
385 handlers = element.events[type] = {};
387 if (element["on" + type]) {
388 handlers[0] = element["on" + type];
394 element["on" + type] = handleEvent;
400 function removeEvent(element, type, handler) { argument
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dsparc64-tdep.c638 char *valbuf, int element, int bitpos) in sparc64_store_floating_fields() argument
640 gdb_assert (element < 16); in sparc64_store_floating_fields()
650 gdb_assert ((element % 2) == 0); in sparc64_store_floating_fields()
652 regnum = SPARC64_Q0_REGNUM + element / 2; in sparc64_store_floating_fields()
659 regnum = SPARC64_D0_REGNUM + element + bitpos / 64; in sparc64_store_floating_fields()
667 regnum = SPARC_F0_REGNUM + element * 2 + bitpos / 32; in sparc64_store_floating_fields()
681 element, subpos); in sparc64_store_floating_fields()
764 int element = 0; in sparc64_store_arguments() local
871 element++; in sparc64_store_arguments()
889 if (element % 2 && sparc64_16_byte_align_p (type)) in sparc64_store_arguments()
[all …]
/openbsd-src/gnu/usr.bin/perl/t/re/
H A Dreg_mesg.t49 # either a scalar, turning it into a single element array; or a ref to an
50 # array, adjusting each element. If called in array context, returns an
69 foreach my $element (@expect) {
70 $element =~ s/\{\#\}/in regex; marked by <-- HERE in/;
71 $element =~ s/\{\#\}/ <-- HERE /;
72 $element .= " at ";
73 next if $element =~ s/ ^ $only_strict_marker \s* //x && ! $strict;
74 push @new_expect, $element;
80 my ($element)= @_;
81 $element
[all...]
/openbsd-src/gnu/usr.bin/perl/vms/
H A Dgenopt.com7 $ element=0
9 $ x=f$element(element,p2,p3)
17 $ name = f$element(0,"/",y)
31 $ element=element+1
/openbsd-src/gnu/llvm/clang/docs/
H A DMatrixTypes.rst23 A matrix type is a scalar type with an underlying *element type*, a constant
25 element type, rows, and columns are the same type. A value of a matrix type
26 includes storage for ``rows * columns`` values of the *element type*. The
33 Currently, the element type of a matrix is only permitted to be one of the
47 of the *typedef* must be a valid matrix element type. The
52 element type of the former underlying type.
56 same element type, number of rows, and number of columns.
68 element type of the result type. The result is a matrix where each element is
69 the converted corresponding element.
72 if it can be converted to the element type of the matrix. The result is a
[all …]
/openbsd-src/gnu/lib/libiberty/src/
H A Dhashtab.c539 htab_find_with_hash (htab_t htab, const PTR element, hashval_t hash) in htab_find_with_hash() argument
551 || (entry != HTAB_DELETED_ENTRY && (*htab->eq_f) (entry, element))) in htab_find_with_hash()
564 || (entry != HTAB_DELETED_ENTRY && (*htab->eq_f) (entry, element))) in htab_find_with_hash()
573 htab_find (htab_t htab, const PTR element) in htab_find() argument
575 return htab_find_with_hash (htab, element, (*htab->hash_f) (element)); in htab_find()
587 htab_find_slot_with_hash (htab_t htab, const PTR element, in htab_find_slot_with_hash() argument
613 else if ((*htab->eq_f) (entry, element)) in htab_find_slot_with_hash()
632 else if ((*htab->eq_f) (entry, element)) in htab_find_slot_with_hash()
655 htab_find_slot (htab_t htab, const PTR element, enum insert_option insert) in htab_find_slot() argument
657 return htab_find_slot_with_hash (htab, element, (*htab->hash_f) (element), in htab_find_slot()
[all …]
/openbsd-src/gnu/llvm/libcxx/utils/
H A Dgenerate_escaped_output_table.py42 def filterCoreProperty(element: PropertyRange) -> Optional[PropertyRange]:
43 if element.prop == "Grapheme_Extend":
44 return element
49 def filterGeneralProperty(element: PropertyRange) -> Optional[PropertyRange]:
50 if element.prop in ["Zs", "Zl", "Zp", "Cc", "Cf", "Cs", "Co", "Cn"]:
51 return element
/openbsd-src/regress/usr.bin/seq/
H A Dseqtest.expected46 Test 3.0: check for missing element due to rounding
51 Test 3.1: check for missing element due to rounding
57 Test 3.2: check for extra element due to rounding
61 Test 3.3: check for extra element due to rounding check
/openbsd-src/usr.sbin/makefs/cd9660/
H A Dcd9660_debug.c260 debug_dump_to_xml_padded_hex_output(const char *element, unsigned char *buf, in debug_dump_to_xml_padded_hex_output() argument
266 printf("<%s>",element); in debug_dump_to_xml_padded_hex_output()
272 printf("</%s>\n",element); in debug_dump_to_xml_padded_hex_output()
274 printf("<%s:hex>",element); in debug_dump_to_xml_padded_hex_output()
279 printf("</%s:hex>\n",element); in debug_dump_to_xml_padded_hex_output()
322 debug_dump_integer(const char *element, char* buf, int mode) in debug_dump_integer() argument
324 printf("<%s>%i</%s>\n", element, in debug_dump_integer()
325 debug_get_encoded_number((unsigned char *)buf, mode), element); in debug_dump_integer()
329 debug_dump_string(const char *element __unused, unsigned char *buf __unused, int len __unused) in debug_dump_string()

12345678910>>...30