Searched defs:fl (Results 1 - 22 of 22) sorted by relevance

/openjdk7/hotspot/test/compiler/6860469/
H A DTest.java38 static int[] fl = new int[1 << F]; field in class:Test
62 fl[i] = max;
/openjdk7/jdk/src/solaris/native/java/util/
H A DFileSystemPreferences.c69 FLOCK fl; local
71 fl.l_whence = SEEK_SET;
72 fl.l_len = 0;
73 fl.l_start = 0;
75 fl.l_type = F_RDLCK;
77 fl.l_type = F_WRLCK;
93 rc = fcntl(fd, F_SETLK, &fl);
95 rc = fcntl(fd, F_SETLK64, &fl);
120 FLOCK fl; local
121 fl
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DfreeList.cpp110 void FreeList<Chunk>::getFirstNChunksFromList(size_t n, FreeList<Chunk>* fl) { argument
112 assert(fl->count() == 0, "Precondition");
115 fl->set_head(head()); n--;
134 fl->set_tail(tl);
135 fl->set_count(k);
253 void FreeList<Chunk>::prepend(FreeList<Chunk>* fl) { argument
255 if (fl->count() > 0) {
257 set_head(fl->head());
258 set_tail(fl->tail());
259 set_count(fl
[all...]
H A DbinaryTreeDictionary.cpp905 virtual void do_list(FreeList<Chunk>* fl) = 0;
954 void do_list(FreeList<Chunk>* fl) { argument
956 fl->compute_desired(_inter_sweep_current, _inter_sweep_estimate, _intra_sweep_estimate);
957 fl->set_coal_desired((ssize_t)((double)fl->desired() * coalSurplusPercent));
958 fl->set_before_sweep(fl->count());
959 fl->set_bfr_surp(fl->surplus());
970 virtual bool do_list(FreeList<Chunk>* fl)
1013 do_list(FreeList<Chunk>* fl) argument
1051 do_list(FreeList<Chunk>* fl) argument
1067 do_list(FreeList<Chunk>* fl) argument
1087 do_list(FreeList<Chunk>* fl) argument
1106 do_list(FreeList<Chunk>* fl) argument
1125 do_list(FreeList<Chunk>* fl) argument
1144 do_list(FreeList<Chunk>* fl) argument
1204 do_list(FreeList<Chunk>* fl) argument
1256 do_list(FreeList<Chunk>* fl) argument
[all...]
/openjdk7/jdk/test/java/util/concurrent/forkjoin/
H A DIntegrate.java153 static final double recEval(double l, double r, double fl, argument
159 double al = (fl + fc) * hh;
165 return recEval(c, r, fc, fr, ar) + recEval(l, c, fl, fc, al);
194 static final double recEval(double l, double r, double fl, argument
200 double al = (fl + fc) * hh;
212 return ar + recEval(l, c, fl, fc, al);
241 static final double recEval(double l, double r, double fl, argument
247 double al = (fl + fc) * hh;
260 return ar + recEval(l, c, fl, fc, al);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DFileLockTable.java56 public abstract void add(FileLock fl) throws OverlappingFileLockException; argument
61 public abstract void remove(FileLock fl); argument
124 public void add(FileLock fl) throws OverlappingFileLockException { argument
137 list.add(new FileLockReference(fl, queue, fileKey));
152 checkList(list, fl.position(), fl.size());
153 list.add(new FileLockReference(fl, queue, fileKey));
174 public void remove(FileLock fl) { argument
175 assert fl != null;
186 if (lock == fl) {
[all...]
H A DFileChannelImpl.java108 for (FileLock fl: fileLockTable.removeAll()) {
109 synchronized (fl) {
110 if (fl.isValid()) {
111 nd.release(fd, fl.position(), fl.size());
112 ((FileLockImpl)fl).invalidate();
1114 for (FileLock fl: lockList) {
1115 if (fl.overlaps(position, size)) {
1121 public void add(FileLock fl) throws OverlappingFileLockException { argument
1123 checkList(fl
1128 remove(FileLock fl) argument
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DStreamTokenizer.java487 * @param fl <code>true</code> indicates that all word tokens should
493 public void lowerCaseMode(boolean fl) { argument
494 forceLower = fl;
/openjdk7/hotspot/src/share/tools/launcher/
H A Dwildcard.c233 FileList fl = NEW_(FileList); local
234 fl->capacity = capacity;
235 fl->files = (char **) JLI_MemAlloc(capacity * sizeof(fl->files[0]));
236 fl->size = 0;
237 return fl;
242 FileList_print(FileList fl) argument
246 for (i = 0; i < fl->size; i++) {
248 printf("\"%s\"",fl->files[i]);
255 FileList_free(FileList fl) argument
269 FileList_ensureCapacity(FileList fl, int capacity) argument
280 FileList_add(FileList fl, char *file) argument
287 FileList_addSubstring(FileList fl, const char *beg, int len) argument
297 FileList_join(FileList fl, char sep) argument
325 FileList fl; local
369 FileList fl = FileList_new(16); local
391 FileList_expandWildcards(FileList fl) argument
418 FileList fl; local
[all...]
/openjdk7/jdk/src/share/bin/
H A Dwildcard.c233 FileList fl = NEW_(FileList); local
234 fl->capacity = capacity;
235 fl->files = (char **) JLI_MemAlloc(capacity * sizeof(fl->files[0]));
236 fl->size = 0;
237 return fl;
243 FileList_free(FileList fl) argument
245 if (fl) {
246 if (fl->files) {
248 for (i = 0; i < fl
257 FileList_ensureCapacity(FileList fl, int capacity) argument
268 FileList_add(FileList fl, char *file) argument
275 FileList_addSubstring(FileList fl, const char *beg, int len) argument
285 FileList_join(FileList fl, char sep) argument
313 FileList fl; local
357 FileList fl = FileList_new(16); local
379 FileList_expandWildcards(FileList fl) argument
406 FileList fl; local
424 FileList_print(FileList fl) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DFileDispatcherImpl.c182 struct flock64 fl; local
184 fl.l_whence = SEEK_SET;
186 fl.l_len = (off64_t)0;
188 fl.l_len = (off64_t)size;
190 fl.l_start = (off64_t)pos;
192 fl.l_type = F_RDLCK;
194 fl.l_type = F_WRLCK;
201 lockResult = fcntl(fd, cmd, &fl);
218 struct flock64 fl; local
221 fl
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dglobals.hpp277 FlagSetting(bool& fl, bool newValue) { flag = &fl; val = fl; fl = newValue; } argument
294 IntFlagSetting(intx& fl, intx newValue) { flag = &fl; val = fl; fl = newValue; } argument
303 DoubleFlagSetting(double& fl, double newValue) { flag = &fl; va argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsxform.c402 _cmsTransformCollection* fl; local
415 fl = (_cmsTransformCollection*) _cmsPluginMalloc(sizeof(_cmsTransformCollection));
416 if (fl == NULL) return FALSE;
419 fl ->Factory = Plugin ->Factory;
422 fl ->Next = TransformCollection;
423 TransformCollection = fl;
H A Dcmscnvrt.c1063 cmsIntentsList* fl; local
1072 fl = SearchIntent(Plugin ->Intent);
1074 if (fl == NULL) {
1075 fl = (cmsIntentsList*) _cmsPluginMalloc(sizeof(cmsIntentsList));
1076 if (fl == NULL) return FALSE;
1079 fl ->Intent = Plugin ->Intent;
1080 strncpy(fl ->Description, Plugin ->Description, 255);
1081 fl ->Description[255] = 0;
1083 fl ->Link = Plugin ->Link;
1085 fl
[all...]
H A Dcmsgamma.c105 _cmsParametricCurvesCollection* fl; local
113 fl = (_cmsParametricCurvesCollection*) _cmsPluginMalloc(sizeof(_cmsParametricCurvesCollection));
114 if (fl == NULL) return FALSE;
117 fl ->Evaluator = Plugin ->Evaluator;
118 fl ->nFunctions = Plugin ->nFunctions;
121 if (fl ->nFunctions > MAX_TYPES_IN_LCMS_PLUGIN)
122 fl ->nFunctions = MAX_TYPES_IN_LCMS_PLUGIN;
125 memmove(fl->FunctionTypes, Plugin ->FunctionTypes, fl->nFunctions * sizeof(cmsUInt32Number));
126 memmove(fl
[all...]
H A Dcmsopt.c1652 _cmsOptimizationCollection* fl; local
1663 fl = (_cmsOptimizationCollection*) _cmsPluginMalloc(sizeof(_cmsOptimizationCollection));
1664 if (fl == NULL) return FALSE;
1667 fl ->OptimizePtr = Plugin ->OptimizePtr;
1670 fl ->Next = OptimizationCollection;
1671 OptimizationCollection = fl;
H A Dcmspack.c3172 cmsFormattersFactoryList* fl ; local
3181 fl = (cmsFormattersFactoryList*) _cmsPluginMalloc(sizeof(cmsFormattersFactoryList));
3182 if (fl == NULL) return FALSE;
3184 fl ->Factory = Plugin ->FormattersFactory;
3186 fl ->Next = FactoryList;
3187 FactoryList = fl;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionRemSet.cpp183 PerRegionTable* fl = _free_list; local
184 last->set_next(fl);
185 PerRegionTable* res = (PerRegionTable*) Atomic::cmpxchg_ptr(prt, &_free_list, fl);
186 if (res == fl) {
199 PerRegionTable* fl = _free_list; local
200 while (fl != NULL) {
201 PerRegionTable* nxt = fl->next();
204 Atomic::cmpxchg_ptr(nxt, &_free_list, fl);
205 if (res == fl) {
206 fl
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.hpp657 void init_flags(jushort fl) { argument
658 assert(fl <= _max_flags, "invalid node flag");
659 _flags |= fl;
661 void clear_flag(jushort fl) { argument
662 assert(fl <= _max_flags, "invalid node flag");
663 _flags &= ~fl;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_util.c676 XmFontList fl=NULL; local
730 XtVaGetValues(w, XmNfontList, &fl, NULL);
736 XNFontSet, extract_fontset(fl),
746 extract_fontset(XmFontList fl) argument
755 if (!XmFontListInitFontContext(&context, fl))
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DnDDS.cpp61 bool operator < (const FORMATETC &fr, const FORMATETC &fl) { argument
62 return memcmp(&fr, &fl, sizeof(FORMATETC)) < 0;
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp1340 FreeList<FreeChunk>* fl = &_indexedFreeList[i]; local
1341 if (fl->head()) {
1342 ret = getFromListGreater(fl, numWords);
1875 FreeList<FreeChunk> *fl = &_indexedFreeList[hint]; local
1876 if (fl->surplus() > 0 && fl->head() != NULL) {
1880 FreeChunk* res = getFromListGreater(fl, numWords);
1885 hint = fl->hint(); /* keep looking */
1893 /* Requires fl->size >= numWords + MinChunkSize */
1894 FreeChunk* CompactibleFreeListSpace::getFromListGreater(FreeList<FreeChunk>* fl, argument
2176 FreeList<FreeChunk>* fl = &_indexedFreeList[i]; local
2195 FreeList<FreeChunk> *fl = &_indexedFreeList[i]; local
2206 FreeList<FreeChunk> *fl = &_indexedFreeList[i]; local
2218 FreeList<FreeChunk> *fl = &_indexedFreeList[i]; local
2245 FreeList<FreeChunk> *fl = &_indexedFreeList[size]; local
2553 const FreeList<FreeChunk> *fl = &_indexedFreeList[i]; local
2639 FreeList<FreeChunk>* fl = &_indexedFreeList[word_sz]; local
2659 get_from_global_pool(size_t word_sz, FreeList<FreeChunk>* fl) argument
2755 par_get_chunk_of_blocks(size_t word_sz, size_t n, FreeList<FreeChunk>* fl) argument
[all...]

Completed in 83 milliseconds