Searched refs:nm (Results 1 - 17 of 17) sorted by relevance

/u-boot/fs/ubifs/
H A Dkey.h138 * @nm: direntry name and length
142 const struct qstr *nm)
144 uint32_t hash = c->key_hash(nm->name, nm->len);
173 * @nm: direntry name and length
176 ino_t inum, const struct qstr *nm)
179 uint32_t hash = c->key_hash(nm->name, nm->len);
206 * @nm: extended attribute entry name and length
210 const struct qstr *nm)
140 dent_key_init(const struct ubifs_info *c, union ubifs_key *key, ino_t inum, const struct qstr *nm) argument
175 dent_key_init_flash(const struct ubifs_info *c, void *k, ino_t inum, const struct qstr *nm) argument
208 xent_key_init(const struct ubifs_info *c, union ubifs_key *key, ino_t inum, const struct qstr *nm) argument
226 xent_key_init_flash(const struct ubifs_info *c, void *k, ino_t inum, const struct qstr *nm) argument
[all...]
H A Dtnc.c531 * @nm: name to match
534 * @nm. Returns %NAME_MATCHES if it does, %NAME_LESS if the name referred by
535 * @zbr is less than @nm, and %NAME_GREATER if it is greater than @nm. In case
539 const struct qstr *nm)
562 err = memcmp(dent->name, nm->name, min_t(int, nlen, nm->len));
564 if (nlen == nm->len)
566 else if (nlen < nm->len)
697 * @nm
538 matches_name(struct ubifs_info *c, struct ubifs_zbranch *zbr, const struct qstr *nm) argument
707 resolve_collision(struct ubifs_info *c, const union ubifs_key *key, struct ubifs_znode **zn, int *n, const struct qstr *nm) argument
825 fallible_matches_name(struct ubifs_info *c, struct ubifs_zbranch *zbr, const struct qstr *nm) argument
895 fallible_resolve_collision(struct ubifs_info *c, const union ubifs_key *key, struct ubifs_znode **zn, int *n, const struct qstr *nm, int adding) argument
1812 do_lookup_nm(struct ubifs_info *c, const union ubifs_key *key, void *node, const struct qstr *nm) argument
1860 ubifs_tnc_lookup_nm(struct ubifs_info *c, const union ubifs_key *key, void *node, const struct qstr *nm) argument
2302 ubifs_tnc_add_nm(struct ubifs_info *c, const union ubifs_key *key, int lnum, int offs, int len, const struct qstr *nm) argument
2537 ubifs_tnc_remove_nm(struct ubifs_info *c, const union ubifs_key *key, const struct qstr *nm) argument
2693 struct qstr nm = { .name = NULL }; local
2769 ubifs_tnc_next_ent(struct ubifs_info *c, union ubifs_key *key, const struct qstr *nm) argument
[all...]
H A Dubifs.c287 struct qstr nm; local
305 nm.name = NULL;
306 dent = ubifs_tnc_next_ent(c, &key, &nm);
324 nm.name = NULL;
325 dent = ubifs_tnc_next_ent(c, &key, &nm);
342 nm.len = le16_to_cpu(dent->nlen);
343 over = filldir(c, (char *)dent->name, nm.len,
350 nm.name = (char *)dent->name;
351 dent = ubifs_tnc_next_ent(c, &key, &nm);
379 struct qstr nm; local
[all...]
H A Dreplay.c42 * @nm: directory entry name
59 struct qstr nm; member in union:replay_entry::__anon487
226 err = ubifs_tnc_remove_nm(c, &r->key, &r->nm);
229 r->len, &r->nm);
325 kfree(r->nm.name);
428 r->nm.len = nlen;
431 r->nm.name = nbuf;
H 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);
H A Ddebug.c241 struct qstr nm = { .name = NULL }; local
287 dent = ubifs_tnc_next_ent(c, &key, &nm);
297 nm.name = dent->name;
298 nm.len = le16_to_cpu(dent->nlen);
1149 struct qstr nm = { .name = NULL }; local
1162 dent = ubifs_tnc_next_ent(c, &key, &nm);
1170 nm.name = dent->name;
1171 nm.len = le16_to_cpu(dent->nlen);
1172 size += CALC_DENT_SIZE(nm.len);
/u-boot/drivers/phy/qcom/
H A DMakefile6 obj-$(CONFIG_PHY_QCOM_USB_HS_28NM) += phy-qcom-usb-hs-28nm.o
/u-boot/scripts/dtc/
H A Ddata.c25 struct marker *m, *nm; local
29 nm = m->next;
32 m = nm;
H A Dchecks.c192 #define WARNING_IF_NOT_STRING(nm, propname) \
193 WARNING(nm, check_is_string, (propname))
194 #define ERROR_IF_NOT_STRING(nm, propname) \
195 ERROR(nm, check_is_string, (propname))
221 #define WARNING_IF_NOT_STRING_LIST(nm, propname) \
222 WARNING(nm, check_is_string_list, (propname))
223 #define ERROR_IF_NOT_STRING_LIST(nm, propname) \
224 ERROR(nm, check_is_string_list, (propname))
239 #define WARNING_IF_NOT_CELL(nm, propname) \
240 WARNING(nm, check_is_cel
[all...]
/u-boot/drivers/mtd/ubi/
H A Ddebug.c200 char nm[17]; local
209 memcpy(nm, req->name, 16);
210 nm[16] = 0;
211 pr_err("\t1st 16 characters of name: %s\n", nm);
/u-boot/include/linux/mtd/
H A Drawnand.h1058 #define LEGACY_ID_NAND(nm, devid, chipsz, erasesz, opts) \
1059 { .name = (nm), {{ .dev_id = (devid) }}, .pagesize = 512, \
1072 #define EXTENDED_ID_NAND(nm, devid, chipsz, opts) \
1073 { .name = (nm), {{ .dev_id = (devid) }}, .chipsize = (chipsz), \
/u-boot/include/linux/
H A Dcompat.h389 #define request_irq(nr, f, flags, nm, data) 0
/u-boot/drivers/video/
H A Dstb_truetype.h4827 stbtt_uint32 nm = stbtt__find_table(fc, offset, "name"); local
4828 if (!nm) return NULL;
4830 count = ttUSHORT(fc+nm+2);
4831 stringOffset = nm + ttUSHORT(fc+nm+4);
4833 stbtt_uint32 loc = nm + 6 + 12 * i;
4843 static int stbtt__matchpair(stbtt_uint8 *fc, stbtt_uint32 nm, stbtt_uint8 *name, stbtt_int32 nlen, stbtt_int32 target_id, stbtt_int32 next_id) argument
4846 stbtt_int32 count = ttUSHORT(fc+nm+2);
4847 stbtt_int32 stringOffset = nm + ttUSHORT(fc+nm
4893 stbtt_uint32 nm,hd; local
[all...]
/u-boot/drivers/pinctrl/nuvoton/
H A Dpinctrl-npcm7xx.c424 #define NPCM7XX_MKFUNC(nm) { .name = #nm, .ngroups = ARRAY_SIZE(nm ## _grp), \
425 .groups = nm ## _grp }
/u-boot/cmd/
H A Dmem.c1328 nm, 2, 1, do_mem_nm,
H A Di2c.c745 * mod_i2c_mem() - Handle the "i2c mm" and "i2c nm" command-line command
758 * i2c nm{.b, .w, .l} {i2c_chip} {addr}{.0, .1, .2}
1870 * do_i2c_nm() - Handle the "i2c nm" command-line command
1927 U_BOOT_CMD_MKENT(nm, 2, 1, do_i2c_nm, "", ""),
1988 "i2c nm chip address[.0, .1, .2] - write to I2C device (constant address)\n"
/u-boot/
H A DMakefile404 NM = $(CROSS_COMPILE)nm
735 NM = $(shell $(CC) -print-prog-name=llvm-nm)
743 NM = $(CROSS_COMPILE)gcc-nm

Completed in 233 milliseconds