Home
last modified time | relevance | path

Searched refs:clst (Results 1 – 6 of 6) sorted by relevance

/third_party/FatFs/documents/res/
Dapp5.c10 DWORD clst, clsz, step; in test_contiguous_file() local
26 clst = fp->obj.sclust - 1; /* A cluster leading the first cluster for first test */ in test_contiguous_file()
31 if (clst + 1 != fp->clust) break; /* Is not the cluster next to previous one? */ in test_contiguous_file()
32 clst = fp->clust; fsz -= step; /* Get current cluster for next test */ in test_contiguous_file()
Dapp3.c15 DWORD clust2sect (FATFS* fs, DWORD clst);
16 DWORD get_fat (FATFS* fs, DWORD clst);
17 FRESULT put_fat (FATFS* fs, DWORD clst, DWORD val);
/third_party/FatFs/source/
Dff.c1023 DWORD clst /* Cluster# to be converted */ in clst2sect() argument
1026 clst -= 2; /* Cluster number is origin from 2 */ in clst2sect()
1027 if (clst >= fs->n_fatent - 2) return 0; /* Is it invalid cluster number? */ in clst2sect()
1028 return fs->database + (LBA_t)fs->csize * clst; /* Start sector number of the cluster */ in clst2sect()
1040 DWORD clst /* Cluster number to get the value */ in get_fat() argument
1051 if (clst < 2 || clst >= fs->n_fatent) { /* Check if in valid range */ in get_fat()
1059 bc = (UINT)clst; bc += bc / 2; in get_fat()
1064 val = (clst & 1) ? (wc >> 4) : (wc & 0xFFF); /* Adjust bit position */ in get_fat()
1068 if (move_window(fs, fs->fatbase + (clst / (SS(fs) / 2))) != FR_OK) break; in get_fat()
1069 val = ld_word(fs->win + clst * 2 % SS(fs)); /* Simple WORD array */ in get_fat()
[all …]
Dff.h354 DWORD clst; member
476 DWORD get_fat (FFOBJID *obj, DWORD clst);
477 FRESULT put_fat(FATFS *fs, DWORD clst, DWORD val);
479 QWORD clst2sect (FATFS* fs, DWORD clst );
501 DWORD create_chain (FFOBJID* obj, DWORD clst);
502 FRESULT remove_chain (FFOBJID* obj, DWORD clst, DWORD pclst);
/third_party/gstreamer/gstplugins_bad/sys/d3dvideosink/
Dd3dhelpers.c2691 GList *lst, *clst; in d3d_class_notify_device_lost_all() local
2696 clst = g_list_copy (klass->d3d.sink_list); in d3d_class_notify_device_lost_all()
2698 for (lst = clst; lst != NULL; lst = lst->next) { in d3d_class_notify_device_lost_all()
2704 g_list_free (clst); in d3d_class_notify_device_lost_all()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZInstrInfo.td1605 defm CLST : StringRRE<"clst", 0xB25D, z_strcmp>;