OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:startCluster
(Results
1 - 8
of
8
) sorted by null
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ClusterChain.java
38
private long
startCluster
;
50
public ClusterChain(Fat fat, long
startCluster
, boolean readOnly) {
55
if (
startCluster
!= 0) {
56
this.fat.testCluster(
startCluster
);
58
if (this.fat.isFreeCluster(
startCluster
))
60
"cluster " +
startCluster
+ " is free");
65
this.
startCluster
=
startCluster
;
88
return
startCluster
;
161
if ((this.
startCluster
== 0) && (nrClusters == 0))
[
all
...]
Fat.java
233
public long[] getChain(long
startCluster
) {
234
testCluster(
startCluster
);
237
long cluster =
startCluster
;
244
chain[0] =
startCluster
;
245
cluster =
startCluster
;
FatDirectoryEntry.java
344
* Returns the
startCluster
.
355
* Sets the
startCluster
.
357
* @param
startCluster
The
startCluster
to set
359
void setStartCluster(long
startCluster
) {
360
if (
startCluster
> Integer.MAX_VALUE ) throw new AssertionError();
362
LittleEndian.setInt16(data, 0x1a, (int)
startCluster
);
363
LittleEndian.setInt16(data, 0x14, (int)(
startCluster
>>> 16));
/external/libvpx/libvpx/
webmenc.h
57
EbmlLoc
startCluster
;
webmenc.c
241
Ebml_EndSubElement(glob, &glob->
startCluster
);
248
Ebml_StartSubElement(glob, &glob->
startCluster
, Cluster);
299
Ebml_EndSubElement(glob, &glob->
startCluster
);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
webmenc.h
57
EbmlLoc
startCluster
;
webmenc.c
241
Ebml_EndSubElement(glob, &glob->
startCluster
);
248
Ebml_StartSubElement(glob, &glob->
startCluster
, Cluster);
299
Ebml_EndSubElement(glob, &glob->
startCluster
);
/prebuilts/devtools/tools/lib/
fat32lib.jar
Completed in 226 milliseconds