Searched refs:in (Results 26 - 50 of 439) sorted by relevance

1234567891011>>

/haiku/src/add-ons/kernel/generic/mime_table/
H A Dmktable.sh5 case "$1" in
/haiku/src/system/libnetwork/musl/network/
H A Dinet_addr.c2 #include <netinet/in.h>
/haiku/src/tests/system/benchmarks/
H A Dcompile_bench.sh22 for f in $(seq 100); do
28 for f in $(seq 100); do
/haiku/src/system/libroot/posix/string/
H A Dstrxfrm.cpp20 strxfrm(char *out, const char *in, size_t size) argument
26 status_t status = backend->Strxfrm(out, in, size, outSize);
34 return strlcpy(out, in, size);
39 strxfrm_l(char *out, const char *in, size_t size, locale_t l) argument
46 status_t status = backend->Strxfrm(out, in, size, outSize);
54 return strlcpy(out, in, size);
/haiku/src/kits/locale/
H A DHashMapCatalog.cpp23 * BCatalogData instead. Note that in this case you will not be able to use our
153 char* in = stringToParse.LockBuffer(0); local
154 if (in == NULL)
156 char* out = in;
160 while (*in != 0) {
162 if (*in == 'a')
164 else if (*in == 'b')
166 else if (*in == 'f')
168 else if (*in == 'n')
170 else if (*in
[all...]
/haiku/src/add-ons/kernel/generic/tty/
H A Dline_buffer.cpp16 buffer.in = 0;
48 return buffer.in;
55 size_t size = buffer.in;
68 return buffer.in == buffer.size ? buffer.in : 0;
75 return buffer.size - buffer.in;
83 size_t available = buffer.in;
122 buffer.in -= bytesRead;
128 buffer.in--;
138 if (buffer.in
[all...]
/haiku/src/add-ons/media/media-add-ons/finepix_webcam/FinePixJpeg/
H A Dfinepix-jpeg.c27 struct in { struct
69 static void decode_mcus __P((struct in *, int *, int, struct scan *, int *));
70 static int dec_readmarker __P((struct in *));
73 static void setinput __P((struct in *, unsigned char *));
144 static struct in in; variable in typeref:struct:in
231 if (dec_readmarker(&in) != info.rm)
336 setinput(&in, datap);
356 decode_mcus(&in, decdata->dcts, 4, dscans, max);
383 m = dec_readmarker(&in);
397 setinput(struct in *in, unsigned char *p) argument
405 fillbits(struct in *in, int le, unsigned int bi) argument
433 dec_readmarker(struct in *in) argument
459 dec_rec2(struct in *in, struct dec_hufftbl *hu, int *runp, int c, int i) argument
511 decode_mcus(struct in *in, int *dct, int n, struct scan *sc, int *maxp) argument
650 idct(int *in, int *out, PREC * quant, PREC off, int max) argument
[all...]
/haiku/src/system/kernel/util/
H A Dring_buffer.cpp24 * with the restrictions you choose. Unless you are passing in unsafe buffers,
34 return buffer->size - buffer->in;
42 int32 available = buffer->in;
75 buffer->in -= bytesRead;
93 int32 position = (buffer->first + buffer->in) % buffer->size;
117 buffer->in += bytesWritten;
153 && buffer->in >= 0 && (size_t)buffer->in <= size
173 buffer->in = 0;
181 return buffer->in;
[all...]
/haiku/src/tools/fs_shell/
H A Dexternal_commands_unix.cpp34 FILE* in = get_input(); local
35 if (in == NULL) {
43 if (fgets(buffer, size, in) != NULL)
H A Dfs_shell_command_unix.cpp30 FILE* in = fdopen(3, "r"); local
31 if (in == NULL) {
47 if (fgets(buffer, sizeof(buffer), in) == NULL) {
/haiku/headers/private/libroot/locale/
H A DICUCollateData.h31 status_t Strxfrm(char* out, const char* in,
35 status_t Wcsxfrm(wchar_t* out, const wchar_t* in,
39 status_t _ToUnicodeString(const char* in,
/haiku/src/add-ons/translators/psd/
H A DPSDLoader.h81 int64 _GetInt64FromStream(BPositionIO *in);
82 int32 _GetInt32FromStream(BPositionIO *in);
83 int16 _GetInt16FromStream(BPositionIO *in);
84 uint8 _GetUInt8FromStream(BPositionIO *in);
85 int8 _GetInt8FromStream(BPositionIO *in);
86 void _SkipStreamBlock(BPositionIO *in, size_t count);
/haiku/src/tests/system/runtime_loader/test_suite/
H A Dtest_suite3 for test in \
/haiku/src/libs/uuid/
H A Dunpack.c7 * Redistribution and use in source and binary forms, with or without
11 * notice, and the entire permission notice in its entirety,
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
38 void uuid_unpack(const uuid_t in, struct uuid *uu) argument
40 const uint8_t *ptr = in;
H A DuuidP.h7 * Redistribution and use in source and binary forms, with or without
11 * notice, and the entire permission notice in its entirety,
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
59 void uuid_unpack(const uuid_t in, struct uuid *uu);
/haiku/3rdparty/mmu_man/scripts/
H A Ddump_windows.sh8 for w in $(seq 0 "$c"); do
H A Didentify_repo.sh3 # for each package in /system/packages/ check which repository it comes from
18 for r in /system/settings/package-repositories/*; do
26 for p in *.hpkg; do
34 [ "$onf" == 1 ] || echo "$p in ${reponames[$i]}";
H A Ddev-perso19 # (in /etc/profile.d/) or your own .bashrc or .profile
27 # - for each project create a .profile in the subfolder,
51 for d in $DRLIST; do
63 for f in "$DEVROOT/"*; do test -e "$f/.profile" || continue; echo ${f##*/}; done
97 # force default locale so that compiler errors and such are reported in english
103 case "$TERM" in
121 case "$OSTYPE" in
135 for f in TODO TODO.org todo todo.org; do
148 # make sure the update action is the first found in history.
171 for f in "
[all...]
/haiku/src/bin/unzip/
H A Dzipgrep8 case "$1" in
30 case "$opt" in
33 case "$opt" in
41 for i in `unzip -Z1 "$zipfile" ${1+"$@"}`; do
/haiku/src/kits/network/libnetservices2/
H A DNetServicesMisc.cpp188 char in[3] = {0, 0, 0}; local
192 tmpString.MoveInto(in, 0, 3);
194 out[0] = (in[0] & 0xFC) >> 2;
195 out[1] = ((in[0] & 0x03) << 4) | ((in[1] & 0xF0) >> 4);
196 out[2] = ((in[1] & 0x0F) << 2) | ((in[2] & 0xC0) >> 6);
197 out[3] = in[2] & 0x3F;
/haiku/headers/cpp/
H A Dpfstream.h10 This library is distributed in the hope that it will be useful,
44 ipfstream(const char *name, int mode=ios::in, int prot=0664);
/haiku/src/apps/poorman/
H A DPoorManLogger.h11 #include <netinet/in.h>
/haiku/src/system/boot/arch/arm64/
H A Darch_cpu.cpp37 #warning Implement system_time in ARM64 bootloader!
/haiku/src/system/boot/platform/efi/arch/arm/
H A Darch_cpu.cpp21 #warning Implement system_time in ARM bootloader!
/haiku/src/libs/stdc++/legacy/
H A Dindstream.cc10 This library is distributed in the hope that it will be useful,
43 if (_delete_flags & ios::in) delete get_stream();
78 int select = mode == 0 ? (ios::in|ios::out) : mode;
79 streambuf *gbuf = (select & ios::in) ? get_stream() : (streambuf*)NULL;
85 ret_val = gbuf->seekoff(off, dir, ios::in);
95 int select = mode == 0 ? (ios::in|ios::out) : mode;
96 streambuf *gbuf = (select & ios::in) ? get_stream() : (streambuf*)NULL;
102 ret_val = gbuf->seekpos(pos, ios::in);

Completed in 101 milliseconds

1234567891011>>