Home
last modified time | relevance | path

Searched refs:bname (Results 1 – 11 of 11) sorted by relevance

/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
Dperf-record.c53 char *bname, *mmap_filename; in test__PERF_RECORD() local
246 bname = strrchr(mmap_filename, '/'); in test__PERF_RECORD()
247 if (bname != NULL) { in test__PERF_RECORD()
249 found_cmd_mmap = !strcmp(bname + 1, cmd); in test__PERF_RECORD()
251 found_libc_mmap = !strncmp(bname + 1, "libc", 4); in test__PERF_RECORD()
253 found_ld_mmap = !strncmp(bname + 1, "ld", 2); in test__PERF_RECORD()
/external/zlib/src/test/
Dminigzip.c563 char *bname, outmode[20]; local
572 bname = strrchr(argv[0], '/');
573 if (bname)
574 bname++;
576 bname = argv[0];
579 if (!strcmp(bname, "gunzip"))
581 else if (!strcmp(bname, "zcat"))
/external/yaffs2/yaffs2/direct/
Ddtest.c963 char bname[100]; in resize_stress_test() local
973 sprintf(bname,"%s%s",path,"/b"); in resize_stress_test()
979 b = yaffs_open(bname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE); in resize_stress_test()
981 printf(" %s %d %s %d\n",aname,a,bname,b); in resize_stress_test()
1027 char bname[100]; in resize_stress_test_no_grow_complex() local
1037 sprintf(bname,"%s%s",path,"/b"); in resize_stress_test_no_grow_complex()
1043 b = yaffs_open(bname, O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE); in resize_stress_test_no_grow_complex()
1045 printf(" %s %d %s %d\n",aname,a,bname,b); in resize_stress_test_no_grow_complex()
1100 char bname[100]; in resize_stress_test_no_grow() local
1110 sprintf(bname,"%s%s",path,"/b"); in resize_stress_test_no_grow()
[all …]
/external/chromium_org/third_party/libxslt/win32/
Dconfigure.js291 function genReadme(bname, ver, file) argument
296 f.WriteLine(" " + bname + " " + ver);
299 …f.WriteLine(" This is " + bname + ", version " + ver + ", binary package for the native Win32/IA3…
304 f.WriteLine("make sure that your tools which use " + bname + " can find it.");
309 f.WriteLine(" If you want to make programmes in C which use " + bname + ", you'll");
/external/yaffs2/yaffs2/utils/
Dmkyaffsimage.c124 __u8 *bname = (__u8 *)name; in yaffs_CalcNameSum() local
126 while (*bname) in yaffs_CalcNameSum()
128 sum += (*bname) * i; in yaffs_CalcNameSum()
130 bname++; in yaffs_CalcNameSum()
/external/chromium_org/third_party/libxml/src/win32/
Dconfigure.js402 function genReadme(bname, ver, file) argument
407 f.WriteLine(" " + bname + " " + ver);
410 …f.WriteLine(" This is " + bname + ", version " + ver + ", binary package for the native Win32/IA3…
415 f.WriteLine("make sure that your tools which use " + bname + " can find it.");
420 f.WriteLine(" If you want to make programmes in C which use " + bname + ", you'll");
/external/dnsmasq/src/
Dcache.c193 crecp->name.bname->next = big_free; in cache_free()
194 big_free = crecp->name.bname; in cache_free()
228 return crecp->name.bname->name; in cache_get_name()
451 new->name.bname = big_name; in cache_insert()
890 cache->name.bname->next = big_free; in cache_reload()
891 big_free = cache->name.bname; in cache_reload()
Ddnsmasq.h274 union bigname *bname; member
/external/elfutils/0.153/src/
Dar.c1255 const char *bname = basename (argv[cnt]); in do_oper_insert() local
1256 size_t bnamelen = strlen (bname); in do_oper_insert()
1262 remember_long_name (found[cnt], bname, bnamelen); in do_oper_insert()
1309 found[cnt]->name = bname; in do_oper_insert()
1321 remember_long_name (found[cnt], bname, bnamelen); in do_oper_insert()
/external/wpa_supplicant_8/wpa_supplicant/
Dconfig_file.c325 int *line, char *bname) in wpa_config_process_blob() argument
330 name_end = os_strchr(bname, '='); in wpa_config_process_blob()
338 blob = wpa_config_read_blob(f, line, bname); in wpa_config_process_blob()
341 *line, bname); in wpa_config_process_blob()
/external/yaffs2/yaffs2/
Dyaffs_guts.c557 YUCHAR *bname = (YUCHAR *) name; in yaffs_CalcNameSum() local
558 if (bname) { in yaffs_CalcNameSum()
559 while ((*bname) && (i <= YAFFS_MAX_NAME_LENGTH)) { in yaffs_CalcNameSum()
562 sum += yaffs_toupper(*bname) * i; in yaffs_CalcNameSum()
564 sum += (*bname) * i; in yaffs_CalcNameSum()
567 bname++; in yaffs_CalcNameSum()