Searched refs:maxLen (Results 1 - 8 of 8) sorted by relevance

/glassfish-3.1.2/persistence/cmp/generator-database/src/main/java/com/sun/jdo/spi/persistence/generator/database/
H A DMappingPolicy.java1162 String colName, String tableName, int maxLen) {
1164 return getUniqueName(colName, tableName, maxLen);
1174 private String getUniqueGlobalName(String name, int maxLen) { argument
1175 return getUniqueName(name, GLOBAL_NAMING_SPACE, maxLen);
1185 private String getUniqueName(String name, String namespace, int maxLen) { argument
1189 maxLen -= MAX_LEN_COUNTER;
1191 // Name cannot be more than maxLen chars long.
1192 if (name.length() > maxLen) {
1193 rc = name.substring(0, maxLen);
1209 maxLen
1161 getUniqueLocalName( String colName, String tableName, int maxLen) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DLzFind.c333 UInt32 *distances, UInt32 maxLen)
344 if (pb[maxLen] == cur[maxLen] && *pb == *cur)
350 if (maxLen < len)
352 *distances++ = maxLen = len;
364 UInt32 *distances, UInt32 maxLen)
387 if (maxLen < len)
389 *distances++ = maxLen = len;
486 #define GET_MATCHES_FOOTER(offset, maxLen) \
488 distances + offset, maxLen)
331 Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, UInt32 *distances, UInt32 maxLen) argument
362 GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, UInt32 *distances, UInt32 maxLen) argument
517 UInt32 hash2Value, delta2, maxLen, offset; local
550 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; local
597 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; local
[all...]
H A DLzFind.h74 UInt32 *distances, UInt32 maxLen);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DLzFind.c314 UInt32 *distances, UInt32 maxLen)
325 if (pb[maxLen] == cur[maxLen] && *pb == *cur)
331 if (maxLen < len)
333 *distances++ = maxLen = len;
345 UInt32 *distances, UInt32 maxLen)
368 if (maxLen < len)
370 *distances++ = maxLen = len;
467 #define GET_MATCHES_FOOTER(offset, maxLen) \
469 distances + offset, maxLen)
312 Hc_GetMatchesSpec(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, UInt32 *distances, UInt32 maxLen) argument
343 GetMatchesSpec1(UInt32 lenLimit, UInt32 curMatch, UInt32 pos, const Byte *cur, CLzRef *son, UInt32 _cyclicBufferPos, UInt32 _cyclicBufferSize, UInt32 cutValue, UInt32 *distances, UInt32 maxLen) argument
498 UInt32 hash2Value, delta2, maxLen, offset; local
531 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; local
578 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; local
[all...]
H A DLzFind.h74 UInt32 *distances, UInt32 maxLen);
H A DLzFindMt.c247 UInt32 maxLen = _maxLen; local
266 if (maxLen < len)
268 *distances++ = maxLen = len;
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dprocess.c108 void crGetProcName( char *name, int maxLen )
116 if (!GetModuleFileName( NULL, command, maxLen ))
124 crStrncpy(name, command+c+1, maxLen);
183 crStrncpy(name, pname, maxLen);
197 void crGetCurrentDir( char *dir, int maxLen )
200 if (!GetCurrentDirectory(maxLen, dir))
203 if (!getcwd(dir, maxLen))
/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_process.h39 extern DECLEXPORT(void) crGetProcName( char *name, int maxLen );
41 extern DECLEXPORT(void) crGetCurrentDir( char *dir, int maxLen );

Completed in 116 milliseconds