HomeSort by relevance Sort by last modified time
    Searched refs:gr (Results 1 - 25 of 183) sorted by null

1 2 3 4 5 6 7 8

  /external/strace/linux/ia64/
arch_getrval2.c 4 return ia64_regs.gr[9];
get_scno.c 5 tcp->scno = ia64_ia32mode ? ia64_regs.gr[0] : ia64_regs.gr[15];
set_error.c 5 ia64_regs.gr[8] = -tcp->u_error;
7 ia64_regs.gr[8] = tcp->u_error;
8 ia64_regs.gr[10] = -1;
16 ia64_regs.gr[8] = tcp->u_rval;
18 ia64_regs.gr[10] = 0;
get_error.c 5 int err = ia64_regs.gr[8];
13 if (ia64_regs.gr[10]) {
15 tcp->u_error = ia64_regs.gr[8];
17 tcp->u_rval = ia64_regs.gr[8];
set_scno.c 5 ia64_regs.gr[0] = scno;
7 ia64_regs.gr[15] = scno;
get_syscall_args.c 21 tcp->u_arg[0] = 0xffffffff & ia64_regs.gr[11]; /* EBX */
22 tcp->u_arg[1] = 0xffffffff & ia64_regs.gr[ 9]; /* ECX */
23 tcp->u_arg[2] = 0xffffffff & ia64_regs.gr[10]; /* EDX */
24 tcp->u_arg[3] = 0xffffffff & ia64_regs.gr[14]; /* ESI */
25 tcp->u_arg[4] = 0xffffffff & ia64_regs.gr[15]; /* EDI */
26 tcp->u_arg[5] = 0xffffffff & ia64_regs.gr[13]; /* EBP */
arch_regs.c 2 unsigned long *const ia64_frame_ptr = &ia64_regs.gr[12];
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_fps.c 41 query_fps(struct hud_graph *gr)
43 struct fps_info *info = gr->query_data;
49 if (info->last_time + gr->pane->period <= now) {
55 hud_graph_add_value(gr, (uint64_t) fps);
72 struct hud_graph *gr = CALLOC_STRUCT(hud_graph); local
74 if (!gr)
77 strcpy(gr->name, "fps");
78 gr->query_data = CALLOC_STRUCT(fps_info);
79 if (!gr->query_data) {
80 FREE(gr);
    [all...]
hud_cpu.c 145 query_cpu_load(struct hud_graph *gr)
147 struct cpu_info *info = gr->query_data;
151 if (info->last_time + gr->pane->period <= now) {
158 hud_graph_add_value(gr, cpu_load);
182 struct hud_graph *gr; local
191 gr = CALLOC_STRUCT(hud_graph);
192 if (!gr)
196 strcpy(gr->name, "cpu");
198 sprintf(gr->name, "cpu%u", cpu_index);
200 gr->query_data = CALLOC_STRUCT(cpu_info)
    [all...]
hud_cpufreq.c 94 query_cfi_load(struct hud_graph *gr)
96 struct cpufreq_info *cfi = gr->query_data;
100 if (cfi->last_time + gr->pane->period <= now) {
106 hud_graph_add_value(gr, (uint64_t)cfi->KHz * 1000);
127 struct hud_graph *gr; local
138 gr = CALLOC_STRUCT(hud_graph);
139 if (!gr)
145 snprintf(gr->name, sizeof(gr->name), "%s-Min", cfi->name);
148 snprintf(gr->name, sizeof(gr->name), "%s-Cur", cfi->name)
    [all...]
hud_diskstat.c 120 query_dsi_load(struct hud_graph *gr)
125 struct diskstat_info *dsi = gr->query_data;
129 if (dsi->last_time + gr->pane->period <= now) {
140 (((float) gr->pane->period / 1000) / 1000);
146 (((float) gr->pane->period / 1000) / 1000);
150 hud_graph_add_value(gr, (uint64_t) val);
177 struct hud_graph *gr; local
188 gr = CALLOC_STRUCT(hud_graph);
189 if (!gr)
194 snprintf(gr->name, sizeof(gr->name), "%s-Read-MB/s", dsi->name)
    [all...]
hud_sensors_temp.c 157 query_sti_load(struct hud_graph *gr)
159 struct sensors_temp_info *sti = gr->query_data;
163 if (sti->last_time + gr->pane->period <= now) {
168 hud_graph_add_value(gr, (uint64_t) sti->current);
171 hud_graph_add_value(gr, (uint64_t) sti->critical);
174 hud_graph_add_value(gr, (uint64_t)(sti->current * 1000));
177 hud_graph_add_value(gr, (uint64_t) sti->current);
180 hud_graph_add_value(gr, (uint64_t) sti->current);
204 struct hud_graph *gr; local
215 gr = CALLOC_STRUCT(hud_graph)
    [all...]
hud_private.h 44 void (*begin_query)(struct hud_graph *gr);
45 void (*query_new_value)(struct hud_graph *gr);
83 void hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr);
85 void hud_graph_add_value(struct hud_graph *gr, uint64_t value);
111 void hud_graph_set_dump_file(struct hud_graph *gr);
hud_nic.c 174 query_nic_load(struct hud_graph *gr)
180 struct nic_info *nic = gr->query_data;
184 if (nic->last_time + gr->pane->period <= now) {
195 float periodMs = gr->pane->period / 1000;
207 hud_graph_add_value(gr, (uint64_t) pct);
216 hud_graph_add_value(gr, leveldBm);
249 struct hud_graph *gr; local
260 gr = CALLOC_STRUCT(hud_graph);
261 if (!gr)
266 snprintf(gr->name, sizeof(gr->name), "%s-rx-%lldMbps", nic->name
    [all...]
hud_context.c 336 hud_draw_graph_line_strip(struct hud_context *hud, const struct hud_graph *gr,
339 if (gr->num_vertices <= 1)
342 assert(gr->index <= gr->num_vertices);
345 gr->vertices, gr->index,
346 gr->color[0], gr->color[1], gr->color[2], 1,
347 xoffset + (gr->pane->max_num_vertices - gr->index - 1) * 2 - 1
364 struct hud_graph *gr; local
439 struct hud_graph *gr; local
486 struct hud_graph *gr, *next; local
    [all...]
  /external/aac/libSBRdec/src/
psbitdec.cpp 244 UCHAR gr, env; local
313 for (gr = 0; gr < NO_HI_RES_IID_BINS; gr++) {
314 pBsData->aaIidIndex[pBsData->noEnv-1][gr] =
315 h_ps_d->specificTo.mpeg.aIidPrevFrameIndex[gr];
319 for (gr = 0; gr < NO_HI_RES_IID_BINS; gr++) {
320 pBsData->aaIidIndex[pBsData->noEnv-1][gr] = 0
444 UCHAR gr, env; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_get_side_info.cpp 119 int32 ch, gr; local
149 for (gr = 0; gr < 2 ; gr++)
153 si->ch[ch].gran[gr].part2_3_length = getbits_crc(inputStream, 12, crc, info->error_protection);
156 si->ch[ch].gran[gr].big_values = (tmp << 10) >> 23; /* 9 */
157 si->ch[ch].gran[gr].global_gain = ((tmp << 19) >> 24) - 210; /* 8 */
158 si->ch[ch].gran[gr].scalefac_compress = (tmp << 27) >> 28; /* 4 */
159 si->ch[ch].gran[gr].window_switching_flag = tmp & 1; /* 1 */
161 if (si->ch[ch].gran[gr].window_switching_flag
    [all...]
pvmp3_get_scale_factors.h 91 int32 gr,
pvmp3_mpeg2_get_scale_data.h 90 int32 gr,
pvmp3_mpeg2_get_scale_factors.h 91 int32 gr,
pvmp3_mpeg2_get_scale_data.cpp 39 int32 gr, granule
128 int32 gr,
141 granuleInfo *gr_info = &(si->ch[ch].gran[gr]);
177 si->ch[ch].gran[gr].preflag = 0;
187 si->ch[ch].gran[gr].preflag = 0;
198 si->ch[ch].gran[gr].preflag = 0;
208 si->ch[ch].gran[gr].preflag = 1;
  /external/tpm2/
Session.c 39 lowBits = (CONTEXT_SLOT)gr.contextCounter;
42 entry = gr.contextArray[i];
90 if (gr.contextArray[i] <= MAX_LOADED_SESSIONS)
91 gr.contextArray[i] = 0;
102 gr.contextArray[i] = 0;
104 gr.contextCounter = MAX_LOADED_SESSIONS + 1;
138 || gr.contextArray[handle] == 0
139 || gr.contextArray[handle] > MAX_LOADED_SESSIONS
172 || gr.contextArray[handle] == 0
173 || gr.contextArray[handle] <= MAX_LOADED_SESSION
    [all...]
GetCommandAuditDigest.c 60 auditInfo.attested.commandAudit.auditDigest = gr.commandAuditDigest;
82 gr.commandAuditDigest.t.size = 0;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
pgen.c 102 static void compile_rule(nfagrammar *gr, node *n);
107 nfagrammar *gr; local
109 gr = (nfagrammar *)PyObject_MALLOC(sizeof(nfagrammar));
110 if (gr == NULL)
112 gr->gr_nnfas = 0;
113 gr->gr_nfa = NULL;
114 gr->gr_ll.ll_nlabels = 0;
115 gr->gr_ll.ll_label = NULL;
116 addlabel(&gr->gr_ll, ENDMARKER, "EMPTY");
117 return gr;
152 nfagrammar *gr; local
663 nfagrammar *gr; local
    [all...]
  /external/python/cpython2/Parser/
pgen.c 102 static void compile_rule(nfagrammar *gr, node *n);
107 nfagrammar *gr; local
109 gr = (nfagrammar *)PyObject_MALLOC(sizeof(nfagrammar));
110 if (gr == NULL)
112 gr->gr_nnfas = 0;
113 gr->gr_nfa = NULL;
114 gr->gr_ll.ll_nlabels = 0;
115 gr->gr_ll.ll_label = NULL;
116 addlabel(&gr->gr_ll, ENDMARKER, "EMPTY");
117 return gr;
153 nfagrammar *gr; local
665 nfagrammar *gr; local
    [all...]

Completed in 244 milliseconds

1 2 3 4 5 6 7 8