Home
last modified time | relevance | path

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

12345678910>>...21

/device/google/crosshatch/json-c/
Dconfig.h.in9 /* Define to 1 if you have the declaration of `INFINITY', and to 0 if you
13 /* Define to 1 if you have the declaration of `isinf', and to 0 if you don't.
17 /* Define to 1 if you have the declaration of `isnan', and to 0 if you don't.
21 /* Define to 1 if you have the declaration of `nan', and to 0 if you don't. */
24 /* Define to 1 if you have the declaration of `_finite', and to 0 if you
28 /* Define to 1 if you have the declaration of `_isnan', and to 0 if you don't.
32 /* Define to 1 if you have the <dlfcn.h> header file. */
35 /* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
38 /* Define to 1 if you have the <endian.h> header file. */
41 /* Define to 1 if you have the <fcntl.h> header file. */
[all …]
Dmath_compat.h21 #error This platform does not have nan()
25 #error This platform does not have INFINITY
/device/google/sunfish/json-c/
Dconfig.h.in9 /* Define to 1 if you have the declaration of `INFINITY', and to 0 if you
13 /* Define to 1 if you have the declaration of `isinf', and to 0 if you don't.
17 /* Define to 1 if you have the declaration of `isnan', and to 0 if you don't.
21 /* Define to 1 if you have the declaration of `nan', and to 0 if you don't. */
24 /* Define to 1 if you have the declaration of `_finite', and to 0 if you
28 /* Define to 1 if you have the declaration of `_isnan', and to 0 if you don't.
32 /* Define to 1 if you have the <dlfcn.h> header file. */
35 /* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
38 /* Define to 1 if you have the <endian.h> header file. */
41 /* Define to 1 if you have the <fcntl.h> header file. */
[all …]
Dmath_compat.h21 #error This platform does not have nan()
25 #error This platform does not have INFINITY
/device/google/coral/json-c/
Dconfig.h.in9 /* Define to 1 if you have the declaration of `INFINITY', and to 0 if you
13 /* Define to 1 if you have the declaration of `isinf', and to 0 if you don't.
17 /* Define to 1 if you have the declaration of `isnan', and to 0 if you don't.
21 /* Define to 1 if you have the declaration of `nan', and to 0 if you don't. */
24 /* Define to 1 if you have the declaration of `_finite', and to 0 if you
28 /* Define to 1 if you have the declaration of `_isnan', and to 0 if you don't.
32 /* Define to 1 if you have the <dlfcn.h> header file. */
35 /* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
38 /* Define to 1 if you have the <endian.h> header file. */
41 /* Define to 1 if you have the <fcntl.h> header file. */
[all …]
Dmath_compat.h21 #error This platform does not have nan()
25 #error This platform does not have INFINITY
/device/google/bonito/json-c/
Dconfig.h.in9 /* Define to 1 if you have the declaration of `INFINITY', and to 0 if you
13 /* Define to 1 if you have the declaration of `isinf', and to 0 if you don't.
17 /* Define to 1 if you have the declaration of `isnan', and to 0 if you don't.
21 /* Define to 1 if you have the declaration of `nan', and to 0 if you don't. */
24 /* Define to 1 if you have the declaration of `_finite', and to 0 if you
28 /* Define to 1 if you have the declaration of `_isnan', and to 0 if you don't.
32 /* Define to 1 if you have the <dlfcn.h> header file. */
35 /* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
38 /* Define to 1 if you have the <endian.h> header file. */
41 /* Define to 1 if you have the <fcntl.h> header file. */
[all …]
Dmath_compat.h21 #error This platform does not have nan()
25 #error This platform does not have INFINITY
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dgzread.c20 local int gz_load(state, buf, len, have) in gz_load() argument
24 unsigned *have;
28 *have = 0;
30 ret = read(state->fd, buf + *have, len - *have);
33 *have += ret;
34 } while (*have < len);
149 state->x.have = 0;
159 state->x.have = strm->avail_in;
209 state->x.have = had - strm->avail_out;
210 state->x.next = strm->next_out - state->x.have;
[all …]
Dinfback.c133 have = strm->avail_in; \
144 strm->avail_in = have; \
160 if (have == 0) { \
161 have = in(in_desc, &next); \
162 if (have == 0) { \
175 have--; \
260 unsigned have, left; /* available input and output */ local
283 have = next != Z_NULL ? strm->avail_in : 0;
345 if (copy > have) copy = have;
348 have -= copy;
[all …]
Dinflate.c101 local unsigned syncsearch OF((unsigned FAR *have, const unsigned char FAR *buf,
464 have = strm->avail_in; \
475 strm->avail_in = have; \
491 if (have == 0) goto inf_leave; \
492 have--; \
612 unsigned have, left; /* available input and output */ local
635 in = have;
736 if (copy > have) copy = have;
747 have -= copy;
757 if (have == 0) goto inf_leave;
[all …]
Dgzwrite.c75 unsigned have; local
100 have = (unsigned)(strm->next_out - state->x.next);
101 if (have && ((got = write(state->fd, state->x.next, have)) < 0 ||
102 (unsigned)got != have)) {
114 have = strm->avail_out;
121 have -= strm->avail_out;
122 } while (have);
210 unsigned have, copy; local
214 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
215 copy = state->size - have;
[all …]
Dgzlib.c78 state->x.have = 0; /* no output data available */
396 ret = LSEEK(state->fd, offset - state->x.have, SEEK_CUR);
399 state->x.have = 0;
422 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > offset ?
423 (unsigned)offset : state->x.have;
424 state->x.have -= n;
589 state->x.have = 0;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dinfback.c124 have = strm->avail_in; \
135 strm->avail_in = have; \
151 if (have == 0) { \
152 have = in(in_desc, &next); \
153 if (have == 0) { \
166 have--; \
251 unsigned have, left; /* available input and output */ local
274 have = next != Z_NULL ? strm->avail_in : 0;
336 if (copy > have) copy = have;
339 have -= copy;
[all …]
Dinflate.c100 local unsigned syncsearch OF((unsigned FAR *have, unsigned char FAR *buf,
408 have = strm->avail_in; \
419 strm->avail_in = have; \
435 if (have == 0) goto inf_leave; \
436 have--; \
561 unsigned have, left; /* available input and output */ local
584 in = have;
683 if (copy > have) copy = have;
694 have -= copy;
704 if (have == 0) goto inf_leave;
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dreindent.py196 have = getlspace(lines[thisstmt])
200 if have:
204 want = have2want.get(have, -1)
210 if have == getlspace(lines[jline]):
220 want = have + getlspace(after[jline-1]) - \
225 want = have
229 have2want[have] = want
230 diff = want - have
231 if diff == 0 or have == 0:
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
DZLib.c32 INTN have; in GzipDecompress() local
88 have = CHUNK - stream.avail_out; in GzipDecompress()
89 CopyMem (UncompressData + uncomp_offset, out, have); in GzipDecompress()
90 uncomp_offset += have; in GzipDecompress()
Dinflate.c102 local unsigned syncsearch OF((unsigned FAR *have, const unsigned char FAR *buf,
481 have = strm->avail_in; \
492 strm->avail_in = have; \
508 if (have == 0) goto inf_leave; \
509 have--; \
629 unsigned have, left; /* available input and output */ local
652 in = have;
759 if (copy > have) copy = have;
770 have -= copy;
780 if (have == 0) goto inf_leave;
[all …]
/device/mediatek/wembley-sepolicy/plat_public/
Ddomain.te8 # Instead, if access to part of sysfs is desired, it should have a
51 # Instead, if access to part of proc is desired, it should have a
109 # Instead, if access to part of debugfs is desired, it should have a
144 # have a more specific label.
292 # have a more specific label.
337 # Instead, if access to part of app_data_file is desired, it should have a
342 # Instead, if access to part of default_prop is desired, it should have a
349 # have a more specific label.
353 # Instead, if access to part of device is desired, it should have a
358 # Instead, if access to part of socket_device is desired, it should have a
[all …]
/device/mediatek/wembley-sepolicy/private/compat/26.0/
D26.0.ignore.cil1 ;; new_objects - a collection of types that have been introduced that have no
/device/linaro/bootloader/arm-trusted-firmware/
Ddco.txt18 have the right to submit it under the open source license
23 license and I have the right under that license to submit that
30 person who certified (a), (b) or (c) and I have not modified
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
Dmeta-vladimir.txt60 The objects, 'a' and 'b', are of type <instance> and they both have
67 Instance objects have one more special property, indicating the class
107 >>> A.__bases__ # Does A have any superclasses?
109 >>> B.__bases__ # Does B have any superclasses?
123 You have to admit, that an anonymous group of Python wizards are
160 In Python, a meta-class definition would have looked like this:
170 if we could, it would have answered:
182 In Python, instantiating a meta-class would have looked like this:
193 have the same properties. Note, that A and B are different objects.
195 possible to ask Python, it would have answered:
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
DREADME5 If you do a "make scrub", ANTLR will have to run on antlr.g and DLG
6 will have to run on parser.dlg. Either
/device/linaro/bootloader/edk2/MdePkg/Library/DxeCoreHobLib/
DDxeCoreHobLib.uni4 // HOB Library implementation for the DXE Core. Does not have a constructor.
21 … #language en-US "HOB Library implementation for the DXE Core. Does not have a constructor. Uses…
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/TrEEConfig/
DTrEEConfigPei.uni5 // NOTE: This module is only for reference only, each platform should have its own setup page.
22 … "NOTE: This module is only for reference only, each platform should have its own setup page."

12345678910>>...21