Home
last modified time | relevance | path

Searched refs:expbuf (Results 1 - 5 of 5) sorted by relevance

/third_party/libwebsockets/lib/secure-streams/protocols/
H A Dss-mqtt.c55 char* expbuf; in secstream_mqtt_subscribe() local
86 expbuf = lws_malloc(used_out + 1, __func__); in secstream_mqtt_subscribe()
87 if (!expbuf) { in secstream_mqtt_subscribe()
95 lws_strexp_init(&exp, (void*)h, lws_ss_exp_cb_metadata, expbuf, in secstream_mqtt_subscribe()
103 lws_free(expbuf); in secstream_mqtt_subscribe()
106 lwsl_notice("%s, expbuf - %s\n", __func__, expbuf); in secstream_mqtt_subscribe()
107 h->u.mqtt.sub_top.name = expbuf; in secstream_mqtt_subscribe()
124 h->u.mqtt.sub_info.topic[0].name = lws_strdup(expbuf); in secstream_mqtt_subscribe()
129 lws_free(expbuf); in secstream_mqtt_subscribe()
153 char *expbuf; secstream_mqtt_publish() local
305 char *expbuf = NULL; expand_metadata() local
355 char *expbuf = NULL; secstream_mqtt_is_shadow_matched() local
430 char* expbuf = NULL; secstream_mqtt_shadow_subscribe() local
[all...]
/third_party/ltp/testcases/kernel/mem/mmapstress/
H A Dmmapstress09.c99 int mapokay(uchar_t * expbuf);
436 int mapokay(uchar_t * expbuf) in mapokay() argument
447 if (*ptr != expbuf[j]) { in mapokay()
450 expbuf[j], *ptr); in mapokay()
H A Dmmapstress01.c202 static void fileokay(char *file, unsigned char *expbuf) in fileokay() argument
232 if (expbuf[j] != readbuf[j]) in fileokay()
235 expbuf[j], readbuf[j], i, j, in fileokay()
H A Dmmapstress10.c129 int fileokay(char *file, uchar_t * expbuf);
784 int fileokay(char *file, uchar_t * expbuf) argument
856 if (expbuf[j] != readbuf[j] && readbuf[j] != 0) {
859 expbuf[j], readbuf[j]);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DAPFloat.cpp3644 SmallVector<char, 6> expbuf;
3646 expbuf.push_back((char) ('0' + (exp % 10)));
3650 if (!TruncateZero && expbuf.size() < 2)
3651 expbuf.push_back('0');
3652 for (unsigned I = 0, E = expbuf.size(); I != E; ++I)
3653 Str.push_back(expbuf[E-1-I]);

Completed in 8 milliseconds