Home
last modified time | relevance | path

Searched refs:dictionary (Results 1 – 25 of 99) sorted by relevance

1234

/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Ddictionary.c113 void (*free) (struct dictionary *dict);
115 void (*add_symbol) (struct dictionary *dict, struct symbol *sym);
117 struct symbol *(*iterator_first) (const struct dictionary *dict,
121 struct symbol *(*iter_name_first) (const struct dictionary *dict,
127 int (*size) (const struct dictionary *dict);
168 struct dictionary struct
228 static void add_symbol_nonexpandable (struct dictionary *dict,
231 static void free_obstack (struct dictionary *dict);
236 static struct symbol *iterator_first_hashed (const struct dictionary *dict,
241 static struct symbol *iter_name_first_hashed (const struct dictionary *dict,
[all …]
H A Ddictionary.h31 struct dictionary;
47 extern struct dictionary *dict_create_hashed (struct obstack *obstack,
56 extern struct dictionary *dict_create_hashed_expandable (void);
63 extern struct dictionary *dict_create_linear (struct obstack *obstack,
72 extern struct dictionary *dict_create_linear_expandable (void);
82 extern void dict_free (struct dictionary *dict);
86 extern void dict_add_symbol (struct dictionary *dict, struct symbol *sym);
90 extern int dict_empty (struct dictionary *dict);
100 const struct dictionary *dict;
110 extern struct symbol *dict_iterator_first (const struct dictionary *dict,
[all …]
H A Dblock.h32 struct dictionary;
83 struct dictionary *dict;
/openbsd-src/gnu/llvm/lldb/examples/scripting/
H A Ddictionary.c82 void populate_dictionary(tree_node **dictionary, char *filename) { in populate_dictionary() argument
91 if (*dictionary == NULL) { in populate_dictionary()
96 *dictionary = new_node; in populate_dictionary()
98 insert(*dictionary, new_word); in populate_dictionary()
106 int find_word(tree_node *dictionary, char *word) { in find_word() argument
107 if (!word || !dictionary) in find_word()
110 int compare_value = strcmp(word, dictionary->word); in find_word()
115 return find_word(dictionary->left, word); in find_word()
117 return find_word(dictionary->right, word); in find_word()
122 void print_tree(tree_node *dictionary) { in print_tree() argument
[all …]
/openbsd-src/games/boggle/
H A DMakefile11 rm -f ${DESTDIR}/usr/share/games/boggle/dictionary
13 ${DESTDIR}/usr/share/games/boggle/dictionary
15 ${MKINDEX} < ${DESTDIR}/usr/share/games/boggle/dictionary > \
17 chown ${BINOWN}:${BINGRP} ${DESTDIR}/usr/share/games/boggle/dictionary
18 chmod 444 ${DESTDIR}/usr/share/games/boggle/dictionary
H A DREADME26 mkdict.c - convert a word list to a bog dictionary
27 mkindex.c - create an index file for the bog dictionary
28 showdict.c - print a bog dictionary to stdout
45 This will make all the binaries and create the dictionary and index files
/openbsd-src/gnu/llvm/lldb/docs/use/
H A Dpython.rst20 We have a simple C program (dictionary.c) that reads in a text file,
39 $ ./dictionary Romeo-and-Juliet.txt
116 `SBFrame.FindVariable` on the lldb.frame object to give us our dictionary
121 root = lldb.frame.FindVariable ("dictionary")
124 current frame to find the variable named "dictionary" and return it. We then
182 is in our tree or not. To actually use it in LLDB on our dictionary program,
188 (lldb) process attach -n "dictionary"
198 * thread #1: tid = 0x2c03, 0x0000000100001830 dictionary`find_word + 16
199 at dictionary.c:105, stop reason = breakpoint 1.1
200 frame #0: 0x0000000100001830 dictionary`find_word + 16 at dictionary.c:105
[all …]
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbplatformutil.py92 def finalize_build_dictionary(dictionary): argument
94 if dictionary is None:
95 dictionary = {}
96 dictionary["OS"] = "Android"
97 dictionary["PIE"] = 1
98 return dictionary
H A Dlldbtest.py946 def setTearDownCleanup(self, dictionary=None): argument
948 self.dict = dictionary
951 def addTearDownCleanup(self, dictionary): argument
953 self.dicts.append(dictionary)
1020 self.cleanup(dictionary=self.dict)
1026 self.cleanup(dictionary=dict)
1426 dictionary=None, argument
1435 dictionary = lldbplatformutil.finalize_build_dictionary(dictionary)
1442 compiler, dictionary, testdir, testname, make_targets)
1517 self.build(dictionary=d)
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Ddef-fns1.C3 class dictionary {
5 dictionary (int);
20 dictionary exceptions;
H A Dgroff1.C16 class dictionary
26 dictionary exceptions; in main()
/openbsd-src/gnu/llvm/clang/tools/clang-fuzzer/dictionary/
H A DCMakeLists.txt1 add_clang_executable(clang-fuzzer-dictionary
2 dictionary.c
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/clang/tools/clang-fuzzer/dictionary/
H A DBUILD.gn1 executable("clang-fuzzer-dictionary") {
3 sources = [ "dictionary.c" ]
/openbsd-src/usr.bin/file/magdir/
H A Dclaris25 # .msp a dictionary file I am not sure about this I have only one .msp file
26 0 string \002\271\262\000\040\002\000\164 Claris works dictionary
28 # .usp are user dictionary bits
/openbsd-src/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/
H A DZlib.xs284 SV * dictionary ;
405 "need dictionary", /* Z_NEED_DICT 2 */
632 printf(" dictionary %p\n", s->dictionary);
1072 _deflateInit(flags,level, method, windowBits, memLevel, strategy, bufsize, dictionary)
1080 SV* dictionary
1086 warn("in _deflateInit(level=%d, method=%d, windowBits=%d, memLevel=%d, strategy=%d, bufsize=%ld dictionary=%p)\n",
1087 level, method, windowBits, memLevel, strategy, bufsize, dictionary) ;
1104 /* Check if a dictionary has been specified */
1105 SvGETMAGIC(dictionary);
268 SV * dictionary ; global() member
1045 _deflateInit(flags,level,method,windowBits,memLevel,strategy,bufsize,dictionary) _deflateInit() argument
[all...]
/openbsd-src/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/t/
H A D19nonpv.t42 title 'non-PV dictionary';
50 my $dictionary = *hello ;
53 -Dictionary => $dictionary}) ;
62 ok my $k = new Compress::Raw::Zlib::Inflate(-Dictionary => $dictionary) ;
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/builders/
H A Dbuilder.py145 dictionary=None, testdir=None, testname=None, make_targets=None): argument
156 self.getLibCxxArgs(), self.getCmdLine(dictionary)]
161 def cleanup(self, dictionary=None): argument
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerPlatform.cpp500 auto dictionary = std::make_shared<StructuredData::Dictionary>(); in Handle_jSignalsInfo() local
502 dictionary->AddIntegerItem("signo", signo); in Handle_jSignalsInfo()
503 dictionary->AddStringItem("name", signals->GetSignalAsCString(signo)); in Handle_jSignalsInfo()
507 dictionary->AddBooleanItem("suppress", suppress); in Handle_jSignalsInfo()
508 dictionary->AddBooleanItem("stop", stop); in Handle_jSignalsInfo()
509 dictionary->AddBooleanItem("notify", notify); in Handle_jSignalsInfo()
511 signal_array.Push(dictionary); in Handle_jSignalsInfo()
/openbsd-src/gnu/llvm/clang/tools/clang-format/
H A Dgit-clang-format365 def filter_by_extension(dictionary, allowed_extensions): argument
371 for filename in list(dictionary.keys()):
376 del dictionary[filename]
379 def filter_symlinks(dictionary): argument
381 for filename in list(dictionary.keys()):
383 del dictionary[filename]
/openbsd-src/gnu/llvm/clang/docs/
H A DObjectiveCLiterals.rst153 ``AVAudioRecorder`` using a dictionary that contains a boxed enumeration
267 array and dictionary container objects.
282 Immutable dictionary expression:
286 NSDictionary *dictionary = @{
293 sub-expressions of a dictionary literal must be Objective-C object
305 Using array and dictionary literals is safer than the variadic creation
337 NSMutableDictionary *dictionary = ...;
339 oldObject = dictionary[key];
340 dictionary[key] = newObject; // replace oldObject with newObject
349 subscript expressions use integer typed subscripts; *dictionary-style*
[all …]
/openbsd-src/regress/lib/libz/
H A Dexample.c34 static const char dictionary[] = "hello"; variable
420 (const Bytef*)dictionary, (int)sizeof(dictionary)); in test_dict_deflate()
470 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary, in test_dict_inflate()
471 (int)sizeof(dictionary)); in test_dict_inflate()
/openbsd-src/usr.bin/fgen/
H A Dfgen.l71 static struct fcode *dictionary = NULL; variable
962 ASSERT(dictionary == NULL);
964 dictionary = code;
968 if(!fadd(dictionary, code)) {
1260 if (!fadd(dictionary, fcode)) {
1345 if ((fcode = flookup(dictionary, token->text)) == NULL)
1379 fadd(dictionary, fcode);
1412 fadd(dictionary, fcode);
1451 fadd(dictionary, fcode);
1532 fadd(dictionary, fcode);
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp126 StructuredData::DictionarySP dictionary = in GetDynamicRegisterInfo() local
128 if (!dictionary) in GetDynamicRegisterInfo()
132 *dictionary, m_process->GetTarget().GetArchitecture()); in GetDynamicRegisterInfo()
/openbsd-src/sys/lib/libz/
H A Dzlib.h486 If a preset dictionary is needed after this call (see inflateSetDictionary
487 below), inflate sets strm->adler to the Adler-32 checksum of the dictionary
506 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
615 const Bytef *dictionary,
618 Initializes the compression dictionary from the given byte sequence
626 compressor and decompressor must use exactly the same dictionary (see
629 The dictionary should consist of strings (byte sequences) that are likely
631 used strings preferably put towards the end of the dictionary. Using a
632 dictionary is most useful when the data to be compressed is short and can be
634 with the default empty dictionary
[all...]
/openbsd-src/lib/libz/
H A Dzlib.h486 If a preset dictionary is needed after this call (see inflateSetDictionary
487 below), inflate sets strm->adler to the Adler-32 checksum of the dictionary
506 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
615 const Bytef *dictionary,
618 Initializes the compression dictionary from the given byte sequence
626 compressor and decompressor must use exactly the same dictionary (see
629 The dictionary should consist of strings (byte sequences) that are likely
631 used strings preferably put towards the end of the dictionary. Using a
632 dictionary is most useful when the data to be compressed is short and can be
634 with the default empty dictionary
[all...]

1234