Searched refs:first (Results 101 - 125 of 279) sorted by relevance

1234567891011>>

/haiku/src/system/kernel/arch/x86/64/
H A Ddescriptors.cpp44 inline Descriptor(uint32_t first, uint32_t second);
181 Descriptor::Descriptor(uint32_t first, uint32_t second) argument
183 fDescriptor { first, second }
/haiku/src/kits/bluetooth/
H A DDeviceClass.cpp35 bool first = true; local
39 if (first) {
40 first = false;
/haiku/src/bin/network/arp/
H A Darp.cpp175 bool first = true; local
179 if (first) {
181 first = false;
/haiku/src/apps/terminal/
H A DBasicTerminalBuffer.h148 void EraseCharsFrom(int32 first, int32 numChars);
154 void DeleteColumnsFrom(int32 first);
197 void _ClearLines(int32 first, int32 last);
230 int32 fScrollTop; // first line to scroll
/haiku/src/system/kernel/arch/riscv64/
H A Darch_vm.cpp54 bool first = true; local
58 if (first)
59 first = false;
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dcache.c43 * the first fields must follow a mandatory pattern and further
68 struct HASH_ENTRY *first; local
77 first = cache->first_hash[h];
78 if (first)
79 link->next = first;
255 * before, previous and first are different when
/haiku/src/bin/pcmcia-cs/
H A Ddump_cis.c977 static int get_tuple_buf(int fd, ds_ioctl_arg_t *arg, int first) argument
983 if (first) {
996 static int get_tuple(int fd, ds_ioctl_arg_t *arg, int first) argument
998 int cmd = (first) ? DS_GET_FIRST_TUPLE : DS_GET_NEXT_TUPLE;
1021 int optch, errflg, first; local
1086 for (first = 1; ; first = 0) {
1088 if (get_tuple_buf(fd, &arg, first) != 0) break;
1090 if (get_tuple(fd, &arg, first) != 0) break;
/haiku/src/libs/agg/font_freetype/
H A Dagg_font_freetype.h103 bool add_kerning(unsigned first, unsigned second,
H A Dagg_font_freetype.cpp163 int first; // index of first point in contour local
166 first = 0;
175 v_start = outline.points[first];
180 point = outline.points + first;
181 tags = outline.tags + first;
187 // check first point to determine origin
190 // first point is conic control. Yes, this happens.
199 // if both first and last points are conic,
398 first
1120 add_kerning(unsigned first, unsigned second, double* x, double* y) argument
[all...]
/haiku/src/apps/pairs/
H A DPairs.cpp83 delete fIconMap[iter->first];
/haiku/src/add-ons/accelerants/matrox/
H A Dbe_driver_proto.h29 void SET_INDEXED_COLORS(uint count, uint8 first, uint8 *color_data, uint32 flags);
/haiku/src/servers/registrar/mime/
H A DMimeUpdateThread.cpp159 if (i->first == device)
/haiku/headers/os/interface/
H A DSplitView.h47 void SetCollapsible(int32 first, int32 last,
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DCommands.cpp369 uint32 first = uids[index++]; local
370 uint32 last = first;
373 fSequence << first; local
383 if (last != first)
/haiku/src/tests/kits/shared/
H A DKeymapTest.cpp88 const uint32 modifiers = (*p).first;
/haiku/src/add-ons/accelerants/vesa/
H A Daccelerant_protos.h39 void vesa_set_indexed_colors(uint count, uint8 first, uint8 *colorData,
/haiku/src/servers/app/font/
H A DFontEngine.h120 bool GetKerning(uint32 first, uint32 second,
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DBPlusTree.h84 uint64 first; member in struct:ExtentMapUnwrap
/haiku/src/add-ons/kernel/file_systems/nfs/
H A Dnfs_add_on.h60 struct fs_node *first; member in struct:fs_nspace
/haiku/src/add-ons/kernel/generic/tty/
H A Dmodule.cpp57 kprintf(" first: %" B_PRId32 "\n", tty.input_buffer.first);
/haiku/src/kits/locale/
H A DLocaleRoster.cpp407 // Normalize the language code: first two letters, lowercase
581 int32 first = signature.FindFirst(':');
583 if (first == last)
589 signature.Truncate(first);
591 context.Remove(0, first + 1);
/haiku/headers/cpp/std/
H A Dbastring.h220 basic_string& append(InputIterator first, InputIterator last) argument
222 basic_string& append(const_iterator first, const_iterator last)
224 { return replace (iend (), iend (), first, last); }
240 basic_string& assign(InputIterator first, InputIterator last) argument
242 basic_string& assign(const_iterator first, const_iterator last)
244 { return replace (ibegin (), iend (), first, last); }
277 void insert(iterator p, InputIterator first, InputIterator last) argument
279 void insert(iterator p, const_iterator first, const_iterator last)
281 { replace (p, p, first, last); }
/haiku/src/add-ons/kernel/network/protocols/tcp/
H A DEndpointManager.cpp148 key.first).HashPair(key.second);
163 return endpoint->LocalAddress().EqualTo(key.first, true)
200 EndpointHashDefinition::CompareValues(TCPEndpoint* first, argument
203 return first->LocalAddress().Port() == second->LocalAddress().Port();
310 // if the socket is unbound first bind it to ephemeral
H A DEndpointManager.h63 bool CompareValues(TCPEndpoint* first,
/haiku/src/add-ons/accelerants/intel_810/
H A Di810_mode.cpp269 I810_SetIndexedColors(uint count, uint8 first, uint8* colorData, uint32 flags) argument
279 OUTREG8(DAC_W_INDEX, first); // initial color index

Completed in 118 milliseconds

1234567891011>>