Searched refs:any (Results 1 - 15 of 15) sorted by relevance

/haiku/src/system/libroot/posix/stdlib/
H A Dstrtoll.c56 int neg, any, cutlim; local
59 * Skip white space and pick up leading +/- sign if any.
94 acc = any = 0;
113 * Set 'any' if any `digits' consumed; make it negative to indicate
131 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
132 any = -1;
134 any = 1;
139 if (any < 0) {
142 } else if (!any) {
[all...]
H A Dstrtol.c57 int neg, any, cutlim; local
60 * Skip white space and pick up leading +/- sign if any.
94 acc = any = 0;
112 * Set 'any' if any `digits' consumed; make it negative to indicate
130 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
131 any = -1;
133 any = 1;
138 if (any < 0) {
141 } else if (!any) {
[all...]
H A Dstrtoull.c56 int neg, any, cutlim; local
91 acc = any = 0;
108 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
109 any = -1;
111 any = 1;
116 if (any < 0) {
119 } else if (!any) {
125 *endptr = (char *)(any ? s - 1 : nptr);
H A Dstrtoul.c57 int neg, any, cutlim; local
92 acc = any = 0;
109 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
110 any = -1;
112 any = 1;
117 if (any < 0) {
120 } else if (!any) {
126 *endptr = (char *)(any ? s - 1 : nptr);
/haiku/src/apps/haikudepot/build/scripts/
H A Dhdsjsonschemacommon.py127 def collect_all_objects(schema: dict[str, any]) -> list[dict[str, any]]:
128 assembly = dict[str, dict[str, any]]()
130 def accumulate_all_objects(obj: dict[str, any]) -> None:
150 def augment_schema(schema: dict[str, any]) -> None:
151 """This function will take the data from the JSON schema and will overlay any
155 def derive_cpp_classname(obj: dict[str, any]) -> str:
165 def augment_property(prop: dict[str, any]) -> None:
199 def augment_object(obj: dict[str, any]) -> None:
H A Djsonschema2cppmodel.py219 def write_models_for_schema(schema: dict[str, any], output_directory: str) -> None:
221 def write_model_object(obj: dict[str, any]) -> None:
H A Djsonschema2cppparser.py556 // a general consumer that will clear any spurious data that was not
580 // a general consumer that will clear any spurious data that was not
711 // ignore any other fields
901 def write_files(schema : dict[str, any], output_directory: str) -> None:
906 model = dict[string, any]()
/haiku/data/bin/
H A Dinstall-wifi-firmwares.sh282 architecture any
319 package create -C system -i .PackageInfo wifi_firmwares-1-any.hpkg
320 mv wifi_firmwares-1-any.hpkg `finddir B_SYSTEM_PACKAGES_DIRECTORY`
/haiku/src/bin/
H A Dleak_analyser.sh40 allocation, so can match in the header line as well as any
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_scan_sw.c297 * use. Also discard any frames that might come
370 * If any beacon indicates there are frames pending
428 cancel_scan(struct ieee80211vap *vap, int any, const char *func) argument
436 signal = any ? ISCAN_PAUSE : ISCAN_CANCEL;
438 (any || ss->ss_vap == vap) &&
442 any ? "pause" : "cancel",
462 * Cancel any scan currently going on for the specified vap.
471 * Cancel any scan currently going on.
538 * Send directed probe requests followed by any
820 * this when canceled so any backgroun
[all...]
/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex129 will not cause any modification to its data (i.e. ELF header, program header
137 table (if any), section header table (if any), sections and segments.
153 a PEF file, but they are not aligned to any value. That is the resources
154 start directly after the last PEF section without any padding.
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Ddevice.c12 * (at your option) any later version.
327 * is possible that we return count blocks as being read but that any number
346 * Apply fixups to successfully read data, disregarding any errors
759 if (res->any.type != res_disk_geo ||
/haiku/headers/cpp/
H A Dbitset6 * and its documentation for any purpose is hereby granted without fee,
10 * representations about the suitability of this software for any
35 // returns a reference to a bit, again without doing any range checking.
531 // _Nb may be any nonzero number of type size_t.
532 // Type _WordT may be any unsigned integral type.
796 bool any() const { return _M_is_any(); }
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DQuery.cpp223 // Since the equation is the integral part of any query, we're just parsing
264 // test for the right symbol (as this doesn't need any memory)
283 // any invalid characters will be rejected
1351 // you can decide at any point to set the live query mode,
/haiku/headers/private/file_systems/
H A DQueryParser.h388 // Since the equation is the integral part of any query, we're just parsing
428 // test for the right symbol (as this doesn't need any memory)
447 // any invalid characters will be rejected
1539 // We send a notification for the given entry, if any, or otherwise for

Completed in 166 milliseconds