OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:memoryLimit
(Results
1 - 13
of
13
) sorted by null
/external/xz-java/src/org/tukaani/xz/
MemoryLimitException.java
23
private final int
memoryLimit
;
32
* @param
memoryLimit
specified memory usage limit as kibibytes (KiB)
34
public MemoryLimitException(int memoryNeeded, int
memoryLimit
) {
36
+
memoryLimit
+ " KiB");
39
this.
memoryLimit
=
memoryLimit
;
58
return
memoryLimit
;
XZInputStream.java
66
private final int
memoryLimit
;
143
* that this takes also the <code>
memoryLimit
</code> argument.
148
* @param
memoryLimit
memory usage limit in kibibytes (KiB)
168
public XZInputStream(InputStream in, int
memoryLimit
) throws IOException {
169
this(in,
memoryLimit
, true);
176
* that this takes also the <code>
memoryLimit
</code> and
182
* @param
memoryLimit
memory usage limit in kibibytes (KiB)
206
public XZInputStream(InputStream in, int
memoryLimit
,
208
this(in,
memoryLimit
, true, arrayCache);
236
* @param
memoryLimit
memory usage limit in kibibytes (KiB
[
all
...]
SingleXZInputStream.java
45
private final int
memoryLimit
;
137
* except that this also takes the <code>
memoryLimit
</code> argument.
142
* @param
memoryLimit
memory usage limit in kibibytes (KiB)
162
public SingleXZInputStream(InputStream in, int
memoryLimit
)
164
this(in,
memoryLimit
, true);
172
* except that this also takes the <code>
memoryLimit
</code> and
178
* @param
memoryLimit
memory usage limit in kibibytes (KiB)
202
public SingleXZInputStream(InputStream in, int
memoryLimit
,
204
this(in,
memoryLimit
, true, arrayCache);
233
* @param
memoryLimit
memory usage limit in kibibytes (KiB
[
all
...]
SeekableXZInputStream.java
91
private final int
memoryLimit
;
95
* <code>
memoryLimit
+ indexMemoryUsage</code> equals the original
262
* @param
memoryLimit
memory usage limit in kibibytes (KiB)
288
public SeekableXZInputStream(SeekableInputStream in, int
memoryLimit
)
290
this(in,
memoryLimit
, true);
304
* @param
memoryLimit
memory usage limit in kibibytes (KiB)
334
public SeekableXZInputStream(SeekableInputStream in, int
memoryLimit
,
337
this(in,
memoryLimit
, true, arrayCache);
363
* @param
memoryLimit
memory usage limit in kibibytes (KiB)
395
public SeekableXZInputStream(SeekableInputStream in, int
memoryLimit
,
[
all
...]
LZMAInputStream.java
231
* @param
memoryLimit
memory usage limit in kibibytes (KiB)
252
public LZMAInputStream(InputStream in, int
memoryLimit
)
254
this(in,
memoryLimit
, ArrayCache.getDefaultCache());
269
* @param
memoryLimit
memory usage limit in kibibytes (KiB)
294
public LZMAInputStream(InputStream in, int
memoryLimit
,
316
if (
memoryLimit
!= -1 && memoryNeeded >
memoryLimit
)
317
throw new MemoryLimitException(memoryNeeded,
memoryLimit
);
BlockInputStream.java
38
int
memoryLimit
,
184
if (
memoryLimit
>= 0) {
189
if (memoryNeeded >
memoryLimit
)
190
throw new MemoryLimitException(memoryNeeded,
memoryLimit
);
/external/swiftshader/third_party/LLVM/lib/Support/
Program.cpp
30
unsigned
memoryLimit
,
33
if (prg.Execute(path, args, envp, redirects,
memoryLimit
, ErrMsg))
44
unsigned
memoryLimit
,
47
prg.Execute(path, args, envp, redirects,
memoryLimit
, ErrMsg);
/external/llvm/lib/Support/
Program.cpp
28
unsigned
memoryLimit
, std::string *ErrMsg);
32
unsigned
memoryLimit
, std::string *ErrMsg,
35
if (Execute(PI, Program, args, envp, redirects,
memoryLimit
, ErrMsg)) {
51
unsigned
memoryLimit
, std::string *ErrMsg,
56
if (!Execute(PI, Program, args, envp, redirects,
memoryLimit
, ErrMsg))
/external/swiftshader/third_party/llvm-subzero/lib/Support/
Program.cpp
28
unsigned
memoryLimit
, std::string *ErrMsg);
32
unsigned
memoryLimit
, std::string *ErrMsg,
35
if (Execute(PI, Program, args, envp, redirects,
memoryLimit
, ErrMsg)) {
51
unsigned
memoryLimit
, std::string *ErrMsg,
56
if (!Execute(PI, Program, args, envp, redirects,
memoryLimit
, ErrMsg))
/external/swiftshader/third_party/LLVM/include/llvm/Support/
Program.h
75
unsigned
memoryLimit
= 0, ///< If non-zero, this specifies max. amount
140
unsigned
memoryLimit
= 0,
149
unsigned
memoryLimit
= 0,
/external/llvm/include/llvm/Support/
Program.h
113
unsigned
memoryLimit
= 0, ///< If non-zero, this specifies max. amount
130
const StringRef **redirects = nullptr, unsigned
memoryLimit
= 0,
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Program.h
113
unsigned
memoryLimit
= 0, ///< If non-zero, this specifies max. amount
130
const StringRef **redirects = nullptr, unsigned
memoryLimit
= 0,
/external/xz-java/src/org/tukaani/xz/index/
IndexDecoder.java
42
long streamPadding, int
memoryLimit
)
79
if (
memoryLimit
>= 0 && memoryUsage >
memoryLimit
)
80
throw new MemoryLimitException(memoryUsage,
memoryLimit
);
Completed in 260 milliseconds