Home
last modified time | relevance | path

Searched full:part (Results 126 - 150 of 23825) sorted by relevance

12345678910>>...953

/third_party/python/Tools/scripts/
H A Dgprof2html.py69 for part in re.findall(r"(\w+(?:\.c)?|\W+)", line):
70 if part in labels:
71 part = '<a href="#call:%s">%s</a>' % (part, part)
72 output.write(part)
/third_party/skia/third_party/externals/spirv-tools/test/fuzzers/
H A DBUILD.gn118 # part of the input as not part of the file.
127 # part of the input as not part of the file.
136 # part of the input as not part of the file.
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzzers/
H A DBUILD.gn118 # part of the input as not part of the file.
127 # part of the input as not part of the file.
136 # part of the input as not part of the file.
/third_party/spirv-tools/test/fuzzers/
H A DBUILD.gn112 # part of the input as not part of the file.
120 # part of the input as not part of the file.
128 # part of the input as not part of the file.
/third_party/curl/packages/OS400/
H A Dccsidcurl.c11 * you should have received as part of this distribution. The terms
1367 mime_string_call(curl_mimepart *part, const char *string, unsigned int ccsid, in mime_string_call() argument
1368 CURLcode (*mimefunc)(curl_mimepart *part, const char *string)) in mime_string_call()
1374 return mimefunc(part, string); in mime_string_call()
1379 result = mimefunc(part, s); in mime_string_call()
1385 curl_mime_name_ccsid(curl_mimepart *part, const char *name, unsigned int ccsid) in curl_mime_name_ccsid() argument
1387 return mime_string_call(part, name, ccsid, curl_mime_name); in curl_mime_name_ccsid()
1391 curl_mime_filename_ccsid(curl_mimepart *part, in curl_mime_filename_ccsid() argument
1394 return mime_string_call(part, filename, ccsid, curl_mime_filename); in curl_mime_filename_ccsid()
1398 curl_mime_type_ccsid(curl_mimepart *part, in curl_mime_type_ccsid() argument
1405 curl_mime_encoder_ccsid(curl_mimepart *part, const char *encoding, unsigned int ccsid) curl_mime_encoder_ccsid() argument
1412 curl_mime_filedata_ccsid(curl_mimepart *part, const char *filename, unsigned int ccsid) curl_mime_filedata_ccsid() argument
1419 curl_mime_data_ccsid(curl_mimepart *part, const char *data, size_t datasize, unsigned int ccsid) curl_mime_data_ccsid() argument
1437 curl_url_get_ccsid(CURLU *handle, CURLUPart what, char **part, unsigned int flags, unsigned int ccsid) curl_url_get_ccsid() argument
1461 curl_url_set_ccsid(CURLU *handle, CURLUPart what, const char *part, unsigned int flags, unsigned int ccsid) curl_url_set_ccsid() argument
[all...]
/third_party/alsa-lib/src/control/
H A Dcontrol.c402 * too little space was allocated, only a part of the elements will be
1804 * \brief Get interface part of CTL element identifier for an element related event
1806 * \return interface part of element identifier
1816 * \brief Get device part of CTL element identifier for an element related event
1818 * \return device part of element identifier
1828 * \brief Get subdevice part of CTL element identifier for an element related event
1830 * \return subdevice part of element identifier
1840 * \brief Get name part of CTL element identifier for an element related event
1842 * \return name part of element identifier
1852 * \brief Get index part o
[all...]
/third_party/toybox/toys/pending/
H A Dfdisk.c57 struct partition *part; member
73 {0x3c, "Part.Magic recovery"}, {0x41, "PPC PReP Boot"}, {0x42, "SFS"},
213 px = pe->part; in check_order()
241 q = p = partitions[idx].part; in read_ebr()
254 partitions[num_parts].part = part_offset(sec_buf, 0); in read_ebr()
304 pe->part = part_offset(MBRbuf, i); in reset_boot()
388 if (IS_EXTENDED(partitions[i].part->sys_ind)) { in read_mbr()
468 p = partitions[i].part; in list_partitions()
520 num_parts = 4; //max of primaries in a part table in init_members()
525 partitions[i].part in init_members()
[all...]
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/
H A Dintf_derived.h26 * This is part of the ObjectRegistry object construction machinery.
32 * @brief Called by the framework. (part of the aggregate part creation). Implementer receives the actual object
38 * @brief Called by the framework. (part of the aggregate part creation), if implementer does not need a super class
/third_party/curl/tests/server/
H A Dtestpart.c11 * you should have received as part of this distribution. The terms
35 char *part; in main() local
42 int rc = getpart(&part, &partlen, argv[1], argv[2], stdin); in main()
47 printf("%c", part[i]); in main()
48 free(part); in main()
/test/testfwk/developer_test/local_coverage/
H A Dcoverage_tools.py43 for part in part_list:
46 if part in system_text_json:
47 new_json_text[part] = system_text_json[part]
49 print("Error: part not in all_subsystem_config.json")
129 for part in part_list:
131 if part in subsystem_info.get(key) and key not in subsystem_list:
189 print("subsystem or part without!")
/third_party/curl/docs/libcurl/
H A Dcurl_mime_data_cb.md16 curl_mime_data_cb - set a callback-based data source for a mime part's body
29 CURLcode curl_mime_data_cb(curl_mimepart *part, curl_off_t datasize,
37 curl_mime_data_cb(3) sets the data source of a mime part's body content
40 *part* is the part's to assign contents to.
90 Care must be taken if the part is bound to a curl easy handle that is later
150 curl_mimepart *part = curl_mime_addpart(mime);
156 curl_mime_data_cb(part, hugectl.size, read_callback, seek_callback, NULL,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64StackOffset.h3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44 using Part = std::pair<int64_t, MVT>;
50 *this += Part(Offset, T); in StackOffset()
58 StackOffset &operator+=(const StackOffset::Part &Other) { in operator +=()
98 /// Returns the scalable part of the offset in bytes.
101 /// Returns the non-scalable part of the offset in bytes.
116 // instructions, part of the offset is folded into NumDataVectors so that it in getForFrameOffset()
117 // uses ADDVL for part of it, reducing the number of ADDPL instructions. in getForFrameOffset()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
H A DVPlan.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
164 !(State->Instance->Part == 0 && State->Instance->Lane == 0); in execute()
239 // and exit blocks as part of the VPlan. In the VPlan-native path, skip in execute()
262 for (unsigned Part = 0, UF = State->UF; Part < UF; ++Part) { in execute()
263 State->Instance->Part = Part; in execute()
311 unsigned Part) { in generateInstruction()
315 Value *A = State.get(getOperand(0), Part); in generateInstruction()
310 generateInstruction(VPTransformState &State, unsigned Part) generateInstruction() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/bloat/
H A Dbloat.py113 Suffix('\.part\.([0-9]+)', 'part'),
165 """Returns (leftmost-part, remaining)."""
201 (part, name) = parse_one(name)
202 assert len(part) > 0
203 parts.append(part)
243 for part in parts:
245 assert part != '', path
246 if part not in tree:
247 tree[part]
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
235 for (unsigned Part = 0; Part < NumParts; ++Part) { in handleAssignments()
239 if (Part == 0) { in handleAssignments()
243 if (Part == NumParts - 1) in handleAssignments()
248 if (Handler.assignArg(i + Part, NewVT, NewVT, CCValAssign::Full, in handleAssignments()
249 Args[i], Args[i].Flags[Part], CCInfo)) { in handleAssignments()
250 // Still couldn't assign this smaller part type for some reason. in handleAssignments()
315 for (unsigned Part in handleAssignments()
[all...]
/third_party/python/Objects/
H A Dcomplexobject.c191 /* C99 rules: if either the real or the imaginary part is an in _Py_c_abs()
192 infinity, return infinity, even if the other part is a in _Py_c_abs()
204 /* either the real or imaginary part is a NaN, in _Py_c_abs()
341 real part of the result, and fill in the imaginary part as 0. */ in PyComplex_AsCComplex()
368 /* Real part is +0: just output the imaginary part and do not in complex_repr()
378 /* Format imaginary part with sign, real part without. Include in complex_repr()
415 /* Note: if the imaginary part i in complex_hash()
[all...]
/third_party/curl/lib/
H A Durlapi.c11 * you should have received as part of this distribution. The terms
232 /* the length of the scheme is the name part only */ in Curl_is_absolute_url()
257 to the right of the host part. Oh crap, this is doomed to cause in concat_url()
333 /* the new URL starts with //, just keep the protocol part from the in concat_url()
367 /* copy over the root url part */ in concat_url()
656 * If the given input string is syntactically wrong IPv4 or any part for
882 * The function handles a query part ('?' + stuff) appended but it expects
1415 char **part, unsigned int flags) in curl_url_get()
1428 if(!part) in curl_url_get()
1430 *part in curl_url_get()
1414 curl_url_get(const CURLU *u, CURLUPart what, char **part, unsigned int flags) curl_url_get() argument
1686 curl_url_set(CURLU *u, CURLUPart what, const char *part, unsigned int flags) curl_url_set() argument
[all...]
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/
H A Dmntentndk.cpp69 struct mntent *part; in getmntenttest() local
71 part = getmntent(mtab); in getmntenttest()
73 if (part == nullptr) { in getmntenttest()
92 struct mntent *part = nullptr; in GetmntentRtest() local
96 part = getmntent_r(mtab, &mnt, strings, sizeof(strings)); in GetmntentRtest()
98 if (part == nullptr) { in GetmntentRtest()
/third_party/NuttX/drivers/bch/
H A Dbchlib_setup.c51 los_part *part; in bchlib_setup() local
110 part = los_part_find(bch->vnode); in bchlib_setup()
111 if (part != NULL) in bchlib_setup()
113 bch->sectstart = part->sector_start; in bchlib_setup()
114 bch->nsectors = part->sector_count; in bchlib_setup()
115 bch->disk = get_disk(part->disk_id); in bchlib_setup()
/third_party/pulseaudio/src/pulsecore/
H A Dcpu-arm.c2 This file is part of PulseAudio.
83 int arch, part; in pa_cpu_get_arm_flags() local
125 /* get the CPU part number */ in pa_cpu_get_arm_flags()
126 if ((line = get_cpuinfo_line(cpuinfo, "CPU part"))) { in pa_cpu_get_arm_flags()
127 part = strtoul(line, NULL, 0); in pa_cpu_get_arm_flags()
128 if (part == 0xc08) in pa_cpu_get_arm_flags()
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Dcoderules.txt3 This file was part of the Independent JPEG Group's software:
27 then-part;
29 else-part;
69 5. Source file names should begin with "j" for files that are part of the
70 library proper; source files that are not part of the library, such as cjpeg.c
76 modules that are used in cjpeg/djpeg but are not part of the JPEG library
/third_party/pcre2/pcre2/testdata/
H A Dtestinput921 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
35 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
49 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
62 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
72 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
100 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
113 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
128 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
141 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
154 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part o
[all...]
H A Dtestinput1118 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
32 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
46 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
59 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
69 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
97 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
110 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
125 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
138 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part of an atom
151 (?![^(\040)<>@,;:".\\\[\]\000-\037\x80-\xff]) # ..not followed by something that could be part o
[all...]
/foundation/graphic/graphic_2d/rosen/test/hyper_graphic_manager/unittest/
H A Dhgm_idle_detector_test.cpp65 PART("CaseDescription") { in HWTEST_F()
89 PART("CaseDescription") { in HWTEST_F()
113 PART("CaseDescription") { in HWTEST_F()
152 PART("CaseDescription") { in HWTEST_F()
195 PART("CaseDescription") { in HWTEST_F()
241 PART("CaseDescription") { in HWTEST_F()
291 PART("CaseDescription") { in HWTEST_F()
317 PART("CaseDescription") { in HWTEST_F()
342 PART("CaseDescription") { in HWTEST_F()
366 PART("CaseDescriptio in HWTEST_F()
[all...]
/third_party/eudev/rules/
H A D60-persistent-storage.rules20 KERNEL=="nvme*[0-9]n*[0-9]p*[0-9]", ENV{DEVTYPE}=="partition", ATTRS{wwid}=="?*", SYMLINK+="disk/by-id/nvme-$attr{wwid}-part%n"
31 ENV{ID_SERIAL}="$env{ID_MODEL}_$env{ID_SERIAL_SHORT}", SYMLINK+="disk/by-id/nvme-$env{ID_SERIAL}-part%n"
35 KERNEL=="vd*[0-9]", ATTRS{serial}=="?*", ENV{ID_SERIAL}="$attr{serial}", SYMLINK+="disk/by-id/virtio-$env{ID_SERIAL}-part%n"
53 KERNEL=="sd*|cciss*", ENV{DEVTYPE}=="partition", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/$env{ID_BUS}-$env{ID_SERIAL}-part%n"
57 KERNEL=="sd*[0-9]", ATTRS{ieee1394_id}=="?*", SYMLINK+="disk/by-id/ieee1394-$attr{ieee1394_id}-part%n"
62 KERNEL=="mmcblk[0-9]p[0-9]*", ENV{ID_NAME}=="?*", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/mmc-$env{ID_NAME}_$env{ID_SERIAL}-part%n"
70 KERNEL=="msblk[0-9]p[0-9]|mspblk[0-9]p[0-9]", ENV{ID_NAME}=="?*", ENV{ID_SERIAL}=="?*", SYMLINK+="disk/by-id/memstick-$env{ID_NAME}_$env{ID_SERIAL}-part%n"
76 ENV{DEVTYPE}=="partition", ENV{ID_PATH}=="?*", SYMLINK+="disk/by-path/$env{ID_PATH}-part%n"
80 KERNEL=="vd*[0-9]", ENV{ID_PATH}=="pci-*", SYMLINK+="disk/by-path/virtio-$env{ID_PATH}-part%n"
98 ENV{DEVTYPE}=="partition", ENV{ID_WWN_WITH_EXTENSION}=="?*", SYMLINK+="disk/by-id/wwn-$env{ID_WWN_WITH_EXTENSION}-part
[all...]

Completed in 72 milliseconds

12345678910>>...953