Home
last modified time | relevance | path

Searched refs:nm (Results 1 – 25 of 25) sorted by relevance

/u-boot/fs/ubifs/
A Dkey.h142 const struct qstr *nm) in dent_key_init() argument
144 uint32_t hash = c->key_hash(nm->name, nm->len); in dent_key_init()
176 ino_t inum, const struct qstr *nm) in dent_key_init_flash() argument
179 uint32_t hash = c->key_hash(nm->name, nm->len); in dent_key_init_flash()
210 const struct qstr *nm) in xent_key_init() argument
212 uint32_t hash = c->key_hash(nm->name, nm->len); in xent_key_init()
227 ino_t inum, const struct qstr *nm) in xent_key_init_flash() argument
230 uint32_t hash = c->key_hash(nm->name, nm->len); in xent_key_init_flash()
A Dubifs.c293 struct qstr nm; in ubifs_printdir() local
311 nm.name = NULL; in ubifs_printdir()
330 nm.name = NULL; in ubifs_printdir()
348 nm.len = le16_to_cpu(dent->nlen); in ubifs_printdir()
356 nm.name = (char *)dent->name; in ubifs_printdir()
385 struct qstr nm; in ubifs_finddir() local
414 nm.name = NULL; in ubifs_finddir()
415 dent = ubifs_tnc_next_ent(c, &key, &nm); in ubifs_finddir()
432 nm.len = le16_to_cpu(dent->nlen); in ubifs_finddir()
434 (strlen(dirname) == nm.len)) { in ubifs_finddir()
[all …]
A Dtnc.c545 err = memcmp(dent->name, nm->name, min_t(int, nlen, nm->len)); in matches_name()
547 if (nlen == nm->len) in matches_name()
838 err = memcmp(dent->name, nm->name, min_t(int, nlen, nm->len)); in fallible_matches_name()
1801 dbg_tnck(key, "name '%.*s' key ", nm->len, nm->name); in do_lookup_nm()
1858 if (nm->len == len && !memcmp(dent->name, nm->name, len)) in ubifs_tnc_lookup_nm()
2293 lnum, offs, nm->len, nm->name); in ubifs_tnc_add_nm()
2303 nm, 1); in ubifs_tnc_add_nm()
2527 dbg_tnck(key, "%.*s, key ", nm->len, nm->name); in ubifs_tnc_remove_nm()
2535 nm, 0); in ubifs_tnc_remove_nm()
2762 dbg_tnck(key, "%s ", nm->name ? (char *)nm->name : "(lowest)"); in ubifs_tnc_next_ent()
[all …]
A Dreplay.c59 struct qstr nm; member
226 err = ubifs_tnc_remove_nm(c, &r->key, &r->nm); in apply_replay_entry()
229 r->len, &r->nm); in apply_replay_entry()
325 kfree(r->nm.name); in destroy_replay_list()
428 r->nm.len = nlen; in insert_dent()
431 r->nm.name = nbuf; in insert_dent()
A Dubifs.h2141 const struct qstr *nm, const struct inode *inode,
2154 const struct inode *inode, const struct qstr *nm);
2189 void *node, const struct qstr *nm);
2197 int lnum, int offs, int len, const struct qstr *nm);
2200 const struct qstr *nm);
2206 const struct qstr *nm);
A Ddebug.c238 struct qstr nm = { .name = NULL }; in ubifs_dump_inode() local
284 dent = ubifs_tnc_next_ent(c, &key, &nm); in ubifs_dump_inode()
294 nm.name = dent->name; in ubifs_dump_inode()
295 nm.len = le16_to_cpu(dent->nlen); in ubifs_dump_inode()
1120 struct qstr nm = { .name = NULL }; in dbg_check_dir() local
1133 dent = ubifs_tnc_next_ent(c, &key, &nm); in dbg_check_dir()
1141 nm.name = dent->name; in dbg_check_dir()
1142 nm.len = le16_to_cpu(dent->nlen); in dbg_check_dir()
1143 size += CALC_DENT_SIZE(nm.len); in dbg_check_dir()
/u-boot/scripts/dtc/
A Ddata.c25 struct marker *m, *nm; in data_free() local
29 nm = m->next; in data_free()
32 m = nm; in data_free()
A Dchecks.c192 #define WARNING_IF_NOT_STRING(nm, propname) \ argument
193 WARNING(nm, check_is_string, (propname))
194 #define ERROR_IF_NOT_STRING(nm, propname) \ argument
195 ERROR(nm, check_is_string, (propname))
222 WARNING(nm, check_is_string_list, (propname))
224 ERROR(nm, check_is_string_list, (propname))
239 #define WARNING_IF_NOT_CELL(nm, propname) \ argument
240 WARNING(nm, check_is_cell, (propname))
241 #define ERROR_IF_NOT_CELL(nm, propname) \ argument
242 ERROR(nm, check_is_cell, (propname))
[all …]
/u-boot/drivers/mtd/ubi/
A Ddebug.c199 char nm[17]; in ubi_dump_mkvol_req() local
208 memcpy(nm, req->name, 16); in ubi_dump_mkvol_req()
209 nm[16] = 0; in ubi_dump_mkvol_req()
210 pr_err("\t1st 16 characters of name: %s\n", nm); in ubi_dump_mkvol_req()
/u-boot/drivers/video/
A Dstb_truetype.h3095 stbtt_uint32 nm = stbtt__find_table(fc, offset, "name"); in stbtt_GetFontNameString() local
3096 if (!nm) return NULL; in stbtt_GetFontNameString()
3098 count = ttUSHORT(fc+nm+2); in stbtt_GetFontNameString()
3099 stringOffset = nm + ttUSHORT(fc+nm+4); in stbtt_GetFontNameString()
3101 stbtt_uint32 loc = nm + 6 + 12 * i; in stbtt_GetFontNameString()
3114 stbtt_int32 count = ttUSHORT(fc+nm+2); in stbtt__matchpair()
3115 stbtt_int32 stringOffset = nm + ttUSHORT(fc+nm+4); in stbtt__matchpair()
3118 stbtt_uint32 loc = nm + 6 + 12 * i; in stbtt__matchpair()
3161 stbtt_uint32 nm,hd; in stbtt__matches() local
3170 nm = stbtt__find_table(fc, offset, "name"); in stbtt__matches()
[all …]
/u-boot/include/linux/mtd/
A Drawnand.h1030 #define LEGACY_ID_NAND(nm, devid, chipsz, erasesz, opts) \ argument
1031 { .name = (nm), {{ .dev_id = (devid) }}, .pagesize = 512, \
1044 #define EXTENDED_ID_NAND(nm, devid, chipsz, opts) \ argument
1045 { .name = (nm), {{ .dev_id = (devid) }}, .chipsize = (chipsz), \
/u-boot/include/linux/
A Dcompat.h387 #define request_irq(nr, f, flags, nm, data) 0 argument
/u-boot/tools/buildman/
A Dbuilderthread.py357 nm = self.builder.GetFuncSizesFile(result.commit_upto,
359 with open(nm, 'w') as fd:
/u-boot/board/synopsys/iot_devkit/
A DREADME14 55-nm ultra-low power process, and a rich set of peripherals commonly used
/u-boot/board/freescale/m52277evb/
A DREADME217 nm - memory modify (constant address)
/u-boot/doc/
A DREADME.m54418twr229 nm - memory modify (constant address)
/u-boot/board/freescale/m547xevb/
A DREADME249 nm - memory modify (constant address)
/u-boot/cmd/
A Dmem.c1331 nm, 2, 1, do_mem_nm,
A Di2c.c1978 U_BOOT_CMD_MKENT(nm, 2, 1, do_i2c_nm, "", ""),
A DKconfig630 bool "md, mm, nm, mw, cp, cmp, base, loop"
636 nm - memory modify (constant address)
/u-boot/board/freescale/m5373evb/
A DREADME232 nm - memory modify (constant address)
/u-boot/board/freescale/m54455evb/
A DREADME320 nm - memory modify (constant address)
/u-boot/
A DMakefile396 NM = $(CROSS_COMPILE)nm
A DREADME3138 nm - memory modify (constant address)
/u-boot/arch/arm/dts/
A Dk3-j721e-main.dtsi1284 compatible = "cdns,ufshc-m31-16nm", "jedec,ufs-2.0";

Completed in 81 milliseconds