Lines Matching full:extended
63 //"Extended" row/column indication field + misc. in cper_section_platform_memory_to_ir()
66 json_object *extended = json_object_new_object(); in cper_section_platform_memory_to_ir() local
68 extended, "rowBit16", in cper_section_platform_memory_to_ir()
69 json_object_new_boolean(memory_error->Extended & 0x1)); in cper_section_platform_memory_to_ir()
71 extended, "rowBit17", in cper_section_platform_memory_to_ir()
72 json_object_new_boolean((memory_error->Extended >> 1) & in cper_section_platform_memory_to_ir()
76 extended, "chipIdentification", in cper_section_platform_memory_to_ir()
77 json_object_new_int(memory_error->Extended >> in cper_section_platform_memory_to_ir()
80 json_object_object_add(section_ir, "extended", extended); in cper_section_platform_memory_to_ir()
82 //bit 16 and 17 are valid only if extended is valid in cper_section_platform_memory_to_ir()
368 //"Extended" field. in ir_section_memory_to_cper()
369 if (json_object_object_get_ex(section, "extended", &obj)) { in ir_section_memory_to_cper()
370 json_object *extended = obj; in ir_section_memory_to_cper() local
371 section_cper->Extended = 0; in ir_section_memory_to_cper()
372 section_cper->Extended |= json_object_get_boolean( in ir_section_memory_to_cper()
373 json_object_object_get(extended, "rowBit16")); in ir_section_memory_to_cper()
374 section_cper->Extended |= in ir_section_memory_to_cper()
376 json_object_object_get(extended, "rowBit17")) in ir_section_memory_to_cper()
378 if (json_object_object_get_ex(extended, "chipIdentification", in ir_section_memory_to_cper()
380 section_cper->Extended |= json_object_get_int(obj) << 5; in ir_section_memory_to_cper()