Searched refs:out (Results 51 - 75 of 288) sorted by relevance

1234567891011>>

/haiku/src/kits/locale/
H A DHashMapCatalog.cpp61 // are equal (testing only the hash would not filter out collisions):
73 // are equal (testing only the hash would not filter out collisions):
156 char* out = in; local
163 *out = '\a';
165 *out = '\b';
167 *out = '\f';
169 *out = '\n';
171 *out = '\r';
173 *out = '\t';
175 *out
[all...]
/haiku/src/add-ons/print/drivers/pcl6/
H A DPCL6Rasterizer.cpp59 uchar* out = fCurrentLine; local
62 for (int w = fWidthByte; w > 0; w --, out ++)
63 *out = ~*out;
66 for (int w = fPadBytes; w > 0; w --, out ++)
67 *out = 0;
101 uchar* out = fCurrentLine; local
104 *out++ = source->red;
105 *out++ = source->green;
106 *out
199 uchar* out = fCurrentLine; local
[all...]
/haiku/src/system/libroot/add-ons/icu/
H A DICUCollateData.cpp118 ICUCollateData::Strxfrm(char* out, const char* in, argument
129 requiredSize = strlcpy(out, in, outSize);
141 requiredSize = fCollator->getSortKey(unicodeIn, (uint8_t*)out, outSize);
146 assert(out[requiredSize - 1] == '\0');
186 ICUCollateData::Wcsxfrm(wchar_t* out, const wchar_t* in, size_t outSize, argument
197 requiredSize = wcslcpy(out, in, outSize);
211 uint8_t* buffer = (uint8_t*)out;
216 out[outSize - 1 - i] = buffer[outSize - 1 - i];
221 assert(out[requiredSize - 1] == 0);
230 ICUCollateData::_ToUnicodeString(const char* in, UnicodeString& out) argument
[all...]
/haiku/src/add-ons/translators/jpeg/
H A DJPEGTranslator.cpp153 convert_from_gray1_to_gray8(uint8* in, uint8* out, int32 inRowBytes) argument
165 out[index2++] = color;
172 convert_from_gray1_to_24(uint8* in, uint8* out, int32 inRowBytes) argument
184 out[index2++] = color;
185 out[index2++] = color;
186 out[index2++] = color;
193 convert_from_cmap8_to_24(uint8* in, uint8* out, int32 inRowBytes) argument
201 out[index2++] = color.red;
202 out[index2++] = color.green;
203 out[index
209 convert_from_15_to_24(uint8* in, uint8* out, int32 inRowBytes) argument
226 convert_from_15b_to_24(uint8* in, uint8* out, int32 inRowBytes) argument
243 convert_from_16_to_24(uint8* in, uint8* out, int32 inRowBytes) argument
260 convert_from_16b_to_24(uint8* in, uint8* out, int32 inRowBytes) argument
277 convert_from_24_to_24(uint8* in, uint8* out, int32 inRowBytes) argument
291 convert_from_32_to_24(uint8* in, uint8* out, int32 inRowBytes) argument
307 convert_from_32b_to_24(uint8* in, uint8* out, int32 inRowBytes) argument
326 convert_from_CMYK_to_32_photoshop(uint8* in, uint8* out, int32 inRowBytes, int32 xStep) argument
343 convert_from_CMYK_to_32(uint8* in, uint8* out, int32 inRowBytes, int32 xStep) argument
360 convert_from_24_to_32(uint8* in, uint8* out, int32 inRowBytes, int32 xStep) argument
376 translate_8(uint8* in, uint8* out, int32 inRowBytes, int32 xStep) argument
801 Copy(BPositionIO* in, BPositionIO* out) argument
835 Compress(BPositionIO* in, BPositionIO* out, const jmp_buf* longJumpBuffer) argument
1048 Decompress(BPositionIO* in, BPositionIO* out, BMessage* ioExtension, const jmp_buf* longJumpBuffer) argument
[all...]
/haiku/src/add-ons/kernel/drivers/wmi/
H A DWMIDevice.cpp44 acpi_data* out)
47 return fBus->EvaluateMethod(fBusCookie, instance, methodId, in, out);
75 WMIDevice::GetEventData(uint32 notify, acpi_data* out) argument
78 return fBus->GetEventData(notify, out);
124 const acpi_data* in, acpi_data* out)
127 return device->EvaluateMethod(instance, methodId, in, out);
149 wmi_get_event_data(wmi_device _device, uint32 notify, acpi_data* out) argument
152 return device->GetEventData(notify, out);
43 EvaluateMethod(uint8 instance, uint32 methodId, const acpi_data* in, acpi_data* out) argument
123 wmi_evaluate_method(wmi_device _device, uint8 instance, uint32 methodId, const acpi_data* in, acpi_data* out) argument
/haiku/src/add-ons/kernel/bus_managers/ps2/
H A Dps2_dev.h42 status_t (*command)(ps2_dev *dev, uint8 cmd, const uint8 *out,
75 status_t standard_command_timeout(ps2_dev *dev, uint8 cmd, const uint8 *out,
78 status_t ps2_dev_command(ps2_dev *dev, uint8 cmd, const uint8 *out = NULL,
80 status_t ps2_dev_command_timeout(ps2_dev *dev, uint8 cmd, const uint8 *out,
H A Dps2_common.cpp171 uint8 in, out; local
176 out = 0xf0;
177 res = ps2_command(PS2_CTRL_AUX_LOOPBACK, &out, 1, &in, 1);
180 // Step 1, if controller is good, in does match out.
182 if (in != out)
185 out = 0x56;
186 res = ps2_command(PS2_CTRL_AUX_LOOPBACK, &out, 1, &in, 1);
189 // Step 2, if controller is good, in does match out.
190 if (in != out)
193 out
240 ps2_command(uint8 cmd, const uint8 *out, int outCount, uint8 *in, int inCount) argument
[all...]
/haiku/src/add-ons/media/plugins/ffmpeg/
H A Dgfx_util.h36 //typedef void (*gfx_convert_func) (AVPicture *in, AVPicture *out, long line_count, long size);
38 typedef void (*gfx_convert_func) (AVFrame *in, AVFrame *out, int width, int height);
/haiku/src/add-ons/kernel/drivers/network/ether/ipro1000/dev/e1000/
H A De1000_82540.c92 goto out;
106 goto out;
110 out:
218 goto out;
246 out:
355 /* Zero out the Multicast HASH table */
427 goto out;
434 goto out;
439 goto out;
444 goto out;
[all...]
H A De1000_82575.c172 goto out;
277 goto out;
288 goto out;
292 goto out;
313 goto out;
316 out:
456 /* Just in case size is out of range, cap it to the largest
553 DEBUGOUT1("PHY Address %u is out of range\n", offset);
554 goto out;
559 goto out;
[all...]
/haiku/headers/cpp/
H A Dindstream.h61 { return _put_stream ? _put_stream : lookup_stream(ios::out); }
70 virtual streampos seekoff(streamoff, _seek_dir, int mode=ios::in|ios::out);
71 virtual streampos seekpos(streampos pos, int mode = ios::in|ios::out);
H A Dsstream46 stringbuf(int which=ios::in|ios::out)
54 stringbuf(const string &str, int which=ios::in|ios::out)
58 if (mode & (ios::in|ios::out))
93 // The buffer is already in gptr, so if it ends then it is out of data.
104 if (mode & ios::out)
141 seekoff(off_type off, ios::seek_dir way, int which = ios::in | ios::out)
145 bool testout = which & ios::out && mode & ios::out;
197 seekpos(pos_type sp, int which = ios::in | ios::out)
209 if (mode & ios::out)
[all...]
H A Dfstream.h75 ofstream(const char *name, int mode=ios::out, int prot=0664)
76 : fstreambase(name, mode | ios::out, prot) { }
77 void open(const char *name, int mode=ios::out, int prot=0664)
78 { fstreambase::open(name, mode | ios::out, prot); }
/haiku/src/kits/mail/
H A Dcrypt.cpp47 _EXPORT void passwd_crypt(char *in,char *out,int length) argument
51 memcpy(out,in,length);
56 out[i] ^= key[i];
/haiku/src/tests/system/kernel/unit/
H A Dkernel_unit_tests.cpp62 char* out = buffer; local
69 *out = '\0';
70 out++;
90 *out = *start;
92 out++;
106 *out = *start;
108 out++;
113 *out = '\0';
/haiku/src/apps/cortex/Persistence/
H A DExportContext.h59 inline BString& _pad_with_spaces(BString& out, const char* text,
121 // BString out;
122 // out << "\n" << indentString() << key;
123 // _pad_with_spaces(out, key, *this, m_attrColumn) << " = '" << value << '\'';
125 // writeString(out);
259 BString& out);
264 BString& out,
271 while(spaces--) out << ' ';
272 return out;
263 _pad_with_spaces( BString& out, const char* text, ExportContext& context, uint16 column) argument
/haiku/src/tools/hvif2png/
H A Dhvif2png.cpp53 FILE* out; member in struct:h2p_state
80 if (state->out != NULL) {
81 if (state->out != stdout)
82 fclose(state->out);
83 state->out = NULL;
109 state->out = fopen(state->params.out_filename, "wb");
111 state->out = stdout;
113 if (state->out == NULL) {
126 h2p_write_png(BBitmap* bitmap, FILE* out) argument
136 png_init_io(png, out);
[all...]
/haiku/src/system/libroot/os/
H A Dimage.cpp109 char* out = buffer; local
116 *out++ = '\0';
119 *out++ = *c;
121 *out++ = *c;
123 *out++ = '\0';
124 size = out - buffer + 1;
136 out = buffer;
138 const char* separator = strchr(out, '=');
139 if (separator != NULL && separator != out) {
140 fEntries[fEntryCount].replacement = out;
[all...]
/haiku/src/system/kernel/debug/
H A Dtracing.cpp416 TRACE((" out: start %p, entries %ld\n", fFirstEntry, fEntries));
763 TraceEntry::Dump(TraceOutput& out) argument
767 out.Print("ENTRY %p", this);
773 TraceEntry::DumpStackTrace(TraceOutput& out) argument
809 AbstractTraceEntry::Dump(TraceOutput& out) argument
811 bigtime_t time = (out.Flags() & TRACE_OUTPUT_DIFF_TIME)
812 ? fTime - out.LastEntryTime()
815 if (out.Flags() & TRACE_OUTPUT_TEAM_ID) {
816 out.Print("[%6" B_PRId32 ":%6" B_PRId32 "] %10" B_PRId64 ": ", fThread,
819 out
828 AddDump(TraceOutput& out) argument
859 DumpStackTrace(TraceOutput& out) argument
883 AddDump(TraceOutput& out) argument
889 DumpStackTrace(TraceOutput& out) argument
916 AddDump(TraceOutput& out) argument
922 DumpStackTrace(TraceOutput& out) argument
943 AddDump(TraceOutput& out) argument
961 Filter(const TraceEntry* entry, LazyTraceOutput& out) argument
970 Filter(const TraceEntry* _entry, LazyTraceOutput& out) argument
981 Filter(const TraceEntry* _entry, LazyTraceOutput& out) argument
992 Filter(const TraceEntry* entry, LazyTraceOutput& out) argument
1001 Filter(const TraceEntry* entry, LazyTraceOutput& out) argument
1012 Filter(const TraceEntry* entry, LazyTraceOutput& out) argument
1023 Filter(const TraceEntry* entry, LazyTraceOutput& out) argument
1037 Filter(const TraceEntry* entry, LazyTraceOutput& out) argument
1046 Filter(const TraceEntry* entry, LazyTraceOutput& out) argument
1056 Filter(const TraceEntry* entry, LazyTraceOutput& out) argument
[all...]
/haiku/src/tests/kits/app/bmessage/
H A DMessageItemTest.h211 Type out = InitPolicy::Zero(); local
212 CPPUNIT_ASSERT(FuncPolicy::ShortFind(msg, "item", &out) == B_NAME_NOT_FOUND);
213 CPPUNIT_ASSERT(FuncPolicy::Find(msg, "item", 0, &out) == B_NAME_NOT_FOUND);
214 CPPUNIT_ASSERT(ComparePolicy::Compare(out, AssertPolicy::Invalid()));
218 const void* ptr = &out;
240 Type out = InitPolicy::Zero(); local
244 CPPUNIT_ASSERT(FuncPolicy::ShortFind(msg, "item", &out) == B_OK);
245 CPPUNIT_ASSERT(FuncPolicy::Find(msg, "item", 0, &out) == B_OK);
246 CPPUNIT_ASSERT(ComparePolicy::Compare(out, in));
272 Type out local
303 Type out = InitPolicy::Zero(); local
331 Type out = InitPolicy::Zero(); local
370 Type out = InitPolicy::Zero(); local
408 Type out = InitPolicy::Zero(); local
442 Type out = InitPolicy::Zero(); local
499 Type out = InitPolicy::Zero(); local
537 Type out = InitPolicy::Zero(); local
573 Type out = InitPolicy::Zero(); local
[all...]
/haiku/src/bin/multiuser/
H A Dmultiuser_utils.cpp25 FILE* out = stdout; local
39 out = tty.Get();
63 fputs(prompt, out);
64 fflush(out);
67 fprintf(out, "\nError: Failed to read from tty: %s\n",
71 fputc('\n', out);
99 // have it. Bail out.
/haiku/src/add-ons/kernel/drivers/network/ether/intel22x/dev/igc/
H A Digc_api.c27 goto out;
34 out:
53 goto out;
60 out:
79 goto out;
86 out:
152 goto out;
158 goto out;
191 goto out;
195 goto out;
[all...]
/haiku/src/add-ons/kernel/drivers/ports/usb_serial/
H A DProlific.cpp74 bool out; member in struct:request_item
112 USB_REQTYPE_VENDOR | (list[i].out ? USB_REQTYPE_DEVICE_OUT : USB_REQTYPE_DEVICE_IN),
116 list[i].out ? 0 : bufferLength,
117 list[i].out ? NULL : buffer,
/haiku/src/libs/uuid/
H A Dgen_uuid.c130 * randomness if /dev/random/urandom is out to lunch.
156 * commenting out get_node_id just to get gen_uuid to compile under windows
345 void uuid__generate_time(uuid_t out, int *num) argument
369 uuid_pack(&uu, out);
372 void uuid_generate_time(uuid_t out) argument
389 uuid_unpack(out, &uu);
403 uuid_pack(&uu, out);
411 uuid__generate_time(out, 0);
415 void uuid__generate_random(uuid_t out, int *num) argument
433 uuid_pack(&uu, out);
438 uuid_generate_random(uuid_t out) argument
465 uuid_generate(uuid_t out) argument
473 uuid_generate(uuid_t out) argument
[all...]
/haiku/src/bin/
H A Dresattr.cpp80 write_attributes(BNode &out, const char *inFileName, BResources &resources, argument
94 if (!overwrite && out.GetAttrInfo(name, &attrInfo) == B_OK)
115 ssize_t bytesWritten = out.WriteAttr(name, type, 0LL, data, size);
190 BNode out; local
191 status_t error = out.SetTo(outputFile);
219 write_attributes(out, inputFiles[i], resources, overwrite);
230 BFile out; local
231 status_t error = out.SetTo(outputFile, B_READ_WRITE | B_CREATE_FILE);
240 error = resources.SetTo(&out, false);

Completed in 128 milliseconds

1234567891011>>