Searched refs:cache (Results 1 - 25 of 30) sorted by relevance

12

/vbox/src/VBox/RDP/client-1.8.3/
H A Dbootstrap2 rm -rf autom4te.cache
H A Dconfigure854 -cache-file | --cache-file | --cache-fil | --cache-fi \
855 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
857 -cache-file=* | --cache-file=* | --cache
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/drivers/dri/common/
H A Dxmlconfig.h61 /** \brief Option cache
98 /** \brief Initialize option cache from info and parse configuration files
102 void driParseConfigFiles (driOptionCache *cache, const driOptionCache *info,
108 /** \brief Destroy option cache
111 void driDestroyOptionCache (driOptionCache *cache);
114 GLboolean driCheckOption (const driOptionCache *cache, const char *name,
118 GLboolean driQueryOptionb (const driOptionCache *cache, const char *name);
120 GLint driQueryOptioni (const driOptionCache *cache, const char *name);
122 GLfloat driQueryOptionf (const driOptionCache *cache, const char *name);
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dpcivpd.h121 /** PCI VPD cache */
135 /** Read cache */
136 struct pci_vpd_cache cache; member in struct:pci_vpd
151 * Check if PCI VPD read cache is valid
154 * @ret is_valid Read cache is valid
158 return ( vpd->cache.address >= 0 );
162 * Invalidate PCI VPD read cache
168 vpd->cache.address = -1;
/vbox/include/VBox/
H A Dvd-plugin.h31 #include <VBox/vd-cache-backend.h>
49 * Registers a new cache backend.
53 * @param pBackend The cache backend to register.
/vbox/src/libs/libxml2-2.6.31/
H A Dxpath.c569 void *cache; member in struct:_xmlXPathStepOp
763 comp->steps[comp->nbStep].cache = NULL;
812 * XPath object cache structures *
818 #define XP_HAS_CACHE(c) ((c != NULL) && ((c)->cache != NULL))
1356 if (ctxt->cache != NULL) {
1357 xmlXPathContextCachePtr cache = local
1358 (xmlXPathContextCachePtr) ctxt->cache;
1360 cache->dbgCachedAll = 0;
1361 cache->dbgCachedNodeset = 0;
1362 cache
1432 xmlXPathContextCachePtr cache = local
1586 xmlXPathContextCachePtr cache = local
1690 xmlXPathContextCachePtr cache = local
1839 xmlXPathFreeCache(xmlXPathContextCachePtr cache) argument
1887 xmlXPathContextCachePtr cache; local
1925 xmlXPathContextCachePtr cache = local
1962 xmlXPathContextCachePtr cache = (xmlXPathContextCachePtr) ctxt->cache; local
2014 xmlXPathContextCachePtr cache = (xmlXPathContextCachePtr) ctxt->cache; local
2078 xmlXPathContextCachePtr cache = (xmlXPathContextCachePtr) ctxt->cache; local
2127 xmlXPathContextCachePtr cache = (xmlXPathContextCachePtr) ctxt->cache; local
2181 xmlXPathContextCachePtr cache = (xmlXPathContextCachePtr) ctxt->cache; local
2229 xmlXPathContextCachePtr cache = (xmlXPathContextCachePtr) ctxt->cache; local
5441 xmlXPathContextCachePtr cache = local
[all...]
H A Drunsuite.c229 * Deactivate the cache if created; otherwise we have to create/free it
231 * Note that normally this need not be done, since the cache is not
234 * cache by default for the whole library.
236 if (ctxtXPath->cache != NULL)
H A Dconfigure1084 -cache-file | --cache-file | --cache-fil | --cache-fi \
1085 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
1087 -cache-file=* | --cache-file=* | --cache
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Dniclist.pl546 function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",cssChildRow:"expand-child",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,sortLocaleCompare:true,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'/\.|\,/g',onRenderHeader:null,selectorHeaders:'thead th',debug:false};function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms");}this.benchmark=benchmark;function log(s){if(typeof console!="undefined"&&typeof console.debug!="undefined"){console.log(s);}else{alert(s);}}function buildParserCache(table,$headers){if(table.config.debug){var parsersDebug="";}if(table.tBodies.length==0)return;var rows=table.tBodies[0].rows;if(rows[0]){var list=[],cells=rows[0].cells,l=cells.length;for(var i=0;i<l;i++){var p=false;if($.metadata&&($($headers[i]).metadata()&&$($headers[i]).metadata().sorter)){p=getParserById($($headers[i]).metadata().sorter);}else if((table.config.headers[i]&&table.config.headers[i].sorter)){p=getParserById(table.config.headers[i].sorter);}if(!p){p=detectParserForColumn(table,rows,-1,i);}if(table.config.debug){parsersDebug+="column:"+i+" parser:"+p.id+"\n";}list.push(p);}}if(table.config.debug){log(parsersDebug);}return list;};function detectParserForColumn(table,rows,rowIndex,cellIndex){var l=parsers.length,node=false,nodeValue=false,keepLooking=true;while(nodeValue==''&&keepLooking){rowIndex++;if(rows[rowIndex]){node=getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex);nodeValue=trimAndGetNodeText(table.config,node);if(table.config.debug){log('Checking if value was empty on row:'+rowIndex);}}else{keepLooking=false;}}for(var i=1;i<l;i++){if(parsers[i].is(nodeValue,table,node)){return parsers[i];}}return parsers[0];}function getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex){return rows[rowIndex].cells[cellIndex];}function trimAndGetNodeText(config,node){return $.trim(getElementText(config,node));}function getParserById(name){var l=parsers.length;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==name.toLowerCase()){return parsers[i];}}return false;}function buildCache(table){if(table.config.debug){var cacheTime=new Date();}var totalRows=(table.tBodies[0]&&table.tBodies[0].rows.length)||0,totalCells=(table.tBodies[0].rows[0]&&table.tBodies[0].rows[0].cells.length)||0,parsers=table.config.parsers,cache={row:[],normalized:[]};for(var i=0;i<totalRows;++i){var c=$(table.tBodies[0].rows[i]),cols=[];if(c.hasClass(table.config.cssChildRow)){cache.row[cache.row.length-1]=cache.row[cache.row.length-1].add(c);continue;}cache.row.push(c);for(var j=0;j<totalCells;++j){cols.push(parsers[j].format(getElementText(table.config,c[0].cells[j]),table,c[0].cells[j]));}cols.push(cache.normalized.length);cache.normalized.push(cols);cols=null;};if(table.config.debug){benchmark("Building cache for "+totalRows+" rows:",cacheTime);}return cache;};functio
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bus/
H A Dpcivpd.c83 ( vpd->cache.address == address ) ) {
84 *data = vpd->cache.data;
104 /* Populate cache */
105 vpd->cache.address = address;
106 vpd->cache.data = *data;
139 /* Invalidate cache */
/vbox/src/VBox/Frontends/VirtualBox/src/medium/
H A DUIMedium.h34 /** Storage medium cache used to
52 /** Holds whether the cache is set. */
160 /** Returns the medium cache key. */
162 /** Defines the medium cache @a strKey. */
246 /** Returns the medium cache for "don't show diffs" mode. */
247 const NoDiffsCache& cache() const { return m_noDiffs; } function in class:UIMedium
315 /** Holds the medium cache key. */
345 /** Holds the medium cache for "don't show diffs" mode. */
H A DUIMedium.cpp99 m_noDiffs = other.cache();
141 /* Reset cache parameters: */
/vbox/src/libs/xpcom18a4/nsprpub/
H A DMakefile.in63 DIST_GARBAGE = config.cache config.log config.status
H A Dconfigure67 cache_file=./config.cache
134 -cache-file | --cache-file | --cache-fil | --cache-fi \
135 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
137 -cache-file=* | --cache
[all...]
/vbox/src/libs/liblzf-3.4/
H A Dconfigure743 -cache-file | --cache-file | --cache-fil | --cache-fi \
744 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
746 -cache-file=* | --cache-file=* | --cache
[all...]
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dxpath.h350 void *cache; member in struct:_xmlXPathContext
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/phantom/
H A Dphantom.c449 } cache; local
454 sub_offset = ( offset & ( sizeof ( cache ) - 1 ) );
455 offset = ( offset & ~( sizeof ( cache ) - 1 ) );
459 cache.dwords )) !=0 )
464 return cache.bytes[sub_offset];
/vbox/src/VBox/Installer/linux/rpm/
H A DVirtualBox.tmpl.spec312 gtk-update-icon-cache -q /usr/share/icons/hicolor 2> /dev/null || :
436 gtk-update-icon-cache -q /usr/share/icons/hicolor 2> /dev/null || :
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DebugSupportDxe/Ia32/
H A DAsmFuncs.S136 ## To do this, we check the exception number pushed by the stub, and cache the
H A DAsmFuncs.asm233 ;; To do this, we check the exception number pushed by the stub, and cache the
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzmaEnc.c237 Byte cache; member in struct:_CRangeEnc
523 p->cache = 0;
547 Byte temp = p->cache;
558 p->cache = (Byte)((UInt32)p->low >> 24);
/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/
H A DUIMachineSettingsStorage.h378 void cache();
669 /* Load data to cache from corresponding external object(s),
672 /* Load data to corresponding widgets from cache,
676 /* Save data from corresponding widgets to cache,
679 /* Save data from cache to corresponding external object(s),
/vbox/src/VBox/Main/include/
H A DPerformance.h792 GuestRamUsage(CollectorGuest *cguest, ComPtr<IUnknown> object, SubMetric *total, SubMetric *free, SubMetric *balloon, SubMetric *shared, SubMetric *cache, SubMetric *pagedtotal) argument
793 : BaseGuestMetric(cguest, "Guest/RAM/Usage", object), mTotal(total), mFree(free), mBallooned(balloon), mCache(cache), mPagedTotal(pagedtotal), mShared(shared) {};
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DebugSupportDxe/X64/
H A DAsmFuncs.asm261 ;; To do this, we check the exception number pushed by the stub, and cache the
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Dhttp.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/net/ com/sun/net/httpserver/ ...

Completed in 100 milliseconds

12