Searched refs:weight (Results 1 - 25 of 52) sorted by last modified time

123

/haiku/src/apps/drivesetup/
H A DDiskView.cpp47 PartitionView(const char* name, float weight, off_t offset, argument
52 fWeight(weight),
/haiku/src/system/libnetwork/netresolv/net/
H A Dgetaddrinfo.c230 int port, pri, weight; member in struct:srvinfo
1743 int port, pri, weight; local
1909 weight = _getshort(cp);
1931 srv->weight = weight;
1937 (!srv->weight || srvlist->weight))) {
1945 && (!srv->weight ||
1946 csrv->next->weight))
/haiku/src/system/libnetwork/netresolv/nameser/
H A Dns_print.c391 u_int priority, weight, port; local
399 weight = ns_get16(rdata); rdata += NS_INT16SZ;
401 len = SPRINTF((t, "%u %u %u ", priority, weight, port));
/haiku/src/add-ons/kernel/partitioning_systems/atari/
H A Datari.cpp82 float weight = 0.5; local
93 weight -= 0.1; /* possible but likely a PC sector */
95 weight -= 10;
98 weight -= 20;
109 weight -= 10.0;
112 weight -= 1.0;
114 weight -= 1.0;
116 weight -= 1.0;
120 weight -= 10;
128 weight
[all...]
/haiku/src/kits/interface/layouter/
H A DSimpleLayouter.cpp41 float weight; member in class:SimpleLayouter::ElementInfo
49 weight(1),
59 weight(1),
69 weight = info.weight;
164 SimpleLayouter::SetWeight(int32 element, float weight) argument
171 fElements[element].weight = weight;
259 info->weight = weights[i];
267 int64 weight local
295 int64 weight = 0; local
[all...]
H A DComplexLayouter.cpp260 ComplexLayouter::SetWeight(int32 element, float weight) argument
265 fWeights[element] = max_c(weight, 0);
/haiku/src/libs/icon/
H A DIconUtils.cpp59 uint8 weight = (uint8)(lineF & 0xff); local
61 if (weight == 0) {
69 d[0] = (((s2[0] - s1[0]) * weight) + (s1[0] << 8)) >> 8;
70 d[1] = (((s2[1] - s1[1]) * weight) + (s1[1] << 8)) >> 8;
71 d[2] = (((s2[2] - s1[2]) * weight) + (s1[2] << 8)) >> 8;
72 d[3] = (((s2[3] - s1[3]) * weight) + (s1[3] << 8)) >> 8;
89 uint8 weight = (uint8)(columnF & 0xff); local
91 if (weight == 0) {
99 d[0] = (((s2[0] - s1[0]) * weight) + (s1[0] << 8)) >> 8;
100 d[1] = (((s2[1] - s1[1]) * weight)
[all...]
/haiku/src/servers/app/drawing/Painter/bitmap_painter/
H A DDrawBitmapBilinear.h31 uint16 weight; // weight of the pixel at index [0..255] member in struct:BitmapPainterPrivate::FilterInfo
78 // x and y are needed as indices into the weight arrays, so the
241 if (this->fWeightsY[yMax].weight == 255)
244 if (this->fWeightsX[xIndexMax].weight == 255)
248 // cache the weight of the top and bottom row
249 const uint16 wTop = this->fWeightsY[y1].weight;
250 const uint16 wBottom = 255 - this->fWeightsY[y1].weight;
265 const uint16 wLeft = this->fWeightsX[x].weight;
302 const uint16 wLeft = this->fWeightsX[x].weight;
[all...]
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_scan_sta.c879 int weight; local
886 weight = b->se_fails - a->se_fails;
887 if (abs(weight) > 1)
888 return weight;
/haiku/headers/os/interface/
H A DLayoutBuilder.h79 inline ThisBuilder& Add(BView* view, float weight);
81 inline ThisBuilder& Add(BLayoutItem* item, float weight);
85 float weight = 1.0f);
87 float weight = 1.0f);
89 float weight = 1.0f);
94 float weight = 1.0f);
96 float weight = 1.0f);
98 float weight = 1.0f);
102 float weight = 1.0f);
104 float weight
539 Add(BView* view, float weight) argument
557 Add(BLayoutItem* item, float weight) argument
566 AddGroup(orientation orientation, float spacing, float weight) argument
578 AddGroup(BGroupView* groupView, float weight) argument
589 AddGroup(BGroupLayout* groupLayout, float weight) argument
600 AddGrid(float horizontalSpacing, float verticalSpacing, float weight) argument
612 AddGrid(BGridLayout* gridLayout, float weight) argument
623 AddGrid(BGridView* gridView, float weight) argument
634 AddSplit(orientation orientation, float spacing, float weight) argument
646 AddSplit(BSplitView* splitView, float weight) argument
657 AddCards(float weight) argument
668 AddCards(BCardLayout* cardLayout, float weight) argument
679 AddCards(BCardView* cardView, float weight) argument
690 AddGlue(float weight) argument
692 fLayout->AddItem(BSpaceLayoutItem::CreateGlue(), weight); local
1078 SetColumnWeight(int32 column, float weight) argument
1087 SetRowWeight(int32 row, float weight) argument
1221 Add(BView* view, float weight) argument
1239 Add(BLayoutItem* item, float weight) argument
1248 AddGroup(orientation orientation, float spacing, float weight) argument
1260 AddGroup(BGroupView* groupView, float weight) argument
1271 AddGroup(BGroupLayout* groupLayout, float weight) argument
1282 AddGrid(float horizontalSpacing, float verticalSpacing, float weight) argument
1294 AddGrid(BGridView* gridView, float weight) argument
1305 AddGrid(BGridLayout* layout, float weight) argument
1316 AddSplit(orientation orientation, float spacing, float weight) argument
1328 AddCards(float weight) argument
1339 AddCards(BCardLayout* cardLayout, float weight) argument
1350 AddCards(BCardView* cardView, float weight) argument
[all...]
H A DSplitView.h40 void SetItemWeight(int32 index, float weight,
42 void SetItemWeight(BLayoutItem* item, float weight);
55 bool AddChild(BView* child, float weight);
57 float weight);
60 bool AddChild(BLayoutItem* child, float weight);
62 float weight);
H A DGroupLayout.h24 void SetItemWeight(int32 index, float weight);
28 virtual BLayoutItem* AddView(BView* child, float weight);
30 float weight);
34 virtual bool AddItem(BLayoutItem* item, float weight);
36 float weight);
H A DGridLayout.h31 void SetColumnWeight(int32 column, float weight);
40 void SetRowWeight(int32 row, float weight);
H A DGroupLayoutBuilder.h27 BGroupLayoutBuilder& Add(BView* view, float weight);
29 BGroupLayoutBuilder& Add(BLayoutItem* item, float weight);
33 float weight = 1.0f);
36 BGroupLayoutBuilder& AddGlue(float weight = 1.0f);
H A DSplitLayoutBuilder.h21 BSplitLayoutBuilder& Add(BView* view, float weight);
23 BSplitLayoutBuilder& Add(BLayoutItem* item, float weight);
H A DTwoDimensionalLayout.h47 float weight; member in struct:BTwoDimensionalLayout::ColumnRowConstraints
/haiku/src/kits/translation/
H A DTranslatorRoster.cpp749 float weight = info.quality * info.capability; local
750 if (weight > bestWeight) {
753 bestWeight = weight;
/haiku/headers/libs/agg/
H A Dagg_span_image_filter_rgba.h134 unsigned weight; local
145 weight = (image_subpixel_scale - x_hr) *
147 fg[0] += weight * *fg_ptr++;
148 fg[1] += weight * *fg_ptr++;
149 fg[2] += weight * *fg_ptr++;
150 fg[3] += weight * *fg_ptr;
153 weight = x_hr * (image_subpixel_scale - y_hr);
154 fg[0] += weight * *fg_ptr++;
155 fg[1] += weight * *fg_ptr++;
156 fg[2] += weight * *fg_pt
246 unsigned weight; local
479 unsigned weight; local
620 int weight = (weight_y * weight_array[x_hr] + local
742 int weight = (weight_y * weight_array[x_hr] + local
870 int weight = (weight_y * weight_array[x_hr] + local
[all...]
/haiku/src/kits/interface/
H A DSplitView.cpp142 BSplitView::SetItemWeight(int32 index, float weight, bool invalidateLayout) argument
144 fSplitLayout->SetItemWeight(index, weight, invalidateLayout);
149 BSplitView::SetItemWeight(BLayoutItem* item, float weight) argument
151 fSplitLayout->SetItemWeight(item, weight);
205 BSplitView::AddChild(BView* child, float weight) argument
207 return fSplitLayout->AddView(child, weight);
212 BSplitView::AddChild(int32 index, BView* child, float weight) argument
214 return fSplitLayout->AddView(index, child, weight);
226 BSplitView::AddChild(BLayoutItem* child, float weight) argument
228 return fSplitLayout->AddItem(child, weight);
233 AddChild(int32 index, BLayoutItem* child, float weight) argument
[all...]
H A DSplitLayout.cpp29 const char* const kItemWeightField = "BSplitLayout:item:weight";
39 float weight; member in class:BSplitLayout::ItemLayoutInfo
48 weight(1.0f),
365 BSplitLayout::AddView(BView* child, float weight) argument
367 return AddView(-1, child, weight);
372 BSplitLayout::AddView(int32 index, BView* child, float weight) argument
376 SetItemWeight(item, weight);
397 BSplitLayout::AddItem(BLayoutItem* item, float weight) argument
399 return AddItem(-1, item, weight);
404 BSplitLayout::AddItem(int32 index, BLayoutItem* item, float weight) argument
434 SetItemWeight(int32 index, float weight, bool invalidateLayout) argument
458 SetItemWeight(BLayoutItem* item, float weight) argument
1227 float weight; local
1297 float weight = ItemWeight(item); local
[all...]
H A DTwoDimensionalLayout.cpp1288 layouter->SetWeight(element, constraints.weight);
H A DGridLayout.cpp80 return info->weight;
84 void SetWeight(int32 index, float weight) argument
87 info->weight = weight;
118 float weight; member in struct:BGridLayout::RowInfoArray::Info
141 info->weight = 1;
304 BGridLayout::SetColumnWeight(int32 column, float weight) argument
306 fColumnInfos->SetWeight(column, weight);
346 BGridLayout::SetRowWeight(int32 row, float weight) argument
348 fRowInfos->SetWeight(row, weight);
[all...]
H A DGroupLayout.cpp22 const char* const kItemWeightField = "BGroupLayout:item:weight";
28 float weight; member in struct:BGroupLayout::ItemLayoutData
31 : weight(1)
106 return (data ? data->weight : 0);
111 BGroupLayout::SetItemWeight(int32 index, float weight) argument
117 data->weight = weight;
138 BGroupLayout::AddView(BView* child, float weight) argument
140 return AddView(-1, child, weight);
145 BGroupLayout::AddView(int32 index, BView* child, float weight) argument
170 AddItem(BLayoutItem* item, float weight) argument
177 AddItem(int32 index, BLayoutItem* item, float weight) argument
237 float weight; local
[all...]
H A DGroupLayoutBuilder.cpp94 BGroupLayoutBuilder::Add(BView* view, float weight) argument
97 layout->AddView(view, weight);
112 BGroupLayoutBuilder::Add(BLayoutItem* item, float weight) argument
115 layout->AddItem(item, weight);
122 float weight)
127 if (layout->AddView(group, weight))
147 BGroupLayoutBuilder::AddGlue(float weight) argument
150 layout->AddItem(BSpaceLayoutItem::CreateGlue(), weight); local
121 AddGroup(orientation orientation, float spacing, float weight) argument
/haiku/docs/interface_guidelines/docbook-css/
H A Dstyles.css32 font-weight:bolder;
185 font-weight:bolder;
189 font-weight: bolder;
196 font-weight:bolder;
199 font-weight:bolder;
211 font-weight:bolder;
515 font-weight: bolder;
548 font-weight: bolder;
616 font-weight: bold;
622 font-weight
[all...]

Completed in 124 milliseconds

123