Home
last modified time | relevance | path

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

1234

/titanic_53/usr/src/common/ficl/
H A Ddictionary.c58 #define FICL_SAFE_SYSTEM_FROM_DICTIONARY(dictionary) \ argument
59 (((dictionary) != NULL) ? (dictionary)->system : NULL)
60 #define FICL_DICTIONARY_ASSERT(dictionary, expression) \ argument
61 FICL_SYSTEM_ASSERT(FICL_SAFE_SYSTEM_FROM_DICTIONARY(dictionary), \
75 ficlDictionaryAbortDefinition(ficlDictionary *dictionary) in ficlDictionaryAbortDefinition() argument
78 ficlDictionaryLock(dictionary, FICL_TRUE); in ficlDictionaryAbortDefinition()
79 word = dictionary->smudge; in ficlDictionaryAbortDefinition()
82 dictionary->here = (ficlCell *)word->name; in ficlDictionaryAbortDefinition()
84 ficlDictionaryLock(dictionary, FICL_FALSE); in ficlDictionaryAbortDefinition()
92 ficlDictionaryAlign(ficlDictionary *dictionary) in ficlDictionaryAlign() argument
[all …]
H A Dsearch.c58 ficlDictionary *dictionary = ficlVmGetDictionary(vm); in ficlPrimitiveDefinitions() local
60 FICL_VM_ASSERT(vm, dictionary); in ficlPrimitiveDefinitions()
61 if (dictionary->wordlistCount < 1) { in ficlPrimitiveDefinitions()
65 dictionary->compilationWordlist = in ficlPrimitiveDefinitions()
66 dictionary->wordlists[dictionary->wordlistCount-1]; in ficlPrimitiveDefinitions()
92 ficlDictionary *dictionary = ficlVmGetDictionary(vm); in ficlPrimitiveGetCurrent() local
93 ficlDictionaryLock(dictionary, FICL_TRUE); in ficlPrimitiveGetCurrent()
94 ficlStackPushPointer(vm->dataStack, dictionary->compilationWordlist); in ficlPrimitiveGetCurrent()
95 ficlDictionaryLock(dictionary, FICL_FALSE); in ficlPrimitiveGetCurrent()
109 ficlDictionary *dictionary = ficlVmGetDictionary(vm); in ficlPrimitiveGetOrder() local
[all …]
H A Dprimitives.c70 markBranch(ficlDictionary *dictionary, ficlVm *vm, char *tag) in markBranch() argument
72 ficlStackPushPointer(vm->dataStack, dictionary->here); in markBranch()
107 resolveBackBranch(ficlDictionary *dictionary, ficlVm *vm, char *tag) in resolveBackBranch() argument
116 c.i = patchAddr - dictionary->here; in resolveBackBranch()
118 ficlDictionaryAppendCell(dictionary, c); in resolveBackBranch()
127 resolveForwardBranch(ficlDictionary *dictionary, ficlVm *vm, char *tag) in resolveForwardBranch() argument
137 offset = dictionary->here - patchAddr; in resolveForwardBranch()
147 resolveAbsBranch(ficlDictionary *dictionary, ficlVm *vm, char *wantTag) in resolveAbsBranch() argument
167 (*patchAddr).p = dictionary->here; in resolveAbsBranch()
180 ficlDictionary *dictionary = ficlVmGetDictionary(vm); in ficlPrimitiveColon() local
[all …]
H A Dfloat.c58 ficlDictionary *dictionary = ficlVmGetDictionary(vm); in ficlPrimitiveFConstant() local
63 ficlDictionaryAppendWord(dictionary, name, in ficlPrimitiveFConstant()
65 ficlDictionaryAppendCell(dictionary, ficlStackPop(vm->floatStack)); in ficlPrimitiveFConstant()
70 ficlDictionaryAppendFConstant(ficlDictionary *dictionary, char *name, in ficlDictionaryAppendFConstant() argument
75 return (ficlDictionaryAppendConstantInstruction(dictionary, s, in ficlDictionaryAppendFConstant()
81 ficlDictionarySetFConstant(ficlDictionary *dictionary, char *name, in ficlDictionarySetFConstant() argument
86 return (ficlDictionarySetConstantInstruction(dictionary, s, in ficlDictionarySetFConstant()
96 ficlDictionary *dictionary = ficlVmGetDictionary(vm); in ficlPrimitiveF2Constant() local
101 ficlDictionaryAppendWord(dictionary, name, in ficlPrimitiveF2Constant()
103 ficlDictionaryAppendCell(dictionary, ficlStackPop(vm->floatStack)); in ficlPrimitiveF2Constant()
[all …]
H A Dtools.c139 ficlDictionary *dictionary = ficlVmGetDictionary(vm); in ficlPrimitiveHashSummary() local
152 FICL_VM_DICTIONARY_CHECK(vm, dictionary, 0); in ficlPrimitiveHashSummary()
154 pFHash = dictionary->wordlists[dictionary->wordlistCount - 1]; in ficlPrimitiveHashSummary()
529 ficlDictionary *dictionary; member
644 if (ficlDictionaryIncludes(context->dictionary, cell->p)) { in ficlReturnStackDisplayCallback()
646 word = ficlDictionaryFindEnclosingWord(context->dictionary, in ficlReturnStackDisplayCallback()
665 context.dictionary = ficlVmGetDictionary(vm); in ficlVmDisplayReturnStack()
676 ficlDictionary *dictionary = ficlVmGetDictionary(vm); in ficlPrimitiveForgetWid() local
680 ficlHashForget(hash, dictionary->here); in ficlPrimitiveForgetWid()
699 ficlDictionary *dictionary = ficlVmGetDictionary(vm); in ficlPrimitiveForget() local
[all …]
H A Dficl.h1139 ficlVmDictionaryAllot(ficlVm *vm, ficlDictionary *dictionary, int n);
1141 ficlVmDictionaryAllotCells(ficlVm *vm, ficlDictionary *dictionary, int cells);
1168 ficlVmDictionaryCheck(ficlVm *vm, ficlDictionary *dictionary, int n);
1170 ficlVmDictionarySimpleCheck(ficlVm *vm, ficlDictionary *dictionary, int n);
1171 #define FICL_VM_DICTIONARY_CHECK(vm, dictionary, n) \ argument
1172 ficlVmDictionaryCheck(vm, dictionary, n)
1173 #define FICL_VM_DICTIONARY_SIMPLE_CHECK(vm, dictionary, n) \ argument
1174 ficlVmDictionarySimpleCheck(vm, dictionary, n)
1176 #define FICL_VM_DICTIONARY_CHECK(vm, dictionary, n) argument
1177 #define FICL_VM_DICTIONARY_SIMPLE_CHECK(vm, dictionary, n) argument
[all …]
H A Dsystem.c147 system->dictionary = ficlDictionaryCreateHashed(system, in ficlSystemCreate()
149 system->dictionary->forthWordlist->name = "forth-wordlist"; in ficlSystemCreate()
256 if (system->dictionary) in ficlSystemDestroy()
257 ficlDictionaryDestroy(system->dictionary); in ficlSystemDestroy()
258 system->dictionary = NULL; in ficlSystemDestroy()
313 ficlDictionary *dictionary = system->dictionary; in ficlSystemAddPrimitiveParseStep() local
317 word = ficlDictionaryAppendPrimitive(dictionary, name, in ficlSystemAddPrimitiveParseStep()
321 ficlDictionaryAppendCell(dictionary, c); in ficlSystemAddPrimitiveParseStep()
384 return (ficlDictionaryLookup(system->dictionary, s)); in ficlSystemLookup()
394 return (system->dictionary); in ficlSystemGetDictionary()
[all …]
H A Dfileaccess.c350 ficlDictionary *dictionary = ficlSystemGetDictionary(system); in ficlSystemCompileFile()
353 FICL_SYSTEM_ASSERT(system, dictionary); in ficlSystemCompileFile()
356 ficlDictionarySetPrimitive(dictionary, "create-file", in ficlSystemCompileFile()
358 ficlDictionarySetPrimitive(dictionary, "open-file", in ficlSystemCompileFile()
360 ficlDictionarySetPrimitive(dictionary, "close-file", in ficlSystemCompileFile()
362 ficlDictionarySetPrimitive(dictionary, "include-file", in ficlSystemCompileFile()
364 ficlDictionarySetPrimitive(dictionary, "read-file", in ficlSystemCompileFile()
366 ficlDictionarySetPrimitive(dictionary, "read-line", in ficlSystemCompileFile()
368 ficlDictionarySetPrimitive(dictionary, "write-file", in ficlSystemCompileFile()
370 ficlDictionarySetPrimitive(dictionary, "write-line", in ficlSystemCompileFile()
[all …]
H A Dprefix.c143 ficlDictionary *dictionary = system->dictionary; in ficlSystemCompilePrefix() local
151 hash = ficlDictionaryCreateWordlist(dictionary, 1); in ficlSystemCompilePrefix()
153 ficlDictionaryAppendConstantPointer(dictionary, list_name, hash); in ficlSystemCompilePrefix()
158 ficlDictionarySetPrimitive(dictionary, "__tempbase", in ficlSystemCompilePrefix()
H A Dvm.c1314 ficlDictionary *dictionary = ficlVmGetDictionary(vm); in ficlVmInnerLoop() local
1315 dictionary->smudge->code = in ficlVmInnerLoop()
1317 dictionary->smudge->param[0].p = ip; in ficlVmInnerLoop()
1398 ficlDictionary *dictionary; in ficlVmInnerLoop() local
1401 dictionary = ficlVmGetDictionary(vm); in ficlVmInnerLoop()
1402 ficlDictionaryAppendCell(dictionary, *dataTop--); in ficlVmInnerLoop()
1407 ficlDictionary *dictionary; in ficlVmInnerLoop() local
1411 dictionary = ficlVmGetDictionary(vm); in ficlVmInnerLoop()
1413 ficlDictionaryAppendCharacter(dictionary, c); in ficlVmInnerLoop()
2068 return (vm->callback.system->dictionary); in ficlVmGetDictionary()
[all …]
H A Dextras.c174 ficlDictionary *dictionary = ficlSystemGetDictionary(system); in ficlSystemCompileExtras() local
176 ficlDictionarySetPrimitive(dictionary, "break", ficlPrimitiveBreak, in ficlSystemCompileExtras()
178 ficlDictionarySetPrimitive(dictionary, "load", ficlPrimitiveLoad, in ficlSystemCompileExtras()
180 ficlDictionarySetPrimitive(dictionary, "spewhash", in ficlSystemCompileExtras()
182 ficlDictionarySetPrimitive(dictionary, "system", ficlPrimitiveSystem, in ficlSystemCompileExtras()
/titanic_53/usr/src/cmd/svc/startd/
H A Ddict.c55 dictionary_t *dictionary; variable
79 (void) pthread_mutex_lock(&dictionary->dict_lock); in dict_lookup_byname()
80 if ((entry = uu_list_find(dictionary->dict_list, &tmp, NULL, in dict_lookup_byname()
86 (void) pthread_mutex_unlock(&dictionary->dict_lock); in dict_lookup_byname()
108 (void) pthread_mutex_lock(&dictionary->dict_lock); in dict_insert()
110 if ((entry = uu_list_find(dictionary->dict_list, &tmp, NULL, in dict_insert()
112 (void) pthread_mutex_unlock(&dictionary->dict_lock); in dict_insert()
118 entry->de_id = dictionary->dict_new_id++; in dict_insert()
124 uu_list_insert(dictionary->dict_list, entry, idx); in dict_insert()
125 (void) pthread_mutex_unlock(&dictionary->dict_lock); in dict_insert()
[all …]
/titanic_53/usr/src/lib/libnisdb/
H A Ddb_dictionary.cc613 dictionary = NULL; in db_dictionary()
792 dictionary = NULL; in inittemp()
794 if ((status = f.transfer(&dictionary)) < 0) { in inittemp()
797 dictionary = new db_dict_desc; in inittemp()
798 if (dictionary == NULL) { in inittemp()
805 dictionary->tables.tables_len = in inittemp()
806 curdict.dictionary->tables.tables_len; in inittemp()
808 (unsigned int) dictionary->tables.tables_len, in inittemp()
816 dictionary->tables.tables_val = newtab; in inittemp()
817 dictionary->count = 0; in inittemp()
[all …]
/titanic_53/usr/src/cmd/fm/modules/common/sw-diag-response/software-diagnosis/
H A Dsoftware-diagnosis.conf35 dictionary SMF
36 dictionary SUNOS
/titanic_53/usr/src/contrib/ast/src/lib/libast/misc/
H A Derrormsg.c33 errormsg(const char* dictionary, int level, ...) in errormsg() argument
38 errorv(dictionary, level, ap); in errormsg()
/titanic_53/usr/src/lib/fm/libdiagcode/common/tests/
H A DNOMAXKEY.dict28 # NOMAXKEY diagcode dictionary -- used by "make test" target only
30 # this sample dictionary tests the error path where the dictionary
H A DBADVERS.dict28 # BADVERS diagcode dictionary -- used by "make test" target only
30 # this sample dictionary tests the error path where the dictionary
H A DNOVERS.dict28 # NOVERS diagcode dictionary -- used by "make test" target only
30 # this sample dictionary tests the error path where the dictionary
H A DBADNAME.dict28 # BADNAME diagcode dictionary -- used by "make test" target only
30 # this sample dictionary tests the error path where the dictname used
32 # in the dictionary header below.
H A DBADMAXKEY.dict28 # BADMAXKEY diagcode dictionary -- used by "make test" target only
30 # this sample dictionary tests the error path where the dictionary
H A DNONAME.dict28 # NONAME diagcode dictionary -- used by "make test" target only
30 # this sample dictionary tests the error path where the dictname used
H A DMALFORMED.dict28 # MALFORMED diagcode dictionary -- used by "make test" target only
30 # this sample dictionary tests how well we handle malformed entries.
/titanic_53/usr/src/boot/lib/libz/doc/
H A Drfc1950.txt154 support for a preset dictionary was introduced, and the
272 bit 5 FDICT (preset dictionary)
287 FDICT (Preset dictionary)
288 If FDICT is set, a DICT dictionary identifier is present
289 immediately after the FLG byte. The dictionary is a sequence of
294 which dictionary has been used by the compressor.
320 (excluding any dictionary data) computed according to Adler-32
350 preset dictionary feature, the compressor must not set the FDICT
361 identifier of a known preset dictionary. A decompressor may
366 dictionary feature, a compliant decompressor must reject any
[all …]
/titanic_53/usr/src/cmd/fm/modules/sun4v/cpumem-diagnosis/
H A Dcpumem-diagnosis.conf32 dictionary SUN4V
/titanic_53/usr/src/cmd/fm/modules/sun4v/generic-mem/
H A Dgeneric-mem.conf45 dictionary SUN4V

1234