Searched refs:DEREF (Results 1 – 3 of 3) sorted by relevance
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/ruby/ext/google/protobuf_c/ |
D | storage.c | 41 #define DEREF(memory, type) *(type*)(memory) macro 158 DEREF(memory, float) = NUM2DBL(value); in native_slot_set_value_and_case() 164 DEREF(memory, double) = NUM2DBL(value); in native_slot_set_value_and_case() 175 DEREF(memory, int8_t) = val; in native_slot_set_value_and_case() 184 DEREF(memory, VALUE) = native_slot_encode_and_freeze_string(type, value); in native_slot_set_value_and_case() 195 DEREF(memory, VALUE) = value; in native_slot_set_value_and_case() 216 DEREF(memory, int32_t) = int_val; in native_slot_set_value_and_case() 226 DEREF(memory, int32_t) = NUM2INT(value); in native_slot_set_value_and_case() 229 DEREF(memory, int64_t) = NUM2LL(value); in native_slot_set_value_and_case() 232 DEREF(memory, uint32_t) = NUM2UINT(value); in native_slot_set_value_and_case() [all …]
|
D | encode_decode.c | 51 #define DEREF(msg, ofs, type) *(type*)(((uint8_t *)msg) + ofs) macro 111 return (void*)DEREF(msg, *ofs, VALUE); in startseq_handler() 161 DEREF(msg, *ofs, VALUE) = str; in str_handler() 173 DEREF(msg, *ofs, VALUE) = str; in bytes_handler() 188 VALUE rb_str = DEREF(msg, *ofs, VALUE); in stringdata_end_handler() 228 if (DEREF(msg, submsgdata->ofs, VALUE) == Qnil) { in submsg_handler() 229 DEREF(msg, submsgdata->ofs, VALUE) = in submsg_handler() 233 submsg_rb = DEREF(msg, submsgdata->ofs, VALUE); in submsg_handler() 267 VALUE map_rb = DEREF(msg, mapdata->ofs, VALUE); in startmapentry_handler() 337 DEREF(closure, oneofdata->case_ofs, uint32_t) = \ [all …]
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/php/ext/google/protobuf/ |
D | storage.c | 17 #define DEREF(memory, type) *(type*)(memory) macro 88 return int32_to_zval(DEREF(memory, int32_t)); in native_slot_get() 104 DEREF(memory, float) = 0.0; in native_slot_init() 107 DEREF(memory, double) = 0.0; in native_slot_init() 110 DEREF(memory, int8_t) = 0; in native_slot_init() 125 DEREF(memory, int32_t) = 0; in native_slot_init() 128 DEREF(memory, int64_t) = 0; in native_slot_init() 131 DEREF(memory, uint32_t) = 0; in native_slot_init() 134 DEREF(memory, uint64_t) = 0; in native_slot_init() 155 DEREF(memory, float) = Z_DVAL_P(value); in native_slot_set_value_and_case() [all …]
|