Home
last modified time | relevance | path

Searched refs:a_cache (Results 1 – 25 of 72) sorted by relevance

123

/dports/lang/onyx/onyx-5.1.2/lib/libonyx/include/libonyx/
H A Dnxo_regex_l.h69 nxo_l_regex_cache_new(cw_nxo_regex_cache_t *a_cache);
72 nxo_l_regex_cache_ref_iter(cw_nxo_regex_cache_t *a_cache, bool a_reset);
75 nxo_l_regex_cache_delete(cw_nxo_regex_cache_t *a_cache);
87 nxo_l_regex_cache_new(cw_nxo_regex_cache_t *a_cache) in nxo_l_regex_cache_new() argument
89 nxo_no_new(&a_cache->input); in nxo_l_regex_cache_new()
90 a_cache->mcnt = -1; in nxo_l_regex_cache_new()
94 nxo_l_regex_cache_ref_iter(cw_nxo_regex_cache_t *a_cache, bool a_reset) in nxo_l_regex_cache_ref_iter() argument
114 retval = nxo_nxoe_get(&a_cache->input); in nxo_l_regex_cache_ref_iter()
130 nxo_l_regex_cache_delete(cw_nxo_regex_cache_t *a_cache) in nxo_l_regex_cache_delete() argument
132 if (a_cache->ovp != NULL) in nxo_l_regex_cache_delete()
[all …]
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/Shiny/
H A DShinyManager.h97 SHINY_API ShinyNode* _ShinyManager_lookupNode(ShinyManager *self, ShinyNodeCache* a_cache, ShinyZon…
105 SHINY_API ShinyNode* _ShinyManager_createNode(ShinyManager *self, ShinyNodeCache* a_cache, ShinyZon…
154 SHINY_INLINE void ShinyManager_lookupAndBeginNode(ShinyManager *self, ShinyNodeCache* a_cache, Shin… in ShinyManager_lookupAndBeginNode() argument
159 if (self->_curNode != (*a_cache)->parent) in ShinyManager_lookupAndBeginNode()
160 *a_cache = _ShinyManager_lookupNode(self, a_cache, a_zone); in ShinyManager_lookupAndBeginNode()
162 ShinyManager_beginNode(self, *a_cache); in ShinyManager_lookupAndBeginNode()
H A DShinyManager.c183 ShinyNode* _ShinyManager_lookupNode(ShinyManager *self, ShinyNodeCache *a_cache, ShinyZone *a_zone)… in _ShinyManager_lookupNode() argument
229 return _ShinyManager_createNode(self, a_cache, a_zone); in _ShinyManager_lookupNode()
247 return _ShinyManager_createNode(self, a_cache, a_zone); in _ShinyManager_lookupNode()
254 ShinyNode_init(pNewNode, self->_curNode, a_zone, a_cache); in _ShinyManager_lookupNode()
281 ShinyNode* _ShinyManager_createNode(ShinyManager *self, ShinyNodeCache* a_cache, ShinyZone* a_pZone… in _ShinyManager_createNode() argument
283 ShinyNode_init(pNewNode, self->_curNode, a_pZone, a_cache); in _ShinyManager_createNode()
H A DShinyNode.h76 …de_init(ShinyNode* self, ShinyNode* a_parent, struct _ShinyZone* a_zone, ShinyNodeCache* a_cache) { in ShinyNode_init() argument
85 self->_cache = a_cache; in ShinyNode_init()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/misc/lkdtm/
H A Dheap.c11 static struct kmem_cache *a_cache; variable
176 val = kmem_cache_alloc(a_cache, GFP_KERNEL); in lkdtm_SLAB_FREE_CROSS()
212 a_cache = kmem_cache_create("lkdtm-heap-a", 64, 0, 0, ctor_a); in lkdtm_heap_init()
219 kmem_cache_destroy(a_cache); in lkdtm_heap_exit()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/misc/lkdtm/
H A Dheap.c11 static struct kmem_cache *a_cache; variable
176 val = kmem_cache_alloc(a_cache, GFP_KERNEL); in lkdtm_SLAB_FREE_CROSS()
212 a_cache = kmem_cache_create("lkdtm-heap-a", 64, 0, 0, ctor_a); in lkdtm_heap_init()
219 kmem_cache_destroy(a_cache); in lkdtm_heap_exit()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/misc/lkdtm/
H A Dheap.c11 static struct kmem_cache *a_cache; variable
176 val = kmem_cache_alloc(a_cache, GFP_KERNEL); in lkdtm_SLAB_FREE_CROSS()
212 a_cache = kmem_cache_create("lkdtm-heap-a", 64, 0, 0, ctor_a); in lkdtm_heap_init()
219 kmem_cache_destroy(a_cache); in lkdtm_heap_exit()
/dports/www/ilias/ILIAS-5.4.25/Services/Form/classes/
H A Dclass.ilImageFileInputGUI.php58 * @param boolean $a_cache If false, the image will be forced to reload in the browser
61 public function setUseCache($a_cache) argument
63 $this->cache = ($a_cache) ? true : false;
/dports/www/ilias6/ILIAS-6.14/Services/Form/classes/
H A Dclass.ilImageFileInputGUI.php58 * @param boolean $a_cache If false, the image will be forced to reload in the browser
61 public function setUseCache($a_cache) argument
63 $this->cache = ($a_cache) ? true : false;
/dports/textproc/turboxsl/turboxsl-b03c2c9/src/zlog/src/
H A Dspec.c50 zlog_time_cache_t * a_cache = a_thread->event->time_caches + a_spec->time_cache_index; in zlog_spec_write_time() local
67 if (a_cache->sec != now_sec) { in zlog_spec_write_time()
68 a_cache->len = strftime(a_cache->str, sizeof(a_cache->str), a_spec->time_fmt, time_local); in zlog_spec_write_time()
69 a_cache->sec = now_sec; in zlog_spec_write_time()
72 return zlog_buf_append(a_buf, a_cache->str, a_cache->len); in zlog_spec_write_time()
/dports/databases/beansdb/beansdb-0.7.1.4/third-party/zlog-1.2/
H A Dspec.c50 zlog_time_cache_t * a_cache = a_thread->event->time_caches + a_spec->time_cache_index; in zlog_spec_write_time() local
67 if (a_cache->sec != now_sec) { in zlog_spec_write_time()
68 a_cache->len = strftime(a_cache->str, sizeof(a_cache->str), a_spec->time_fmt, time_local); in zlog_spec_write_time()
69 a_cache->sec = now_sec; in zlog_spec_write_time()
72 return zlog_buf_append(a_buf, a_cache->str, a_cache->len); in zlog_spec_write_time()
/dports/math/py-cypari2/cypari2-2.1.2/venv/lib/python3.7/site-packages/Cython/Build/Tests/
H A DTestCyCache.py65 a_cache = os.path.join(self.cache_dir, os.listdir(self.cache_dir)[0])
66 gzip.GzipFile(a_cache, 'wb').write('fake stuff'.encode('ascii'))
/dports/lang/cython/Cython-0.29.24/build/lib.dragonfly-6.3-DEVELOPMENT-x86_64-3.8/Cython/Build/Tests/
H A DTestCyCache.py65 a_cache = os.path.join(self.cache_dir, os.listdir(self.cache_dir)[0])
66 gzip.GzipFile(a_cache, 'wb').write('fake stuff'.encode('ascii'))
/dports/lang/cython/Cython-0.29.24/Cython/Build/Tests/
H A DTestCyCache.py65 a_cache = os.path.join(self.cache_dir, os.listdir(self.cache_dir)[0])
66 gzip.GzipFile(a_cache, 'wb').write('fake stuff'.encode('ascii'))
/dports/lang/cython-devel/cython-2b1e743/Cython/Build/Tests/
H A DTestCyCache.py72 a_cache = os.path.join(self.cache_dir, os.listdir(self.cache_dir)[0])
73 gzip.GzipFile(a_cache, 'wb').write('fake stuff'.encode('ascii'))
/dports/lang/cython/stage/usr/local/lib/python3.8/site-packages/Cython/Build/Tests/
H A DTestCyCache.py65 a_cache = os.path.join(self.cache_dir, os.listdir(self.cache_dir)[0])
66 gzip.GzipFile(a_cache, 'wb').write('fake stuff'.encode('ascii'))
/dports/print/ghostscript9-x11/ghostscript-9.06/base/
H A Dgsicc_create.h25 gx_cie_vector_cache *a_cache,
/dports/print/ghostscript9-base/ghostscript-9.06/base/
H A Dgsicc_create.h25 gx_cie_vector_cache *a_cache,
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/base/
H A Dgsicc_create.h25 gx_cie_vector_cache *a_cache,
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/base/
H A Dgsicc_create.h25 gx_cie_vector_cache *a_cache,
/dports/databases/mysql55-client/mysql-5.5.62/sql/
H A Ditem_cmpfunc.h48 Item *a_cache, *b_cache; // Cached values of a and b items variable
64 Arg_comparator(): comparators(0), thd(0), a_cache(0), b_cache(0), set_null(TRUE), in Arg_comparator()
67 a_cache(0), b_cache(0), set_null(TRUE), in Arg_comparator()
H A Ditem_cmpfunc.cc923 a_cache= 0; in set_cmp_func()
938 a_cache= cache; in set_cmp_func()
939 a= (Item **)&a_cache; in set_cmp_func()
960 a_cache= 0; in set_cmp_func()
982 a= cache_converted_constant(thd, a, &a_cache, type); in set_cmp_func()
1071 a_cache= 0; in set_datetime_cmp_func()
1273 a_value= (*get_value_a_func)(thd, &a, &a_cache, *b, &a_is_null); in compare_datetime()
/dports/databases/percona56-client/percona-server-5.6.51-91.0/sql/
H A Ditem_cmpfunc.h51 Item *a_cache, *b_cache; // Cached values of a and b items variable
67 Arg_comparator(): comparators(0), thd(0), a_cache(0), b_cache(0), set_null(TRUE), in Arg_comparator()
70 a_cache(0), b_cache(0), set_null(TRUE), in Arg_comparator()
/dports/databases/percona-pam-for-mysql/percona-server-5.6.51-91.0/sql/
H A Ditem_cmpfunc.h51 Item *a_cache, *b_cache; // Cached values of a and b items variable
67 Arg_comparator(): comparators(0), thd(0), a_cache(0), b_cache(0), set_null(TRUE), in Arg_comparator()
70 a_cache(0), b_cache(0), set_null(TRUE), in Arg_comparator()
/dports/databases/mysqlwsrep56-server/mysql-wsrep-wsrep_5.6.51-25.33/sql/
H A Ditem_cmpfunc.h51 Item *a_cache, *b_cache; // Cached values of a and b items variable
67 Arg_comparator(): comparators(0), thd(0), a_cache(0), b_cache(0), set_null(TRUE), in Arg_comparator()
70 a_cache(0), b_cache(0), set_null(TRUE), in Arg_comparator()

123