Home
last modified time | relevance | path

Searched refs:edata (Results 1 – 8 of 8) sorted by relevance

/third_party/libunwind/libunwind/src/arm/
DGex_tables.c81 arm_exidx_apply_cmd (struct arm_exbuf_data *edata, struct dwarf_cursor *c) in arm_exidx_apply_cmd() argument
86 switch (edata->cmd) in arm_exidx_apply_cmd()
96 Debug (2, "vsp = vsp - %d\n", edata->data); in arm_exidx_apply_cmd()
97 c->cfa -= edata->data; in arm_exidx_apply_cmd()
100 Debug (2, "vsp = vsp + %d\n", edata->data); in arm_exidx_apply_cmd()
101 c->cfa += edata->data; in arm_exidx_apply_cmd()
105 if (edata->data & (1 << i)) in arm_exidx_apply_cmd()
112 if (edata->data & (1 << 13)) in arm_exidx_apply_cmd()
116 assert (edata->data < 16); in arm_exidx_apply_cmd()
117 Debug (2, "vsp = r%d\n", edata->data); in arm_exidx_apply_cmd()
[all …]
/third_party/ffmpeg/libavcodec/
Dffwavesynth.c239 uint8_t *edata, *edata_end; in wavesynth_parse_extradata() local
247 edata = avc->extradata; in wavesynth_parse_extradata()
248 edata_end = edata + avc->extradata_size; in wavesynth_parse_extradata()
249 ws->nb_inter = AV_RL32(edata); in wavesynth_parse_extradata()
250 edata += 4; in wavesynth_parse_extradata()
251 if (ws->nb_inter < 0 || (edata_end - edata) / 24 < ws->nb_inter) in wavesynth_parse_extradata()
258 if (edata_end - edata < 24) in wavesynth_parse_extradata()
260 in->ts_start = AV_RL64(edata + 0); in wavesynth_parse_extradata()
261 in->ts_end = AV_RL64(edata + 8); in wavesynth_parse_extradata()
262 in->type = AV_RL32(edata + 16); in wavesynth_parse_extradata()
[all …]
/third_party/ffmpeg/libavformat/
Domadec.c410 uint8_t *edata; in oma_read_header() local
483 edata = st->codecpar->extradata; in oma_read_header()
484 AV_WL16(&edata[0], 1); // always 1 in oma_read_header()
485 AV_WL32(&edata[2], samplerate); // samples rate in oma_read_header()
486 AV_WL16(&edata[6], jsflag); // coding mode in oma_read_header()
487 AV_WL16(&edata[8], jsflag); // coding mode in oma_read_header()
488 AV_WL16(&edata[10], 1); // always 1 in oma_read_header()
489 AV_WL16(&edata[12], 0); // always 0 in oma_read_header()
Dsbgdec.c1359 uint8_t *edata; in encode_intervals() local
1369 edata = par->extradata; in encode_intervals()
1371 #define ADD_EDATA32(v) do { AV_WL32(edata, (v)); edata += 4; } while(0) in encode_intervals()
1372 #define ADD_EDATA64(v) do { AV_WL64(edata, (v)); edata += 8; } while(0) in encode_intervals()
1393 if (edata != par->extradata + edata_size) in encode_intervals()
/third_party/openssl/test/
Devp_test.c2261 ENCODE_DATA *edata; in encode_test_init() local
2263 if (!TEST_ptr(edata = OPENSSL_zalloc(sizeof(*edata)))) in encode_test_init()
2266 edata->encoding = BASE64_CANONICAL_ENCODING; in encode_test_init()
2268 edata->encoding = BASE64_VALID_ENCODING; in encode_test_init()
2270 edata->encoding = BASE64_INVALID_ENCODING; in encode_test_init()
2279 t->data = edata; in encode_test_init()
2282 OPENSSL_free(edata); in encode_test_init()
2288 ENCODE_DATA *edata = t->data; in encode_test_cleanup() local
2290 OPENSSL_free(edata->input); in encode_test_cleanup()
2291 OPENSSL_free(edata->output); in encode_test_cleanup()
[all …]
/third_party/libunwind/libunwind/include/tdep-arm/
Dex_tables.h53 int arm_exidx_apply_cmd (struct arm_exbuf_data *edata, struct dwarf_cursor *c);
/third_party/libexif/libexif/
Dexif-data.c159 ExifData *edata; in exif_data_new_from_data() local
161 edata = exif_data_new (); in exif_data_new_from_data()
162 exif_data_load_data (edata, data, size); in exif_data_new_from_data()
163 return (edata); in exif_data_new_from_data()
1582 ExifData *edata; in exif_data_new_from_file() local
1587 edata = exif_loader_get_data (loader); in exif_data_new_from_file()
1590 return (edata); in exif_data_new_from_file()
/third_party/node/deps/v8/src/d8/
Dd8.cc1351 Local<v8::External> edata = External::New(isolate, module_resolution_data); in DoHostImportModuleDynamically() local
1353 CHECK(Function::New(realm, ModuleResolutionSuccessCallback, edata) in DoHostImportModuleDynamically()
1356 CHECK(Function::New(realm, ModuleResolutionFailureCallback, edata) in DoHostImportModuleDynamically()