Home
last modified time | relevance | path

Searched refs:properties_size (Results 1 – 12 of 12) sorted by relevance

/dports/databases/postgis32/postgis-3.2.0/postgis/
H A Dflatgeobuf.c122 if (ctx->ctx->properties_size == 0) { in ensure_properties_size()
123 ctx->ctx->properties_size = 1024 * 4; in ensure_properties_size()
124 POSTGIS_DEBUGF(2, "flatgeobuf: properties buffer to size %d", ctx->ctx->properties_size); in ensure_properties_size()
125 ctx->ctx->properties = palloc(ctx->ctx->properties_size); in ensure_properties_size()
127 if (ctx->ctx->properties_size < size) { in ensure_properties_size()
128 ctx->ctx->properties_size = ctx->ctx->properties_size * 2; in ensure_properties_size()
129 …TGIS_DEBUGF(2, "flatgeobuf: reallocating properties buffer to size %d", ctx->ctx->properties_size); in ensure_properties_size()
130 ctx->ctx->properties = repalloc(ctx->ctx->properties, ctx->ctx->properties_size); in ensure_properties_size()
/dports/www/bluefish/bluefish-2.2.12/src/
H A Dplugins.h44 const gushort properties_size; member
H A Dplugins.c89 && bfplugin->properties_size == sizeof(Tproperties) in plugin_from_filename()
/dports/games/dMagnetic/dMagnetic_0.32/src/engine/linea/
H A Dlinea.c95 tVM68k_uword properties_size; // version >2 member
205 if (pLineA->version>2 && (objectnum>pLineA->properties_size)) in lineA_loadproperties()
207 addr=(pLineA->properties_size-objectnum)^0xffff; // TODO: WTF? in lineA_loadproperties()
977 pLineA->properties_size=(pVM68k->d[6]); in lineA_singlestep()
987 if (pLineA->version>2 && (pVM68k->d[0]&0x3fff)>pLineA->properties_size) in lineA_singlestep()
991 objectidx=((pVM68k->d[0]&0x3fff)-pLineA->properties_size)-1; in lineA_singlestep()
/dports/databases/postgis32/postgis-3.2.0/deps/flatgeobuf/
H A Dflatgeobuf_c.h109 uint32_t properties_size; member
/dports/x11/kf5-kwindowsystem/kwindowsystem-5.89.0/src/platforms/xcb/
H A Dnetwm.h694 void event(xcb_generic_event_t *event, unsigned long *properties, int properties_size);
1557 void event(xcb_generic_event_t *event, unsigned long *properties, int properties_size);
H A Dnetwm.cpp1633 void NETRootInfo::event(xcb_generic_event_t *ev, unsigned long *properties, int properties_size) in event() argument
1643 if (properties_size > PROPERTIES_SIZE) { in event()
1644 properties_size = PROPERTIES_SIZE; in event()
1646 for (int i = 0; i < properties_size; ++i) { in event()
3829 void NETWinInfo::event(xcb_generic_event_t *ev, unsigned long *properties, int properties_size) in event() argument
3837 if (properties_size > PROPERTIES_SIZE) { in event()
3838 properties_size = PROPERTIES_SIZE; in event()
3840 for (int i = 0; i < properties_size; ++i) { in event()
/dports/science/py-nibabel/nibabel-3.2.1/nibabel/streamlines/
H A Dtrk.py673 properties_size = int(nb_properties * f4_dtype.itemsize)
709 buffer=f.read(properties_size))
/dports/net/rabbitmq/rabbitmq-server-3.9.11/deps/rabbitmq_stream_management/priv/www/js/tmpl/
H A DstreamConnection.ejs132 <% if (properties_size(connection.client_properties) > 0) { %>
/dports/net/rabbitmq/rabbitmq-server-3.9.11/deps/rabbitmq_management/priv/www/js/tmpl/
H A Dconnection.ejs129 <% if (properties_size(connection.client_properties) > 0) { %>
/dports/www/kf5-khtml/khtml-5.89.0/src/css/
H A Dcssstyleselector.h320 unsigned int properties_size; variable
H A Dcssstyleselector.cpp750 …for (unsigned p = selectorCache[i].firstPropertyIndex; p < properties_size; p = nextPropertyIndexe… in styleForElement()
754 …for (unsigned p = selectorCache[i].firstPropertyIndex; p < properties_size; p = nextPropertyIndexe… in styleForElement()
2256 properties_size = propertyList.count(); in buildLists()
2257 propertiesBuffer = new CSSOrderedProperty[properties_size]; in buildLists()
2265 nextPropertyIndexes = new unsigned[properties_size]; in buildLists()
2266 for (int i = properties_size - 1; i >= 0; --i) { in buildLists()